/* ========== DESIGN TOKENS ========== */
:root {
  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Fonts */
  --font-display: 'Instrument Serif', 'Georgia', serif;
  --font-body: 'Switzer', 'Helvetica Neue', sans-serif;

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========== LIGHT MODE (Warm Cream/Gold Palette) ========== */
:root, [data-theme="light"] {
  --color-bg:             #faf8f4;
  --color-surface:        #fdfcf9;
  --color-surface-2:      #f5f2ec;
  --color-surface-offset: #f0ede6;
  --color-divider:        #e2ddd4;
  --color-border:         #d8d2c7;

  --color-text:           #2c261c;
  --color-text-muted:     #8a8177;
  --color-text-faint:     #b8b1a7;
  --color-text-inverse:   #faf8f4;

  --color-primary:        #9a7b4f;
  --color-primary-hover:  #806539;
  --color-primary-active: #654e2a;
  --color-primary-light:  #f0e8db;

  --shadow-sm: 0 1px 2px oklch(0.25 0.02 70 / 0.06);
  --shadow-md: 0 4px 12px oklch(0.25 0.02 70 / 0.08);
  --shadow-lg: 0 12px 32px oklch(0.25 0.02 70 / 0.12);
}

/* ========== DARK MODE ========== */
[data-theme="dark"] {
  --color-bg:             #1a1814;
  --color-surface:        #211e19;
  --color-surface-2:      #2a2620;
  --color-surface-offset: #252118;
  --color-divider:        #332e26;
  --color-border:         #3e3830;

  --color-text:           #e5ddd0;
  --color-text-muted:     #9a9184;
  --color-text-faint:     #665e52;
  --color-text-inverse:   #1a1814;

  --color-primary:        #c9a873;
  --color-primary-hover:  #d4b888;
  --color-primary-active: #b8944e;
  --color-primary-light:  #2e2a22;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.2);
  --shadow-md: 0 4px 12px oklch(0 0 0 / 0.3);
  --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.4);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:             #1a1814;
    --color-surface:        #211e19;
    --color-surface-2:      #2a2620;
    --color-surface-offset: #252118;
    --color-divider:        #332e26;
    --color-border:         #3e3830;
    --color-text:           #e5ddd0;
    --color-text-muted:     #9a9184;
    --color-text-faint:     #665e52;
    --color-text-inverse:   #1a1814;
    --color-primary:        #c9a873;
    --color-primary-hover:  #d4b888;
    --color-primary-active: #b8944e;
    --color-primary-light:  #2e2a22;
    --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.2);
    --shadow-md: 0 4px 12px oklch(0 0 0 / 0.3);
    --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.4);
  }
}


/* ========== LAYOUT ========== */
.container {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: var(--space-4);
}
.container--wide {
  max-width: var(--content-wide);
}
.container--narrow {
  max-width: var(--content-narrow);
}


/* ========== HEADER ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.06);
  transition: box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.header--scrolled {
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-4);
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}
.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
}
.header__logo-icon {
  width: 40px;
  height: 40px;
}
.header__logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: -0.01em;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.header__nav-link {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}
.header__nav-link:hover {
  color: var(--color-text);
}
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.header__theme-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  border-radius: var(--radius-full);
}
.header__theme-toggle:hover {
  color: var(--color-text);
  background: var(--color-surface-2);
}

/* Mobile menu button */
.header__menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}
@media (max-width: 767px) {
  .header__nav { display: none; }
  .header__menu-btn { display: flex; }
  .header__nav--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    padding: var(--space-6) var(--space-4);
    gap: var(--space-5);
    border-bottom: 1px solid var(--color-divider);
    box-shadow: var(--shadow-md);
  }
}


/* ========== HERO ========== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    oklch(from var(--color-bg) l c h / 0.92) 0%,
    oklch(from var(--color-bg) l c h / 0.7) 40%,
    oklch(from var(--color-bg) l c h / 0.3) 70%,
    oklch(from var(--color-bg) l c h / 0.1) 100%
  );
}
@media (max-width: 767px) {
  .hero__overlay {
    background: linear-gradient(
      to bottom,
      oklch(from var(--color-bg) l c h / 0.5) 0%,
      oklch(from var(--color-bg) l c h / 0.85) 35%,
      oklch(from var(--color-bg) l c h / 0.92) 60%,
      oklch(from var(--color-bg) l c h / 0.95) 100%
    );
  }
  .hero { min-height: 90vh; }
  .hero__content { padding-top: var(--space-32); }
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
  padding-block: var(--space-16);
}
.hero__tagline {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--color-text);
  margin-bottom: var(--space-6);
  max-width: 14ch;
  font-weight: 400;
}
.hero__description {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 42ch;
  margin-bottom: var(--space-8);
  line-height: 1.7;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
}
.hero__cta:hover {
  background: var(--color-primary-hover);
}
.hero__cta:active {
  background: var(--color-primary-active);
}


/* ========== ABOUT SECTION ========== */
.about {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
@media (max-width: 767px) {
  .about__grid { grid-template-columns: 1fr; gap: var(--space-8); }
}
.about__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.about__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  margin-bottom: var(--space-4);
  font-weight: 400;
}
.about__text {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.7;
}
.about__stat-row {
  display: flex;
  gap: var(--space-8);
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
}
.about__stat-number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-primary);
}
.about__stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}


