:root {
  --ink: #17211d;
  --muted: #65706a;
  --cream: #f8f4ed;
  --paper: #fffdf9;
  --white: #ffffff;
  --sage: #718679;
  --sage-dark: #4f6558;
  --sage-pale: #e7eee9;
  --gold: #c49b62;
  --gold-pale: #f3e7d5;
  --line: rgba(23, 33, 29, 0.12);
  --shadow: 0 24px 70px rgba(35, 52, 43, 0.12);
  --shadow-soft: 0 16px 40px rgba(35, 52, 43, 0.08);
  --radius-large: 34px;
  --radius-medium: 22px;
  --radius-small: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
iframe {
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--sage-dark);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.light-eyebrow {
  color: #d9c2a0;
}

.section-title,
.hero h1,
.occasions-copy h2,
.enquiry-copy h2,
.cta-inner h2 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.section-title {
  max-width: 760px;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.section-copy {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
}

.narrow-copy {
  max-width: 430px;
}

.narrow-centred {
  margin: 20px auto 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
}

.section-heading.centred {
  display: block;
  max-width: 820px;
  margin: 0 auto 58px;
  text-align: center;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 25px;
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  background: var(--sage-dark);
  box-shadow: 0 12px 30px rgba(79, 101, 88, 0.23);
  color: var(--white);
}

.button-primary:hover {
  background: #3f5548;
  box-shadow: 0 18px 38px rgba(79, 101, 88, 0.3);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink);
}

.button-secondary:hover {
  background: var(--white);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.full-button {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--sage-dark);
  font-weight: 700;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

/* Header */

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 8px 35px rgba(23, 33, 29, 0.06);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-dark);
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  color: #36423c;
  font-size: 0.91rem;
  font-weight: 600;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--sage-dark);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.main-nav .nav-cta {
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  padding: 12px 18px;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  place-items: center;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

/* Hero */

.hero {
  position: relative;
  min-height: 920px;
  padding: 165px 0 90px;
  background:
    linear-gradient(120deg, rgba(247, 240, 229, 0.95), rgba(232, 240, 234, 0.92)),
    var(--cream);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(79, 101, 88, 0.14);
  border-radius: 50%;
  content: "";
  left: -280px;
  top: 160px;
}

.hero::after {
  position: absolute;
  width: 780px;
  height: 780px;
  border: 1px solid rgba(196, 155, 98, 0.16);
  border-radius: 50%;
  content: "";
  right: -410px;
  top: -220px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(15px);
  pointer-events: none;
}

.hero-glow-one {
  width: 380px;
  height: 380px;
  top: 170px;
  left: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.hero-glow-two {
  width: 260px;
  height: 260px;
  right: 10%;
  bottom: 40px;
  background: rgba(196, 155, 98, 0.12);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 80px;
}

.hero-content {
  padding-bottom: 30px;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(3.6rem, 7vw, 6.8rem);
}

.hero h1 span {
  display: block;
  color: var(--sage-dark);
  font-style: italic;
  font-weight: 600;
}

.hero-copy {
  max-width: 610px;
  margin-top: 28px;
  color: #59635e;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero-points {
  display: grid;
  max-width: 620px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 58px;
}

.hero-points div {
  padding-left: 16px;
  border-left: 1px solid rgba(23, 33, 29, 0.17);
}

.hero-points strong,
.hero-points span {
  display: block;
}

.hero-points strong {
  margin-bottom: 2px;
  font-family: "Playfair Display", serif;
  font-size: 1.06rem;
}

.hero-points span {
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-visual {
  position: relative;
  min-height: 580px;
}

.hero-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero-card-main {
  width: min(100%, 510px);
  margin-left: auto;
  transform: rotate(2deg);
}

.image-placeholder {
  display: flex;
  min-height: 340px;
  align-items: end;
  padding: 30px;
  background:
    radial-gradient(circle at 22% 28%, rgba(255,255,255,.96) 0 5%, transparent 6%),
    radial-gradient(circle at 75% 22%, rgba(255,255,255,.75) 0 4%, transparent 5%),
    radial-gradient(circle at 78% 72%, rgba(255,255,255,.88) 0 6%, transparent 7%),
    linear-gradient(135deg, #a7b9aa, #6e8878 48%, #385447);
  color: var(--white);
}

.image-placeholder span {
  max-width: 220px;
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  line-height: 1.05;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-card-body {
  padding: 28px 30px 32px;
}

.mini-label {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card-body h2 {
  margin-bottom: 8px;
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
}

.hero-card-body p {
  color: var(--muted);
  font-size: 0.92rem;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow-soft);
  padding: 15px 18px;
  backdrop-filter: blur(16px);
}

.floating-card-one {
  top: 88px;
  left: -35px;
}

.floating-card-two {
  right: -28px;
  bottom: 70px;
}

.floating-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-pale);
  color: #8a653c;
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  font-size: 0.86rem;
}

.floating-card small {
  color: var(--muted);
  font-size: 0.7rem;
}

.scroll-hint {
  position: absolute;
  z-index: 2;
  bottom: 34px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-hint span {
  display: block;
  width: 1px;
  height: 34px;
  background: var(--sage-dark);
  animation: scrollPulse 1.8s infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.25;
    transform: scaleY(0.7);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* Intro */

.intro-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 70px;
}

.intro-grid .section-copy {
  margin-top: 25px;
}

/* Services */

.services-section {
  background: var(--paper);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: var(--white);
  padding: 32px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.service-card:hover {
  border-color: rgba(79, 101, 88, 0.34);
  box-shadow: var(--shadow-soft);
  transform: translateY(-6px);
}

.service-number {
  position: absolute;
  top: 27px;
  right: 29px;
  color: rgba(23, 33, 29, 0.25);
  font-family: "Playfair Display", serif;
  font-size: 0.85rem;
}

.service-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-pale);
  color: var(--sage-dark);
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
}

.service-card h3 {
  margin-bottom: 13px;
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Occasions */

.occasions-section {
  padding-top: 20px;
}

.occasions-panel {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-large);
  background: var(--ink);
  color: var(--white);
  grid-template-columns: 1.25fr 0.75fr;
}

.occasions-copy {
  padding: 78px 72px;
}

.occasions-copy h2 {
  max-width: 630px;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
}

.occasions-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.68);
}

.occasion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.occasion-tags span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  padding: 9px 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.8rem;
}

