:root {
  --mocha-900: #1a120f;
  --mocha-800: #241915;
  --mocha-700: #3c2a23;
  --gold-500: #b78945;
  --gold-400: #cda565;
  --cream-100: #f8f2e9;
  --offwhite-50: #fffdf9;
  --text-dark: #2a201b;
  --text-soft: #5f5048;
  --line-soft: rgba(60, 42, 35, 0.16);
  --shadow-soft: 0 14px 38px rgba(26, 18, 15, 0.11);
  --shadow-strong: 0 20px 60px rgba(26, 18, 15, 0.18);
  --container: 1160px;
  --radius: 16px;
  --radius-sm: 12px;
  --ease: 300ms ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text-dark);
  background:
    radial-gradient(circle at 8% 2%, rgba(183, 137, 69, 0.12), transparent 36%),
    radial-gradient(circle at 90% 12%, rgba(60, 42, 35, 0.08), transparent 38%),
    var(--offwhite-50);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

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

.section {
  padding: 5.8rem 0;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 0.8rem;
  color: var(--mocha-900);
}

.section-subtitle {
  color: var(--text-soft);
  max-width: 620px;
  margin-bottom: 2.2rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color var(--ease), box-shadow var(--ease), border-color var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(255, 253, 249, 0.97);
  box-shadow: 0 6px 24px rgba(26, 18, 15, 0.12);
  border-color: rgba(60, 42, 35, 0.1);
  backdrop-filter: blur(7px);
}

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

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--mocha-900);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  color: var(--mocha-800);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: width var(--ease);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(36, 25, 21, 0.24);
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--mocha-800);
  transition: transform var(--ease), opacity var(--ease);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  position: relative;
  padding-top: 6rem;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(26, 18, 15, 0.8) 22%, rgba(26, 18, 15, 0.45) 60%, rgba(26, 18, 15, 0.6) 100%),
    url("https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  z-index: -2;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(to bottom, rgba(26, 18, 15, 0) 0%, rgba(26, 18, 15, 0.78) 100%);
  z-index: -1;
}

.hero-content {
  color: #fdf7ef;
  max-width: 700px;
  padding: 2rem 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: #f2d8ac;
  margin-bottom: 0.9rem;
  font-weight: 500;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 8vw, 4.8rem);
  line-height: 0.96;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: #f3e9dc;
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.45rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background-color var(--ease);
  font-family: inherit;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: #1d120d;
  box-shadow: 0 10px 28px rgba(183, 137, 69, 0.34);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(183, 137, 69, 0.42);
}

.btn-ghost {
  border: 1px solid rgba(255, 247, 235, 0.55);
  background: rgba(255, 255, 255, 0.08);
  color: #fff8ec;
  backdrop-filter: blur(4px);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

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

.service-card {
  background: linear-gradient(170deg, #fffefb 0%, #f8f2e8 100%);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow-soft);
  transition: transform var(--ease), box-shadow var(--ease);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.service-title-row {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: baseline;
  margin-bottom: 0.4rem;
}

.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--mocha-900);
  line-height: 1.1;
}

.price {
  color: var(--gold-500);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
}

.service-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

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

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  min-height: 240px;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
  border: 1px solid rgba(60, 42, 35, 0.16);
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease, filter 450ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 18, 15, 0.68), rgba(26, 18, 15, 0.05));
}

.gallery-item span {
  position: absolute;
  left: 0.9rem;
  bottom: 0.8rem;
  z-index: 2;
  color: #f9f4ea;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

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

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  align-items: center;
}

.about-photo {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(60, 42, 35, 0.14);
  box-shadow: var(--shadow-strong);
  min-height: 420px;
}

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

.about-text p {
  color: var(--text-soft);
  margin-bottom: 1.35rem;
  max-width: 620px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.stat-card {
  background: linear-gradient(165deg, #fff 0%, #f8efdf 100%);
  border: 1px solid rgba(183, 137, 69, 0.35);
  padding: 0.9rem;
  border-radius: 12px;
  text-align: center;
}

.stat-number {
  display: block;
  color: var(--mocha-900);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  line-height: 1.1;
  font-weight: 700;
}

.stat-label {
  color: var(--text-soft);
  font-size: 0.87rem;
  margin-top: 0.2rem;
}

.testimonials {
  background: linear-gradient(180deg, #f8f2e7 0%, #fffdf9 100%);
  border-top: 1px solid rgba(60, 42, 35, 0.08);
  border-bottom: 1px solid rgba(60, 42, 35, 0.08);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  background: #fffefb;
  border: 1px solid rgba(60, 42, 35, 0.14);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.stars {
  color: var(--gold-500);
  letter-spacing: 0.08em;
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.testimonial-card p {
  color: var(--text-soft);
  margin-bottom: 0.8rem;
}

.client {
  color: var(--mocha-800);
  font-weight: 600;
  font-size: 0.92rem;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: start;
}

.booking-form,
.contact-card {
  background: #fffefb;
  border: 1px solid rgba(60, 42, 35, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.3rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.field {
  margin-bottom: 0.75rem;
}

label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--mocha-800);
  margin-bottom: 0.3rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(60, 42, 35, 0.23);
  border-radius: 10px;
  padding: 0.72rem 0.75rem;
  font: inherit;
  color: var(--text-dark);
  background: #fff;
  transition: border-color var(--ease), box-shadow var(--ease);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(183, 137, 69, 0.18);
}

.contact-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  color: var(--mocha-900);
  margin-bottom: 0.6rem;
}

.contact-item {
  margin-bottom: 0.85rem;
  color: var(--text-soft);
}

.contact-item strong {
  display: block;
  color: var(--mocha-800);
  margin-bottom: 0.12rem;
}

.site-footer {
  padding: 2rem 0;
  background: linear-gradient(170deg, var(--mocha-900), #120c09);
  color: #f6ecde;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: 1rem;
  align-items: center;
}

.footer-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  margin-bottom: 0.1rem;
  color: #f7dfb4;
}

.footer-tagline {
  color: #dcc8a6;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.footer-links a {
  color: #f6ecde;
  font-size: 0.92rem;
}

.socials {
  display: flex;
  gap: 0.55rem;
  justify-content: flex-end;
}

.social {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(247, 223, 180, 0.4);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #f7dfb4;
  font-size: 0.85rem;
  font-weight: 600;
}

.copyright {
  text-align: center;
  color: #ccba9d;
  font-size: 0.88rem;
  margin-top: 1.2rem;
}

@media (max-width: 992px) {
  .services-grid,
  .gallery-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-wrap,
  .booking-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .socials {
    justify-content: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 780px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 1.1rem;
    width: min(260px, calc(100% - 2.2rem));
    background: rgba(255, 253, 249, 0.98);
    border: 1px solid rgba(60, 42, 35, 0.13);
    box-shadow: 0 16px 34px rgba(26, 18, 15, 0.18);
    border-radius: 12px;
    padding: 0.9rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity var(--ease), transform var(--ease);
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 88svh;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4.8rem 0;
  }

  .services-grid,
  .gallery-grid,
  .testimonial-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    min-height: 220px;
  }

  .about-photo {
    min-height: 300px;
  }
}
