:root {
  --ivory: #f9f6f0;
  --cream: #f2ede3;
  --sage: #7a9e8e;
  --sage-dark: #4e7060;
  --sage-light: #c4d9cf;
  --charcoal: #1e2320;
  --warm-gray: #6b6b5f;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 5vw;
  background: rgba(249, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.18);
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--charcoal);
  text-decoration: none;
}
.logo span {
  color: var(--sage);
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--sage-dark);
}

.nav-cta {
  background: var(--sage);
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-size: 0.8rem !important;
  letter-spacing: 0.1em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover {
  background: var(--sage-dark) !important;
  color: var(--white) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: 0.3s;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 5vw 60px;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse at 70% 40%,
      rgba(122, 158, 142, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 20% 80%,
      rgba(201, 169, 110, 0.08) 0%,
      transparent 50%
    );
}

.hero-text {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-light);
  color: var(--sage-dark);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.8rem;
  animation: fadeUp 0.8s ease both;
}
.hero-badge::before {
  content: "✦";
  font-size: 0.6rem;
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.6rem;
  animation: fadeUp 0.8s 0.1s ease both;
}
h1 em {
  font-style: italic;
  color: var(--sage);
}

.hero-desc {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(78, 112, 96, 0.3);
}

.btn-outline {
  border: 1.5px solid var(--sage);
  color: var(--sage-dark);
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-outline:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  animation: fadeUp 0.8s 0.4s ease both;
}
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--warm-gray);
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1s 0.3s ease both;
}

.hero-card {
  background: var(--white);
  border-radius: 32px;
  padding: 3rem 2.5rem;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(201, 169, 110, 0.1);
  max-width: 380px;
  width: 100%;
  position: relative;
}

.hero-card-icon {
  width: 56px;
  height: 56px;
  background: var(--sage-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.hero-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero-card p {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.rating-text {
  font-size: 0.8rem;
  color: var(--warm-gray);
}

.floating-pill {
  position: absolute;
  background: var(--white);
  border-radius: 50px;
  padding: 0.65rem 1.2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4caf7d;
}
.floating-pill.top {
  top: -20px;
  right: -30px;
  animation: float 4s ease-in-out infinite;
}
.floating-pill.bottom {
  bottom: 20px;
  left: -40px;
  animation: float 4s ease-in-out infinite reverse;
}

/* ─── SERVICES ─── */
#services {
  padding: 100px 5vw;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.8rem;
}
.section-tag::before,
.section-tag::after {
  content: "— ";
}

h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 0.95rem;
  color: var(--warm-gray);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--ivory);
  border-radius: 24px;
  padding: 2.2rem;
  border: 1px solid rgba(201, 169, 110, 0.12);
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--sage-light) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-color: var(--sage-light);
}
.service-card:hover::before {
  opacity: 0.3;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.3rem;
  position: relative;
  z-index: 1;
}
.icon-sage {
  background: var(--sage-light);
}
.icon-gold {
  background: var(--gold-light);
}
.icon-cream {
  background: var(--cream);
}

.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1;
}
.service-card p {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--sage-dark);
  margin-top: 1.2rem;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: gap 0.2s;
}
.service-link:hover {
  gap: 0.8rem;
}

/* ─── ABOUT ─── */
#about {
  padding: 100px 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-frame {
  background: var(--sage-light);
  border-radius: 32px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.about-img-frame::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 60%;
  height: 60%;
  border-right: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  border-radius: 0 0 32px 0;
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: 20px;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.about-badge-float .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--sage-dark);
  line-height: 1;
}
.about-badge-float .lbl {
  font-size: 0.72rem;
  color: var(--warm-gray);
  margin-top: 0.3rem;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}
.about-text p {
  font-size: 0.93rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.about-features {
  margin: 2rem 0;
}
.about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}
.feat-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: var(--sage-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.feat-text strong {
  font-size: 0.88rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.2rem;
}
.feat-text span {
  font-size: 0.8rem;
  color: var(--warm-gray);
}

/* ─── TEAM ─── */
#team {
  padding: 100px 5vw;
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 24px;
  transition: all 0.3s;
}
.team-card:hover {
  background: var(--ivory);
  transform: translateY(-4px);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.2rem;
  border: 3px solid var(--white);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.team-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.team-role {
  font-size: 0.78rem;
  color: var(--sage);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.team-bio {
  font-size: 0.82rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* ─── TESTIMONIALS ─── */
#testimonials {
  padding: 100px 5vw;
  background: var(--charcoal);
  color: var(--ivory);
}

#testimonials .section-tag {
  color: var(--gold);
}
#testimonials h2 {
  color: var(--ivory);
}
#testimonials .section-sub {
  color: rgba(249, 246, 240, 0.6);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}

.testi-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.3s;
}
.testi-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 169, 110, 0.3);
}

.testi-stars {
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.testi-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: rgba(249, 246, 240, 0.9);
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.testi-name {
  font-size: 0.85rem;
  font-weight: 500;
}
.testi-date {
  font-size: 0.75rem;
  color: rgba(249, 246, 240, 0.5);
}

/* ─── BOOKING ─── */
#booking {
  padding: 100px 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.booking-info h2 {
  margin-bottom: 1rem;
}
.booking-info p {
  font-size: 0.93rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.2rem;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(201, 169, 110, 0.12);
}
.contact-icon {
  font-size: 1.2rem;
  width: 40px;
  text-align: center;
}
.contact-detail strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 0.1rem;
}
.contact-detail span {
  font-size: 0.8rem;
  color: var(--warm-gray);
}

.booking-form {
  background: var(--white);
  border-radius: 32px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(201, 169, 110, 0.1);
}

.booking-form h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.booking-form > p {
  font-size: 0.83rem;
  color: var(--warm-gray);
  margin-bottom: 1.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  display: block;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(201, 169, 110, 0.2);
  border-radius: 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  background: var(--ivory);
  color: var(--charcoal);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--sage);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.25s;
}
.form-submit:hover {
  background: var(--sage-dark);
  box-shadow: 0 8px 25px rgba(78, 112, 96, 0.3);
}

.success-msg {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--sage-dark);
  font-size: 1rem;
}
.success-msg .check {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal);
  color: rgba(249, 246, 240, 0.7);
  padding: 60px 5vw 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  color: var(--ivory);
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.7rem;
}
.footer-col ul a {
  font-size: 0.83rem;
  color: rgba(249, 246, 240, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover {
  color: var(--ivory);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
}
.footer-socials {
  display: flex;
  gap: 1rem;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
}
.social-btn:hover {
  background: var(--sage);
  border-color: var(--sage);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--ivory);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 99;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    font-size: 1.1rem;
  }
  .hamburger {
    display: flex;
    z-index: 101;
  }
  #hero {
    grid-template-columns: 1fr;
    padding-top: 100px;
  }
  .hero-visual {
    display: none;
  }
  #about,
  #booking {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-visual {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .floating-pill {
    display: none;
  }
}