.occasion-feature {
  display: grid;
  min-height: 520px;
  place-items: center;
  padding: 40px;
  background:
    linear-gradient(rgba(91, 115, 100, 0.78), rgba(60, 81, 68, 0.88)),
    radial-gradient(circle at 40% 30%, #a9bea9, #486052);
}

.occasion-feature-inner {
  text-align: center;
}

.large-symbol {
  display: grid;
  width: 150px;
  height: 150px;
  margin: 0 auto 24px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  font-family: "Playfair Display", serif;
  font-size: 4.8rem;
}

.occasion-feature p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.occasion-feature strong {
  display: block;
  max-width: 260px;
  margin-top: 12px;
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  line-height: 1.22;
}

/* Packages */

.packages-section {
  background: var(--cream);
}

.packages-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.package-card {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: var(--white);
  padding: 38px;
  box-shadow: 0 10px 30px rgba(35, 52, 43, 0.04);
}

.package-name {
  margin-bottom: 12px;
  color: var(--sage-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.package-card h3 {
  margin-bottom: 16px;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  line-height: 1.15;
}


.package-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: -2px 0 18px;
}

.package-price span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-price strong {
  color: var(--sage-dark);
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 4vw, 3.65rem);
  line-height: 1;
}

.consultation-badge {
  align-self: flex-start;
  margin: 0 0 18px;
  border: 1px solid rgba(68, 102, 84, 0.2);
  border-radius: 999px;
  background: var(--sage-pale);
  color: var(--sage-dark);
  padding: 7px 11px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.button-outline {
  border: 1px solid var(--sage-dark);
  background: transparent;
  color: var(--sage-dark);
}

.button-outline:hover {
  background: var(--sage-dark);
  color: var(--white);
}

.package-description {
  color: var(--muted);
  font-size: 0.92rem;
}

.package-card ul {
  display: grid;
  gap: 13px;
  margin: 30px 0 34px;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 27px;
  color: #4d5953;
  font-size: 0.9rem;
}

.package-card li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-pale);
  color: var(--sage-dark);
  content: "✓";
  font-size: 0.67rem;
  font-weight: 800;
}

