:root {
  --bg: #f4ece2;
  --bg-soft: #f9f4ed;
  --card: #fffaf3;
  --ink: #1f2430;
  --muted: #5d6473;
  --line: rgba(31, 36, 48, 0.12);
  --accent: #c85e46;
  --accent-deep: #a54833;
  --teal: #1f7c78;
  --gold: #d39c48;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-lg: 0 28px 60px rgba(68, 35, 18, 0.18);
  --shadow-md: 0 16px 36px rgba(68, 35, 18, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Outfit", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 10%, rgba(211, 156, 72, 0.18), transparent 42%),
    radial-gradient(circle at 85% 18%, rgba(31, 124, 120, 0.12), transparent 38%),
    linear-gradient(180deg, #fbf7f1 0%, #f5ede3 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.ambient-layer {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 35%),
    linear-gradient(300deg, rgba(255, 255, 255, 0.08), transparent 35%),
    repeating-linear-gradient(0deg, rgba(31, 36, 48, 0.013), rgba(31, 36, 48, 0.013) 1px, transparent 1px, transparent 3px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3.5rem);
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.site-header.scrolled {
  padding-block: 0.6rem;
  background: rgba(252, 245, 236, 0.82);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 26px rgba(48, 24, 10, 0.09);
}

.brand {
  color: var(--ink);
  text-decoration: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  gap: 1.4rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--accent-deep);
}

.header-actions {
  display: flex;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

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

.btn-solid {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  box-shadow: 0 12px 22px rgba(164, 72, 51, 0.3);
}

.btn-solid:hover {
  box-shadow: 0 16px 28px rgba(164, 72, 51, 0.38);
}

.btn-outline {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.56);
}

.btn-outline:hover {
  border-color: rgba(31, 36, 48, 0.35);
  background: rgba(255, 255, 255, 0.75);
}

.btn-ghost {
  border-color: rgba(31, 124, 120, 0.25);
  color: var(--teal);
  background: rgba(255, 255, 255, 0.5);
  padding: 0.72rem 1rem;
}

.btn-ghost:hover {
  border-color: rgba(31, 124, 120, 0.5);
  background: rgba(255, 255, 255, 0.82);
}

.btn-large {
  padding: 1.02rem 1.5rem;
  font-size: 0.96rem;
}

.header-actions .btn-solid {
  padding: 0.72rem 1.02rem;
}

.section {
  width: min(1180px, 92vw);
  margin-inline: auto;
  padding-block: clamp(2.4rem, 5vw, 5rem);
}

.hero {
  display: grid;
  gap: clamp(1.4rem, 2.5vw, 2.6rem);
  grid-template-columns: 1.02fr 0.98fr;
  padding-top: clamp(2rem, 5vw, 4rem);
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.73rem;
  color: var(--teal);
  font-weight: 700;
}

.hero h1,
.section-head h2,
.experience-copy h2,
.booking-panel h2 {
  margin: 0.65rem 0 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
}

.hero .lead {
  margin: 0 0 1.4rem;
  color: var(--muted);
  max-width: 52ch;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.65;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.trust-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 0.85rem;
}

.trust-list li {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
  padding: 0.85rem 0.95rem;
}

.trust-list strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.2;
}

.trust-list span {
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-visual {
  position: relative;
  min-height: clamp(420px, 52vw, 620px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.12));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  transition: transform 0.18s linear;
}

.main-layer {
  width: 65%;
  height: 80%;
  left: 7%;
  top: 10%;
}

.accent-layer {
  width: 42%;
  height: 46%;
  right: 8%;
  bottom: 9%;
}

.floating-badge {
  position: absolute;
  right: 7%;
  top: 8%;
  z-index: 2;
  width: min(260px, 58%);
  background: rgba(23, 27, 37, 0.86);
  color: #f7f4ed;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.floating-badge span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.75);
}

.floating-badge strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.98rem;
  line-height: 1.35;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  animation: drift 7.8s ease-in-out infinite;
}

.orb-one {
  width: 120px;
  height: 120px;
  left: -22px;
  bottom: 14%;
  background: radial-gradient(circle at 30% 30%, rgba(211, 156, 72, 0.68), rgba(211, 156, 72, 0.08));
}

.orb-two {
  width: 170px;
  height: 170px;
  right: -46px;
  top: 26%;
  background: radial-gradient(circle at 40% 30%, rgba(31, 124, 120, 0.55), rgba(31, 124, 120, 0.04));
  animation-delay: 1.1s;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

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

.stat-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.62));
  padding: 1.2rem;
}

