:root {
  --bg: #fbf4eb;
  --bg-deep: #f3e6d6;
  --surface: rgba(255, 251, 246, 0.82);
  --surface-strong: #fffaf4;
  --text: #34261d;
  --muted: #755f50;
  --line: rgba(92, 67, 48, 0.12);
  --primary: #b97943;
  --primary-deep: #8f572f;
  --accent: #e8c7aa;
  --accent-soft: #f4e1d1;
  --shadow: 0 20px 55px rgba(106, 75, 48, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(232, 199, 170, 0.75), transparent 32%),
    radial-gradient(circle at right 8%, rgba(185, 121, 67, 0.16), transparent 26%),
    linear-gradient(180deg, #fffaf5 0%, #fbf4eb 52%, #f7eee3 100%);
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 244, 235, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(92, 67, 48, 0.08);
}

.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(143, 87, 47, 0.14);
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-family: "Satisfy", cursive;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--primary-deep);
}

.brand em {
  font-style: normal;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
}

.menu {
  display: flex;
  gap: 1.5rem;
  color: var(--muted);
  font-weight: 700;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.92);
  color: var(--text);
  border-radius: 999px;
  padding: 0.8rem 1rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.menu a:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--primary-deep);
}

.button,
.button-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button {
  border: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #fffaf5;
  box-shadow: 0 16px 28px rgba(143, 87, 47, 0.2);
}

.button-soft {
  background: rgba(255, 250, 244, 0.8);
  border: 1px solid var(--line);
  color: var(--primary-deep);
}

.button:hover,
.button-soft:hover {
  transform: translateY(-1px);
}

.hero,
.page-hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid,
.split,
.contact-box {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--primary-deep);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.1rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.35rem;
}

.script {
  display: block;
  font-family: "Satisfy", cursive;
  font-size: 0.9em;
  color: var(--primary);
  font-weight: 400;
  margin-bottom: 0.2rem;
}

.lead {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}

.text-link {
  font-weight: 800;
}

.hero-badges,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-badges li {
  background: rgba(255, 250, 244, 0.9);
  border: 1px solid rgba(92, 67, 48, 0.1);
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  font-weight: 700;
}

.photo-card,
.logo-panel,
.info-card,
.card,
.gallery-card,
.price-card,
.contact-placeholder,
.contact-side-card,
.contact-form,
.contact-copy {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.photo-card,
.logo-panel,
.contact-side-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.photo-card img,
.contact-side-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card {
  min-height: 560px;
}

.section {
  padding: 2rem 0 5rem;
}

.intro-grid,
.cards,
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.info-card,
.card,
.price-card,
.contact-copy,
.contact-placeholder,
.contact-form,
.contact-side-card {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.copy-block p,
.card p,
.price-card p,
.gallery-card figcaption,
.contact-copy p,
.contact-side-card p {
  color: var(--muted);
}

.logo-panel {
  padding: 2rem;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.95), rgba(244, 225, 209, 0.82));
}

.logo-panel img {
  width: min(100%, 420px);
  border-radius: 50%;
}

.page-hero-inner {
  max-width: 860px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.gallery-pair {
  grid-column: span 2;
}

.gallery-pair-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.gallery-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.gallery-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.gallery-card.tall img {
  height: 100%;
  min-height: 700px;
}

.gallery-card figcaption {
  display: none;
}

.gallery-card-overlay img {
  height: 100%;
  min-height: 700px;
}

.gallery-card-overlay figcaption {
  display: none;
}

.price-card .price {
  font-size: 2rem;
  line-height: 1;
  margin: 0.6rem 0 0.8rem;
  font-weight: 800;
  color: var(--primary-deep);
}

.price-note {
  margin-top: 1rem;
  color: var(--muted);
}

.price-note-box {
  margin-top: 1.25rem;
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 244, 0.88);
  border: 1px solid rgba(92, 67, 48, 0.1);
  box-shadow: var(--shadow);
}

.price-note-box .price-note {
  margin: 0;
}

.price-note-box .price-note + .price-note {
  margin-top: 0.9rem;
}

.contact-box {
  align-items: stretch;
}

.contact-list {
  display: grid;
  gap: 0.6rem;
}

.contact-list li {
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form:empty {
  display: none;
}

.contact-placeholder {
  display: grid;
  place-items: center;
  min-height: 260px;
  text-align: center;
  color: var(--muted);
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.95), rgba(244, 225, 209, 0.82));
}

.contact-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.contact-actions .button-soft {
  background: #fff8f0;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(92, 67, 48, 0.12);
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  padding: 0 0 2rem;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.map-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero-grid,
  .split,
  .contact-box,
  .intro-grid,
  .cards,
  .price-grid,
  .gallery-grid,
  .gallery-mosaic {
    grid-template-columns: 1fr;
  }

  .gallery-pair {
    grid-column: span 1;
  }

  .gallery-pair-images {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .menu {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 250, 244, 0.95);
    border: 1px solid var(--line);
  }

  .menu.is-open {
    display: flex;
  }

  .photo-card {
    min-height: 380px;
  }

  .gallery-card.tall img,
  .gallery-card img,
  .gallery-card-overlay img {
    min-height: 360px;
    height: 360px;
  }
}

@media (max-width: 640px) {
  .nav,
  .hero-actions,
  .footer-row,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    justify-content: center;
    padding: 1rem 0;
  }

  h1 {
    max-width: none;
  }

  .button,
  .button-soft {
    width: 100%;
  }

  .contact-actions {
    width: 100%;
    flex-direction: column;
  }

  .map-card iframe {
    min-height: 320px;
  }
}