.featured-package {
  border-color: var(--sage-dark);
  box-shadow: var(--shadow);
  transform: translateY(-18px);
}

.popular-label {
  position: absolute;
  top: 0;
  right: 28px;
  border-radius: 0 0 10px 10px;
  background: var(--sage-dark);
  color: var(--white);
  padding: 8px 13px;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.package-note {
  margin-top: 25px;
  color: var(--muted);
  font-size: 0.83rem;
  text-align: center;
}

/* Process */

.process-section {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.process-intro {
  position: sticky;
  top: 145px;
  align-self: start;
}

.process-intro .section-copy {
  margin: 22px 0 30px;
}

.process-steps {
  display: grid;
  gap: 0;
}

.process-step {
  display: grid;
  border-top: 1px solid var(--line);
  padding: 35px 0;
  grid-template-columns: 88px 1fr;
  gap: 20px;
}

.process-step:last-child {
  border-bottom: 1px solid var(--line);
}

.process-step > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-pale);
  color: var(--sage-dark);
  font-family: "Playfair Display", serif;
}

.process-step h3 {
  margin-bottom: 8px;
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
}

.process-step p {
  max-width: 560px;
  color: var(--muted);
  font-size: 0.94rem;
}

/* About */

.about-section {
  background: var(--cream);
}

.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}

.about-visual {
  position: relative;
}

.about-image {
  display: grid;
  min-height: 610px;
  place-items: center;
  border-radius: var(--radius-large);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(23, 33, 29, 0.24)),
    radial-gradient(circle at 30% 20%, #c9d9cb, #768f7e 48%, #40584a);
  box-shadow: var(--shadow);
}

.about-monogram {
  color: rgba(255, 255, 255, 0.88);
  font-family: "Playfair Display", serif;
  font-size: clamp(4rem, 10vw, 7.5rem);
  letter-spacing: 0.09em;
}

.about-stat {
  position: absolute;
  right: -30px;
  bottom: 38px;
  display: grid;
  width: 165px;
  height: 165px;
  place-items: center;
  border: 8px solid var(--cream);
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.about-stat strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
}

.about-stat span {
  display: block;
  max-width: 85px;
  margin-top: -36px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.25;
}

.about-copy > p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--muted);
}

.about-values {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.about-values > div {
  display: grid;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  grid-template-columns: 52px 160px 1fr;
  gap: 18px;
}

.about-values span {
  color: var(--gold);
  font-family: "Playfair Display", serif;
}

.about-values strong {
  font-family: "Playfair Display", serif;
}

.about-values p {
  color: var(--muted);
  font-size: 0.87rem;
}

/* Testimonial */

.testimonial-section {
  padding: 80px 0;
  background: var(--white);
}

.testimonial-card {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  display: block;
  height: 60px;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 7rem;
  line-height: 1;
}

.testimonial-card blockquote {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.22;
}

.testimonial-card p {
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Enquiry */

.enquiry-section {
  background: var(--ink);
  color: var(--white);
}

.enquiry-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
}

.enquiry-copy {
  padding-top: 35px;
}

.enquiry-copy h2 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.enquiry-copy > p:not(.eyebrow):not(.small-note) {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.68);
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 40px;
}

