:root {
  --cream: #fbf7ef;
  --cream-deep: #f1eadf;
  --sage: #8fa690;
  --sage-dark: #405942;
  --olive: #65745d;
  --coral: #d98b7b;
  --rose: #f4c8c0;
  --ink: #263026;
  --muted: #687064;
  --white: #fffdf8;
  --shadow: 0 22px 60px rgba(54, 68, 48, 0.14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

figure {
  margin: 0;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--white);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.brand {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.social-link svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.social-link--header {
  color: var(--white);
  border: 1px solid rgba(255, 253, 248, 0.42);
  background: rgba(255, 253, 248, 0.1);
  backdrop-filter: blur(12px);
}

.social-link--header:hover {
  transform: translateY(-2px);
  color: var(--sage-dark);
  background: var(--rose);
  border-color: var(--rose);
}

.social-link--footer {
  color: var(--white);
  border: 1px solid rgba(255, 253, 248, 0.2);
  background: rgba(255, 253, 248, 0.08);
}

.social-link--footer:hover {
  transform: translateY(-2px);
  color: var(--sage-dark);
  background: var(--cream);
  border-color: var(--cream);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(28, 43, 29, 0.82) 0%, rgba(32, 47, 30, 0.55) 44%, rgba(45, 60, 43, 0.12) 100%),
    linear-gradient(0deg, rgba(20, 28, 20, 0.28), rgba(20, 28, 20, 0.06)),
    url("https://images.unsplash.com/photo-1526047932273-341f2a7631f9?auto=format&fit=crop&w=2400&q=85") center / cover;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero::after {
  background: linear-gradient(180deg, rgba(251, 247, 239, 0) 78%, var(--cream) 100%);
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 132px clamp(20px, 5vw, 72px) 94px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: #f7ded8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: fadeUp 780ms ease both;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 720px;
  font-family: var(--serif);
  font-size: clamp(3.15rem, 7.6vw, 6.35rem);
  font-weight: 600;
  line-height: 0.86;
  animation: fadeUp 900ms ease 120ms both;
}

.hero-subtitle {
  max-width: 540px;
  margin-top: 22px;
  color: rgba(255, 253, 248, 0.9);
  font-size: clamp(1rem, 2vw, 1.25rem);
  animation: fadeUp 900ms ease 240ms both;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
  animation: fadeUp 900ms ease 360ms both;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(255, 253, 248, 0.58);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 253, 248, 0.12);
  backdrop-filter: blur(12px);
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--coral);
  border-color: var(--coral);
}

main {
  overflow: hidden;
}

.section {
  padding: clamp(76px, 9vw, 132px) clamp(20px, 5vw, 72px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title {
  max-width: 760px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 600;
  line-height: 0.92;
  color: var(--sage-dark);
}

.section-lead {
  max-width: 640px;
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
}

.services {
  background: var(--cream);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 38px);
}

.service-item {
  display: grid;
  gap: 22px;
  align-content: start;
  justify-items: center;
  text-align: center;
  padding-top: 6px;
}

.service-image {
  width: min(100%, 250px);
  max-width: 250px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cream-deep);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.service-item:hover .service-image img {
  transform: scale(1.09);
}

.service-item h3 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1;
  color: var(--sage-dark);
}

.service-item p {
  color: var(--muted);
}

.gallery {
  background: var(--white);
}

.gallery-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 34px;
  margin-bottom: 54px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 150px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  background: var(--cream-deep);
}

.gallery-item figcaption {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  max-width: calc(100% - 32px);
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--sage-dark);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 12px 28px rgba(38, 48, 38, 0.14);
  backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.gallery-item:nth-child(1) {
  grid-column: span 5;
  grid-row: span 3;
}

.gallery-item:nth-child(2) {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-item:nth-child(3) {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-item:nth-child(5) {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-item:nth-child(6) {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1), filter 650ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(38, 48, 38, 0) 48%, rgba(38, 48, 38, 0.28) 100%);
  opacity: 0;
  transition: opacity 360ms ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
  filter: saturate(1.06);
}

.gallery-item:hover::after {
  opacity: 1;
}

.visit {
  background:
    linear-gradient(90deg, rgba(143, 166, 144, 0.17), rgba(244, 200, 192, 0.14)),
    var(--cream);
}

.visit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.6fr);
  align-items: center;
  gap: clamp(38px, 6vw, 86px);
}

.visit-note {
  padding-left: 28px;
  border-left: 2px solid var(--coral);
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.contact-actions {
  display: flex;
  margin-top: 28px;
}

.whatsapp-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(64, 89, 66, 0.14);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.whatsapp-contact:hover {
  transform: translateY(-2px);
  background: #f5fff7;
  box-shadow: 0 20px 42px rgba(64, 89, 66, 0.2);
}

.whatsapp-contact svg {
  width: 26px;
  height: 26px;
  fill: #11d037;
  flex: 0 0 auto;
}

.visit-photo {
  min-height: 450px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.visit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-section {
  padding-top: clamp(64px, 7vw, 104px);
  padding-bottom: clamp(64px, 7vw, 104px);
  background: var(--cream);
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(320px, 1fr);
  align-items: stretch;
  gap: clamp(28px, 5vw, 64px);
}

.map-copy {
  display: grid;
  align-content: center;
}

.map-kicker {
  margin-top: 30px;
}

.map-frame {
  min-height: 420px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cream-deep);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
  filter: saturate(0.9) contrast(0.98);
}

.map-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  margin-top: 28px;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--white);
  background: var(--sage-dark);
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 220ms ease, background 220ms ease;
}

.map-button:hover {
  transform: translateY(-2px);
  background: var(--coral);
}

.site-footer {
  padding: 46px clamp(20px, 5vw, 72px);
  background: var(--sage-dark);
  color: rgba(255, 253, 248, 0.86);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.94rem;
}

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

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.07) translate3d(-1.2%, 0.8%, 0);
  }
}

@media (max-width: 900px) {
  .site-header {
    padding-top: 22px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(25, 38, 26, 0.72) 0%, rgba(31, 47, 31, 0.5) 42%, rgba(32, 45, 30, 0.72) 100%),
      url("https://images.unsplash.com/photo-1526047932273-341f2a7631f9?auto=format&fit=crop&w=1500&q=85") center / cover;
  }

  .hero-content {
    padding-top: 112px;
    padding-bottom: 72px;
  }

  h1 {
    font-size: clamp(2.9rem, 12.8vw, 4.9rem);
  }

  .service-grid,
  .gallery-head,
  .visit-layout,
  .map-layout {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 130px;
  }

  .gallery-item:nth-child(n) {
    grid-column: span 3;
    grid-row: span 2;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: span 6;
  }

  .visit-photo {
    min-height: 340px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 360px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner .social-links {
    order: 2;
  }

  .footer-contact {
    order: 3;
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .section {
    padding-top: 68px;
    padding-bottom: 76px;
  }

  .hero-subtitle {
    margin-top: 22px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .service-grid {
    gap: 34px;
  }

  .service-image {
    width: min(74vw, 250px);
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 5;
    min-height: 0;
  }

  .visit-note {
    padding-left: 20px;
  }

  .contact-actions,
  .whatsapp-contact,
  .map-button {
    width: 100%;
  }
}

@media (max-width: 299px) {
  .site-header .social-links {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
