:root {
  --cream: #FBF3EC;
  --blush: #F1DFD1;
  --white: #FFFFFF;
  --ink: #2E2420;
  --ink-soft: #5C5049;
  --terracotta: #C1694F;
  --terracotta-btn: #B0553C;
  --terracotta-text: #A24A34;
  --terracotta-deep: #963C29;
  --sage: #869079;
  --sage-bg: #EDEFE7;
  --line: #E7DBCF;
  --shadow-sm: 0 1px 2px rgba(46, 36, 32, 0.06), 0 6px 16px -10px rgba(46, 36, 32, 0.18);
  --shadow-md: 0 24px 50px -24px rgba(46, 36, 32, 0.28);
  --r-sm: 12px;
  --r: 18px;
  --r-lg: 28px;
  --pill: 999px;
  --container: 1200px;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  margin: 0;
  color: var(--ink);
}

h2 {
  font-size: clamp(1.9rem, 1.2rem + 2.6vw, 2.8rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.15rem;
  font-weight: 600;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--terracotta-text);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -120px;
  z-index: 300;
  background: var(--ink);
  color: var(--white);
  padding: 0.7rem 1.1rem;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(4rem, 2.4rem + 6vw, 7rem);
}

.section__head {
  max-width: 620px;
  margin: 0 auto clamp(2.2rem, 1.6rem + 2vw, 3.2rem);
  text-align: center;
}

.section__lead {
  margin-top: 0.9rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta-text);
  margin-bottom: 0.9rem;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.82);
}

.accent {
  color: var(--terracotta);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--terracotta-btn);
  color: var(--white);
  box-shadow: 0 14px 30px -14px rgba(150, 60, 41, 0.6);
}

.btn--primary:hover {
  background: var(--terracotta-deep);
}

.btn--lg {
  padding: 1.05rem 2rem;
  font-size: 1rem;
}

.btn--ghost {
  background: transparent;
  color: var(--terracotta-text);
  border-color: var(--line);
  margin-top: 1rem;
}

.btn--ghost:hover {
  background: var(--white);
  border-color: var(--terracotta);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--outline-light:hover {
  background: var(--white);
  color: var(--terracotta-deep);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 1.1rem;
  transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease), padding 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(251, 243, 236, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding-block: 0.55rem;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-decoration: none;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
}

.brand__tag {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracotta-text);
  margin-top: 2px;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 9px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle__bar {
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(82vw, 340px);
  background: var(--cream);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 6rem 1.8rem 2rem;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}

.site-nav.is-open {
  transform: translateX(0);
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.site-nav__list a {
  display: block;
  padding: 0.6rem 0;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  transition: color 0.2s var(--ease);
}

.site-nav__list a:hover {
  color: var(--terracotta-text);
}

.site-nav__cta {
  align-self: flex-start;
}

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(20, 14, 12, 0.45);
}

.hero {
  padding-top: 7.5rem;
  padding-bottom: clamp(3rem, 2rem + 5vw, 5.5rem);
}

.hero__inner {
  display: grid;
  gap: clamp(2rem, 1rem + 5vw, 4rem);
  align-items: center;
}

.hero__title {
  font-size: clamp(2.4rem, 1.3rem + 4.6vw, 3.9rem);
  margin: 0.4rem 0 1.1rem;
}

.hero__text {
  color: var(--ink-soft);
  font-size: 1.12rem;
  max-width: 30rem;
  margin-bottom: 1.8rem;
}

.proof {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

.proof__avatars {
  display: flex;
}

.proof__avatars img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  margin-left: -12px;
}

.proof__avatars img:first-child {
  margin-left: 0;
}

.proof__text {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.proof__text strong {
  display: block;
  color: var(--ink);
}

.proof__rating {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
}

.stars {
  color: var(--terracotta);
  letter-spacing: 0.08em;
}

.hero__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  will-change: transform;
}

.features {
  padding-bottom: clamp(2rem, 1rem + 4vw, 3.5rem);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-sm);
}

.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--sage-bg);
  color: var(--sage);
  margin-bottom: 1rem;
}

.feature__icon svg {
  width: 24px;
  height: 24px;
}

.feature__title {
  margin-bottom: 0.4rem;
}

.feature p {
  font-size: 0.94rem;
  color: var(--ink-soft);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.service-card:hover .service-card__media img {
  transform: scale(1.04);
}

.service-card__body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card__body h3 {
  margin-bottom: 0.4rem;
}

.service-card__body > p {
  font-size: 0.94rem;
  color: var(--ink-soft);
}

.disclosure {
  align-self: flex-start;
  margin-top: 1rem;
  padding: 0;
  background: transparent;
  border: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--terracotta-text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.disclosure::after {
  content: "+";
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.2s var(--ease);
}

.disclosure[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.service-card__detail {
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.service-card__detail ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  display: grid;
  gap: 0.4rem;
}

.about__inner {
  display: grid;
  gap: clamp(2rem, 1rem + 5vw, 3.5rem);
  align-items: center;
}

.about__media img {
  width: 100%;
  aspect-ratio: 5 / 5;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}

.about__content h2 {
  margin-bottom: 1rem;
}

.about__content p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.about__cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.mini-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.3rem;
}

.mini-card h3 {
  margin-bottom: 0.4rem;
  color: var(--terracotta-text);
}

.mini-card p {
  margin: 0;
  font-size: 0.92rem;
}

.story {
  background: var(--terracotta-deep);
  color: var(--white);
  padding-block: clamp(4rem, 2.4rem + 6vw, 7rem);
}

.story__inner {
  display: grid;
  gap: clamp(2rem, 1rem + 5vw, 4rem);
  align-items: center;
}

.story__content h2 {
  color: var(--white);
  margin-bottom: 1.1rem;
}

.story__content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.8rem;
  max-width: 34rem;
}

.story__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}