.contact-list div {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding-top: 17px;
}

.contact-list span,
.contact-list strong {
  display: block;
}

.contact-list span {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list strong {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
}

.small-note {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.76rem;
}

.form-card {
  min-height: 760px;
  border-radius: var(--radius-large);
  background: var(--white);
  color: var(--ink);
  padding: 30px;
}

.form-card-heading {
  margin-bottom: 20px;
}

.form-card-heading h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
}

.google-form {
  width: 100%;
  min-height: 650px;
  border: 0;
  border-radius: 15px;
  background: #f4f4f2;
}

.form-placeholder-message {
  display: none;
  min-height: 480px;
  place-items: center;
  border: 1px dashed rgba(79, 101, 88, 0.35);
  border-radius: 18px;
  background: var(--sage-pale);
  padding: 40px;
  text-align: center;
}

.form-placeholder-message strong {
  display: block;
  margin-bottom: 12px;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
}

.form-placeholder-message p {
  max-width: 520px;
  color: var(--muted);
}

.form-placeholder-message code {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.75);
  padding: 2px 5px;
  font-size: 0.83rem;
}

/* CTA */

.cta-section {
  padding: 78px 0;
  background: var(--gold-pale);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-inner h2 {
  max-width: 700px;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

/* Footer */

.site-footer {
  background: #111915;
  color: var(--white);
  padding: 75px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.65fr 1fr 0.65fr;
  gap: 55px;
}

.footer-brand .brand-mark {
  background: var(--gold);
}

.footer-brand .brand-text small {
  color: rgba(255, 255, 255, 0.5);
}

.footer-grid > div:first-child > p {
  max-width: 360px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
}

.footer-grid h3 {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-grid a,
.footer-grid > div:not(:first-child) p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.72rem;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

/* Reveal animation */

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

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

/* Responsive */

@media (max-width: 1050px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .about-grid,
  .enquiry-grid {
    gap: 50px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
  }

  .floating-card-one {
    left: -15px;
  }

  .floating-card-two {
    right: -12px;
  }

  .occasions-copy {
    padding: 65px 50px;
  }

  .about-values > div {
    grid-template-columns: 45px 135px 1fr;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 86px 0;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 88px 18px auto;
    display: grid;
    max-height: 0;
    gap: 0;
    border: 1px solid transparent;
    border-radius: 22px;
    background: rgba(255, 253, 249, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition:
      max-height 220ms ease,
      opacity 180ms ease,
      padding 180ms ease;
  }

  .main-nav.open {
    max-height: 500px;
    border-color: var(--line);
    opacity: 1;
    padding: 12px;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 14px 15px;
  }

  .main-nav .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .hero {
    padding-top: 145px;
  }

  .hero-grid,
  .intro-grid,
  .occasions-panel,
  .process-grid,
  .about-grid,
  .enquiry-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 55px;
  }

  .hero-content {
    text-align: center;
  }

  .hero h1,
  .hero-copy,
  .hero-points {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    width: min(600px, 100%);
    min-height: 560px;
    margin: 0 auto;
  }

  .hero-card-main {
    margin: 0 auto;
  }

  .intro-grid {
    gap: 22px;
  }

  .section-heading {
    display: block;
  }

  .section-heading .section-copy {
    margin-top: 20px;
  }

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

  .occasions-panel {
    grid-template-columns: 1fr;
  }

  .occasion-feature {
    min-height: 400px;
  }

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

  .package-card {
    min-height: auto;
  }

  .featured-package {
    transform: none;
  }

  .process-grid {
    gap: 50px;
  }

  .process-intro {
    position: static;
  }

  .about-grid {
    gap: 65px;
  }

  .about-image {
    min-height: 500px;
  }

  .about-stat {
    right: 25px;
  }

  .enquiry-grid {
    gap: 50px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 72px 0;
  }

  .nav-container {
    min-height: 76px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .main-nav {
    inset: 76px 12px auto;
  }

  .hero {
    padding: 125px 0 85px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.3rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-points {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 38px;
    text-align: left;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-card-main {
    transform: none;
  }

  .image-placeholder {
    min-height: 280px;
  }

  .floating-card {
    position: static;
    width: calc(100% - 24px);
    margin: 12px auto 0;
  }

  .scroll-hint {
    display: none;
  }

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

  .service-card {
    min-height: auto;
  }

  .occasions-copy {
    padding: 48px 28px;
  }

  .occasion-feature {
    min-height: 340px;
  }

  .package-card {
    padding: 32px 25px;
  }

  .process-step {
    grid-template-columns: 58px 1fr;
  }

  .process-step > span {
    width: 44px;
    height: 44px;
  }

  .about-image {
    min-height: 390px;
  }

  .about-stat {
    right: 14px;
    bottom: -40px;
    width: 135px;
    height: 135px;
  }

  .about-copy {
    margin-top: 34px;
  }

  .about-values > div {
    grid-template-columns: 40px 1fr;
  }

  .about-values p {
    grid-column: 2;
  }

  .form-card {
    min-height: 700px;
    padding: 18px;
  }

  .google-form {
    min-height: 620px;
  }

  .form-placeholder-message {
    min-height: 500px;
    padding: 25px;
  }

  .cta-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* ===== Premium final polish ===== */

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  isolation: isolate;
  color: var(--white);
  background: #142019;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background:
    url("https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=2200&q=88") center/cover no-repeat;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(12, 26, 19, 0.96) 0%, rgba(12, 26, 19, 0.78) 47%, rgba(12, 26, 19, 0.34) 100%),
    linear-gradient(0deg, rgba(12, 26, 19, 0.72), transparent 45%);
}

.hero::before,
.hero::after {
  z-index: -1;
}

.hero .eyebrow,
.hero-copy,
.hero-points span {
  color: rgba(255,255,255,.76);
}

.hero h1 span {
  color: #e0c69f;
}

.hero .button-secondary {
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.10);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.hero .button-secondary:hover {
  background: rgba(255,255,255,.18);
}

.hero-points div {
  border-left-color: rgba(255,255,255,.24);
}

.hero-card {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.93);
  color: var(--ink);
}

.image-placeholder {
  background:
    linear-gradient(0deg, rgba(14, 31, 22, .58), rgba(14, 31, 22, .06)),
    url("https://images.unsplash.com/photo-1507501336603-6e31db2be093?auto=format&fit=crop&w=1100&q=85") center/cover no-repeat;
}

@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0,0,0); }
  to { transform: scale(1.10) translate3d(-1.2%, -1%, 0); }
}

.gallery-section {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  border-radius: var(--radius-medium);
  background: var(--ink);
  cursor: zoom-in;
  text-align: left;
}

.gallery-item-large {
  grid-column: span 7;
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 8;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.8,.2,1), filter 500ms ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,25,17,.88), transparent 58%);
  content: "";
  transition: background 300ms ease;
}