/* ========== SERVICES SECTION ========== */
.services {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
  background: var(--color-surface-2);
}
.services__header {
  text-align: center;
  margin-bottom: var(--space-12);
}
.services__label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.services__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  font-weight: 400;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
@media (max-width: 767px) {
  .services__grid { grid-template-columns: 1fr; }
}
.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition-interactive),
              transform var(--transition-interactive);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover .service-card__image img {
  transform: scale(1.03);
}
.service-card__body {
  padding: var(--space-6);
}
.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-2);
  font-weight: 400;
}
.service-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}


/* ========== PROCESS SECTION ========== */
.process {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}
.process__header {
  text-align: center;
  margin-bottom: var(--space-12);
}
.process__label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.process__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  font-weight: 400;
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
@media (max-width: 767px) {
  .process__steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .process__steps { grid-template-columns: 1fr; }
}
.process-step {
  text-align: left;
  padding: var(--space-6);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
}
.process-step__number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  display: block;
}
.process-step__title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.process-step__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}


/* ========== TESTIMONIALS ========== */
.testimonials {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
  background: var(--color-surface-2);
}
.testimonials__header {
  text-align: center;
  margin-bottom: var(--space-12);
}
.testimonials__label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.testimonials__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  font-weight: 400;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}
@media (max-width: 767px) {
  .testimonials__grid { grid-template-columns: 1fr; }
}
.testimonial-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}
.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-6);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--color-primary);
  font-weight: 500;
}
.testimonial-card__name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}
.testimonial-card__role {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.testimonial-card__stars {
  color: var(--color-primary);
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
  letter-spacing: 0.1em;
}


/* ========== GALLERY SECTION ========== */
.gallery {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}
.gallery__header {
  text-align: center;
  margin-bottom: var(--space-12);
}
.gallery__label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.gallery__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  font-weight: 400;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
@media (max-width: 767px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
.gallery__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery__item:hover img {
  transform: scale(1.05);
}
.gallery__item--large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}


/* ========== CTA / BOOKING SECTION ========== */
.booking {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
  background: var(--color-surface-2);
  text-align: center;
}
.booking__label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.booking__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-text);
  margin-bottom: var(--space-4);
  font-weight: 400;
}
.booking__desc {
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  max-width: 50ch;
  margin-inline: auto;
  line-height: 1.7;
}
.booking__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
}
.btn--primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}
.btn--primary:hover {
  background: var(--color-primary-hover);
}
.btn--primary:active {
  background: var(--color-primary-active);
}
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}


/* ========== FOOTER ========== */
.footer {
  padding-block: var(--space-12);
  border-top: 1px solid var(--color-divider);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-8);
}
@media (max-width: 767px) {
  .footer__inner { grid-template-columns: 1fr; gap: var(--space-6); }
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
}
.footer__logo-icon {
  width: 36px;
  height: 36px;
}
.footer__logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
}
.footer__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 36ch;
  line-height: 1.7;
}
.footer__col-title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  list-style: none;
}
.footer__links a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
}
.footer__links a:hover {
  color: var(--color-text);
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
  flex-wrap: wrap;
  gap: var(--space-3);
}
.footer__copyright {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}
.footer__attribution {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}
.footer__attribution a {
  color: var(--color-text-muted);
  text-decoration: none;
}
.footer__attribution a:hover {
  color: var(--color-text);
}
.footer__social {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  border-radius: var(--radius-full);
  border: 1px solid oklch(from var(--color-text) l c h / 0.1);
  text-decoration: none;
}
.footer__social a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}


/* ========== SCROLL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

/* ========== SKIP LINK ========== */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  padding: var(--space-2) var(--space-4);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  text-decoration: none;
  z-index: 100;
}
.skip-link:focus {
  top: var(--space-2);
}