.gallery__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.gallery__item {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: var(--r-sm);
  overflow: hidden;
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.faq__inner {
  max-width: 780px;
  margin-inline: auto;
}

.accordion__item {
  border-bottom: 1px solid var(--line);
}

.accordion__item h3 {
  margin: 0;
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  background: transparent;
  border: 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.accordion__trigger::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--terracotta-text);
  transition: transform 0.2s var(--ease);
}

.accordion__trigger[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.accordion__panel {
  padding-bottom: 1.2rem;
}

.accordion__panel p {
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.booking {
  padding-block: clamp(3rem, 2rem + 5vw, 5.5rem);
}

.booking__inner {
  display: grid;
  gap: clamp(1.8rem, 1rem + 4vw, 3.2rem);
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 1rem + 2vw, 2.4rem);
  box-shadow: var(--shadow-sm);
}

.booking__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r);
}

.booking__content h2 {
  margin-bottom: 0.8rem;
}

.booking__content p {
  color: var(--ink-soft);
  margin-bottom: 1.6rem;
}

.contact__inner {
  display: grid;
  gap: clamp(2rem, 1rem + 5vw, 3.5rem);
  align-items: start;
}

.contact__info h2 {
  margin-bottom: 1.4rem;
}

.contact__list {
  list-style: none;
  margin: 0 0 1.8rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact__list li {
  display: grid;
  gap: 0.15rem;
}

.contact__k {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta-text);
  font-weight: 600;
}

.contact__v {
  color: var(--ink);
  text-decoration: none;
}

a.contact__v:hover {
  color: var(--terracotta-text);
}

.contact__map {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.contact__map iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding-top: clamp(3rem, 2rem + 4vw, 4.5rem);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  padding-bottom: 2.5rem;
}

.site-footer .brand__name {
  color: var(--white);
  font-size: 1.4rem;
}

.site-footer .brand__tag {
  color: rgba(255, 255, 255, 0.6);
}

.site-footer__brand p {
  margin: 0.9rem 0 1.1rem;
  font-size: 0.92rem;
  max-width: 22rem;
}

.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.social svg {
  width: 20px;
  height: 20px;
}

.social:hover {
  background: var(--terracotta-btn);
  border-color: var(--terracotta-btn);
}

.site-footer__col h2 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.site-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
  font-size: 0.92rem;
}

.site-footer__col a {
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.site-footer__col a:hover {
  color: var(--white);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 1.4rem;
  font-size: 0.82rem;
}

.site-footer__bottom p {
  margin: 0;
}

.legal {
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.legal__inner {
  max-width: 720px;
}

.legal h1 {
  font-size: clamp(2rem, 1.4rem + 2.4vw, 2.8rem);
  margin-bottom: 0.6rem;
}

.legal__meta {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.legal h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.6rem;
}

.legal p {
  color: var(--ink-soft);
  margin-bottom: 0.9rem;
}

.legal__back {
  margin-top: 2.5rem;
}

.legal__back a {
  color: var(--terracotta-text);
  font-weight: 600;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 5vw;
}

.lightbox[hidden] {
  display: none;
}

.nav-scrim[hidden] {
  display: none;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 14, 12, 0.85);
}

.lightbox__frame {
  position: relative;
  width: 100%;
  max-width: 880px;
}

.lightbox__img {
  width: 100%;
  height: auto;
  max-height: 84dvh;
  object-fit: contain;
  border-radius: var(--r);
}

.lightbox__close {
  position: absolute;
  top: -3.2rem;
  right: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
}

.lightbox__close svg {
  width: 20px;
  height: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.features__grid .feature:nth-child(2) {
  transition-delay: 0.08s;
}

.features__grid .feature:nth-child(3) {
  transition-delay: 0.16s;
}

.features__grid .feature:nth-child(4) {
  transition-delay: 0.24s;
}

.services__grid .service-card:nth-child(2) {
  transition-delay: 0.08s;
}

.services__grid .service-card:nth-child(3) {
  transition-delay: 0.16s;
}

.services__grid .service-card:nth-child(4) {
  transition-delay: 0.24s;
}

.gallery__grid li:nth-child(2) {
  transition-delay: 0.06s;
}

.gallery__grid li:nth-child(3) {
  transition-delay: 0.12s;
}

.gallery__grid li:nth-child(4) {
  transition-delay: 0.18s;
}

.gallery__grid li:nth-child(5) {
  transition-delay: 0.24s;
}

.gallery__grid li:nth-child(6) {
  transition-delay: 0.3s;
}

@media (min-width: 640px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 880px) {
  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .features__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about__inner {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .about__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .story__inner {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .booking__inner {
    grid-template-columns: 1fr 1fr;
  }

  .contact__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }

  .nav-scrim {
    display: none;
  }

  .site-nav {
    position: static;
    width: auto;
    background: transparent;
    box-shadow: none;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding: 0;
    transform: none;
  }

  .site-nav__list {
    flex-direction: row;
    gap: 1.8rem;
  }

  .site-nav__list a {
    padding: 0;
    font-size: 0.95rem;
  }

  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .site-footer__grid {
    grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
    gap: 2.6rem;
  }
}

@media (min-width: 1024px) {
  .about__media img {
    max-height: 560px;
    object-fit: cover;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .btn:hover,
  .service-card:hover .service-card__media img,
  .gallery__item:hover img {
    transform: none;
  }
}