.stat-value {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: #17202d;
}

.stat-label {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section-head {
  margin-bottom: 1.35rem;
}

.section-head h2,
.experience-copy h2,
.booking-panel h2 {
  font-size: clamp(1.9rem, 3.3vw, 3rem);
}

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

.service-card {
  position: relative;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.1rem 1rem;
  border: 1px solid rgba(31, 36, 48, 0.13);
  background: var(--card);
  box-shadow: 0 10px 20px rgba(68, 35, 18, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(211, 156, 72, 0.35), rgba(31, 124, 120, 0.16));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(68, 35, 18, 0.16);
}

.service-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
}

.service-card p {
  margin: 0.65rem 0 1rem;
  color: var(--muted);
  line-height: 1.55;
}

.service-tag {
  display: inline-block;
  padding: 0.37rem 0.7rem;
  border-radius: 999px;
  background: rgba(200, 94, 70, 0.11);
  color: var(--accent-deep);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.experience {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.2rem;
}

.experience-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.experience-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  min-height: 420px;
}

.experience-copy {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  padding: clamp(1.1rem, 2.8vw, 2rem);
  box-shadow: var(--shadow-md);
}

.steps {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.85rem;
}

.steps li {
  padding-left: 0.2rem;
}

.steps strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.steps span {
  color: var(--muted);
  line-height: 1.5;
}

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

.gallery-item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(31, 36, 48, 0.08);
  box-shadow: 0 12px 24px rgba(68, 35, 18, 0.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item:nth-child(1) {
  grid-column: span 7;
  min-height: 320px;
}

.gallery-item:nth-child(2) {
  grid-column: span 5;
  min-height: 320px;
}

.gallery-item:nth-child(3) {
  grid-column: span 5;
  min-height: 220px;
}

.gallery-item:nth-child(4) {
  grid-column: span 7;
  min-height: 220px;
}

.booking {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.booking-panel,
.contact-panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  padding: clamp(1.2rem, 2.7vw, 2rem);
  box-shadow: var(--shadow-md);
}

.booking-panel > p {
  color: var(--muted);
  margin-top: -0.2rem;
}

.booking-form {
  display: grid;
  gap: 0.8rem;
}

.booking-form label {
  display: grid;
  gap: 0.33rem;
}

.booking-form label span {
  font-size: 0.86rem;
  color: var(--ink);
}

.booking-form input,
.booking-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 0.88rem;
  font: inherit;
  background: rgba(255, 255, 255, 0.94);
}

.booking-form input:focus,
.booking-form select:focus {
  outline: 2px solid rgba(31, 124, 120, 0.4);
  outline-offset: 1px;
}

.form-status {
  margin: 0;
  min-height: 1.2rem;
  font-size: 0.85rem;
  color: var(--teal);
}

.contact-panel h3 {
  margin: 0 0 0.8rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.contact-list li {
  display: grid;
  gap: 0.3rem;
  padding: 0.74rem;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.contact-list span {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.contact-list a {
  color: var(--ink);
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.mini-card {
  margin-top: 1rem;
  padding: 0.9rem;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(31, 124, 120, 0.13), rgba(211, 156, 72, 0.16));
  border: 1px solid rgba(31, 124, 120, 0.16);
}

.mini-card strong {
  display: block;
  margin-bottom: 0.35rem;
}

.mini-card p {
  margin: 0;
  color: #2c3442;
  line-height: 1.5;
}

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

.testimonial {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  padding: 1rem;
}

.testimonial p {
  margin: 0;
  line-height: 1.55;
}

.testimonial span {
  display: block;
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.site-footer {
  width: min(1180px, 92vw);
  margin: 0 auto 4.7rem;
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-note {
  margin: 0;
  text-align: right;
}

.floating-call {
  position: fixed;
  z-index: 45;
  right: 1rem;
  bottom: 1rem;
  display: none;
  text-decoration: none;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(120deg, #1f7c78, #16615f);
  box-shadow: 0 12px 22px rgba(11, 68, 65, 0.3);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1100px) {
  .hero,
  .experience,
  .booking {
    grid-template-columns: 1fr;
  }

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

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

  .hero-visual {
    min-height: 470px;
  }

  .site-nav {
    display: none;
  }
}

@media (max-width: 760px) {
  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

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

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

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4) {
    grid-column: auto;
    min-height: 190px;
  }

  .header-actions .btn-ghost {
    display: none;
  }

  .site-footer {
    margin-bottom: 6.2rem;
  }

  .floating-call {
    display: inline-flex;
  }
}

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