.gallery-item > span {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  color: var(--white);
  transform: translateY(5px);
  transition: transform 300ms ease;
}

.gallery-item strong,
.gallery-item small {
  display: block;
}

.gallery-item strong {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
}

.gallery-item small {
  margin-top: 3px;
  color: rgba(255,255,255,.72);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.07);
  filter: saturate(1.08);
}

.gallery-item:hover > span,
.gallery-item:focus-visible > span {
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(7, 14, 10, .94);
  padding: 50px 80px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
  backdrop-filter: blur(12px);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox figure {
  width: min(1100px, 100%);
  margin: 0;
  text-align: center;
}

.lightbox img {
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
}

.lightbox figcaption {
  margin-top: 16px;
  color: rgba(255,255,255,.82);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: var(--white);
  cursor: pointer;
  font-size: 2rem;
  transition: background 180ms ease, transform 180ms ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255,255,255,.22);
  transform: scale(1.05);
}

.lightbox-close { top: 24px; right: 26px; }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.testimonial-section {
  background: linear-gradient(180deg, var(--white), var(--cream));
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: var(--white);
  padding: 34px;
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.review-card:hover {
  border-color: rgba(79, 101, 88, .30);
  box-shadow: var(--shadow-soft);
  transform: translateY(-7px);
}

.review-card-featured {
  background: var(--ink);
  color: var(--white);
}

.review-status {
  align-self: flex-start;
  border-radius: 999px;
  background: var(--sage-pale);
  padding: 7px 10px;
  color: var(--sage-dark);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.review-card-featured .review-status {
  background: rgba(255,255,255,.12);
  color: #e0c69f;
}

.review-stars {
  margin-top: 28px;
  color: var(--gold);
  letter-spacing: .14em;
}

.review-card blockquote {
  margin: 22px 0 32px;
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  line-height: 1.35;
}

.review-card p {
  margin-top: auto;
}

.review-card strong,
.review-card small {
  display: block;
}

.review-card small {
  margin-top: 4px;
  color: var(--muted);
}

.review-card-featured small {
  color: rgba(255,255,255,.55);
}

.map-section {
  background: var(--white);
}

.map-grid {
  display: grid;
  align-items: center;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
}

.map-copy .section-copy {
  margin: 22px 0 30px;
}

.map-card {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: 540px;
  border: 0;
  filter: saturate(.7) contrast(.95);
}

.map-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  box-shadow: var(--shadow-soft);
  padding: 11px 16px;
  font-weight: 700;
}

.map-badge span {
  color: var(--sage-dark);
}

.floating-actions {
  position: fixed;
  z-index: 1500;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 10px;
}

.floating-actions a {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(20, 35, 27, .24);
  padding: 0 18px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-actions a:hover {
  box-shadow: 0 18px 48px rgba(20, 35, 27, .32);
  transform: translateY(-3px);
}

.floating-quote {
  background: var(--paper);
  color: var(--ink);
}

.floating-whatsapp {
  background: #1f7a52;
  color: var(--white);
}

.google-form {
  min-height: 1100px;
}

.service-card,
.package-card,
.process-step,
.button,
.nav-cta,
.brand-mark {
  will-change: transform;
}

.service-card:hover .service-icon,
.package-card:hover .package-name {
  transform: translateY(-2px);
}

.service-icon,
.package-name {
  transition: transform 220ms ease;
}

.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.8,.2,1);
}

.reveal-left { transform: translateX(-34px); }
.reveal-right { transform: translateX(34px); }
.reveal-scale { transform: scale(.94); }

.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-overlay {
    background: linear-gradient(0deg, rgba(12,26,19,.95), rgba(12,26,19,.60));
  }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
  .gallery-item,
  .gallery-item-large,
  .gallery-item-wide { grid-column: span 1; grid-row: span 1; }
  .gallery-item-large { grid-column: span 2; }
  .testimonial-grid,
  .map-grid { grid-template-columns: 1fr; }
  .map-grid { gap: 40px; }
  .floating-actions strong { display: none; }
  .floating-actions a { width: 52px; justify-content: center; padding: 0; }
}

@media (max-width: 620px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
  .gallery-item,
  .gallery-item-large,
  .gallery-item-wide { grid-column: span 1; }
  .lightbox { padding: 70px 16px 30px; }
  .lightbox-nav { top: auto; bottom: 18px; }
  .lightbox-prev { left: calc(50% - 58px); }
  .lightbox-next { right: calc(50% - 58px); }
  .map-card,
  .map-card iframe { min-height: 420px; height: 420px; }
  .floating-actions { right: 14px; bottom: 14px; }
  .google-form { min-height: 980px; }
}
