/* =====================================================
   Na'Kota Cleaning & Home Services
   Soft luxury · ivory / black / champagne gold
   ===================================================== */

:root {
  --ivory: #FBF8F2;
  --warm-white: #FFFEFB;
  --blush: #F5EEE3;
  --ink: #191613;
  --charcoal: #14110E;
  --charcoal-soft: #201C17;
  --gold: #B4893A;
  --gold-deep: #8F6B25;
  --gold-light: #D9BC7A;
  --gold-pale: #EDE0C3;
  --text: #2B2622;
  --text-soft: #5C5348;
  --on-dark: #F4EFE6;
  --on-dark-soft: #BFB6A8;

  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Montserrat", -apple-system, "Helvetica Neue", sans-serif;
  --font-script: "Dancing Script", cursive;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 18px 50px -18px rgba(25, 22, 19, 0.18);
  --shadow-lift: 0 28px 60px -20px rgba(25, 22, 19, 0.28);
  --radius: 14px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--gold-deep); text-decoration: none; transition: color 0.25s var(--ease-out); }
a:hover { color: var(--gold); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

.container {
  width: min(1160px, 100% - 3rem);
  margin-inline: auto;
}

.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }

.section--dark {
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(180, 137, 58, 0.14), transparent 60%),
    var(--charcoal);
  color: var(--on-dark);
}

.section--blush {
  background: linear-gradient(180deg, var(--ivory), var(--blush) 30%, var(--blush) 70%, var(--ivory));
}

/* ---------- Typography helpers ---------- */
.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.section--dark .section-title { color: var(--on-dark); }

.section-title em {
  font-style: italic;
  color: var(--gold-deep);
}

.section--dark .section-title em { color: var(--gold-light); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.section-sub {
  margin-top: 1.1rem;
  color: var(--text-soft);
  font-size: 1rem;
  font-weight: 300;
}

.section--dark .section-sub { color: var(--on-dark-soft); }

.script-eyebrow {
  font-family: var(--font-script);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 500;
  color: var(--gold-deep);
  margin-bottom: 0.6rem;
}

.script-eyebrow--gold { color: var(--gold-light); }

.script-inline {
  font-family: var(--font-script);
  font-size: 1.25em;
  color: var(--gold-deep);
}

.gold-rule {
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  position: relative;
  margin: 1.4rem 0;
  transform-origin: left center;
}

.gold-rule--center { margin-inline: auto; transform-origin: center; }

.gold-rule::after {
  content: "✦";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.7rem;
  color: var(--gold);
  background: inherit;
  background: transparent;
  padding: 0 0.4rem;
}

.gold-rule { display: flex; align-items: center; justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background-color 0.25s, color 0.25s, border-color 0.25s;
}

.btn--gold {
  background: linear-gradient(120deg, #7D5E1D, var(--gold-deep) 60%, #96712A);
  color: #FFFDF8;
  box-shadow: 0 10px 26px -10px rgba(143, 107, 37, 0.55);
}

.btn--gold:hover {
  color: #FFFDF8;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -10px rgba(143, 107, 37, 0.6);
}

/* shimmer sweep */
.btn--gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease-out);
}

.btn--gold:hover::after { transform: translateX(120%); }

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(25, 22, 19, 0.35);
}

.btn--outline:hover {
  color: var(--gold-deep);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn--small { min-height: 42px; padding: 0.55rem 1.5rem; font-size: 0.72rem; }
.btn--full { width: 100%; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 242, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(180, 137, 58, 0.18);
  transition: box-shadow 0.3s var(--ease-out);
}

.nav.is-scrolled { box-shadow: 0 10px 30px -18px rgba(25, 22, 19, 0.25); }

.nav__inner {
  width: min(1240px, 100% - 3rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.65rem 0;
}

.nav__logo {
  height: 62px;
  width: auto;
  mix-blend-mode: multiply; /* hides the white JPEG background on ivory */
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.2rem);
}

.nav__links a:not(.btn) {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 0.35rem 0;
}

.nav__links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.nav__links a:not(.btn):hover { color: var(--gold-deep); }
.nav__links a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--ink);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 6.5rem);
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 78% 30%, rgba(217, 188, 122, 0.22), transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 85%, rgba(245, 238, 227, 0.9), transparent 70%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.5rem, 5.4vw, 4.1rem);
  line-height: 1.08;
  color: var(--ink);
  position: relative;
  margin-bottom: 1.4rem;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-deep);
}

.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  font-weight: 300;
  color: var(--text-soft);
  max-width: 32rem;
  margin-bottom: 2.2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.hero__note {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--text-soft);
}

.hero__note a { font-weight: 600; }

/* Portrait */
.hero__visual { display: flex; justify-content: center; }

.portrait {
  position: relative;
  width: min(420px, 88%);
}

.portrait__frame {
  position: relative;
  border-radius: 999px 999px var(--radius) var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 4.6;
  background: var(--charcoal);
}

/* Brand emblem panel (logo-led hero) */
.brandmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  aspect-ratio: auto; /* grow with content so the tagline never collides with the badge */
  padding: 2.2rem 2rem 3.6rem;
  background:
    radial-gradient(ellipse 90% 55% at 50% 0%, rgba(180, 137, 58, 0.24), transparent 62%),
    radial-gradient(ellipse 70% 45% at 50% 105%, rgba(180, 137, 58, 0.16), transparent 65%),
    var(--charcoal);
}

.brandmark__photo {
  width: min(200px, 58%);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--gold);
  box-shadow:
    0 0 0 7px rgba(180, 137, 58, 0.14),
    0 22px 44px -18px rgba(0, 0, 0, 0.85);
  margin-bottom: 1.4rem;
  flex-shrink: 0;
}

.brandmark__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06); /* clips the source circle's black edge */
}

.brandmark__name {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.5vw, 3.9rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--on-dark);
}

.brandmark__script {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 2.4vw, 1.7rem);
  color: var(--gold-light);
  margin-top: 0.5rem;
}

.brandmark__rule {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: min(190px, 70%);
  margin: 1.4rem 0 1.2rem;
  color: var(--gold);
  font-size: 0.7rem;
}

.brandmark__rule::before,
.brandmark__rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.brandmark__rule::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.brandmark__tagline {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  line-height: 1.9;
  color: var(--on-dark-soft);
}

.portrait__ring {
  position: absolute;
  inset: -16px -16px 18px auto;
  width: 100%;
  border-radius: 999px 999px var(--radius) var(--radius);
  border: 1px solid var(--gold);
  transform: translate(16px, 0);
  pointer-events: none;
}

.portrait__badge {
  position: absolute;
  left: -8%;
  bottom: 0;
  transform: translateY(60%); /* straddles the frame edge; never reaches the tagline */
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(255, 254, 251, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(180, 137, 58, 0.35);
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.portrait__badge-star {
  color: var(--gold);
  font-size: 1.3rem;
}

/* Sparkles */
.sparkle {
  position: absolute;
  fill: var(--gold);
  pointer-events: none;
  animation: twinkle 3.2s ease-in-out infinite;
}

.sparkle--title {
  width: 22px;
  top: -14px;
  right: 8%;
  animation-delay: 0.6s;
}

.sparkle--a { width: 26px; top: -6%; right: 2%; }
.sparkle--b { width: 15px; top: 12%; left: -9%; animation-delay: 1.1s; }
.sparkle--c { width: 19px; bottom: -3%; right: -7%; animation-delay: 2s; }

@keyframes twinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.75) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.05) rotate(12deg); }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--charcoal);
  overflow: hidden;
  padding: 0.95rem 0;
  border-block: 1px solid rgba(217, 188, 122, 0.3);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.marquee__track span {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-style: italic;
  letter-spacing: 0.14em;
  white-space: nowrap;
  color: var(--gold-pale);
}

.marquee__track i {
  font-style: normal;
  font-size: 0.65rem;
  color: var(--gold);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}

.about__aside { position: sticky; top: 110px; }

.about__logo {
  width: min(280px, 80%);
  mix-blend-mode: multiply;
  margin-top: 1.8rem;
}

.about__copy p + p { margin-top: 1.3rem; }

.about__copy {
  font-weight: 300;
  color: var(--text-soft);
}

.about__lead {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
}

.about__lead::first-letter {
  font-size: 3.4em;
  float: left;
  line-height: 0.85;
  padding-right: 0.12em;
  color: var(--gold-deep);
  font-style: italic;
}

.about__quote {
  margin-top: 2.2rem;
  padding: 1.6rem 0 0.4rem;
  border-top: 1px solid rgba(180, 137, 58, 0.35);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
}

/* ---------- Services ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: linear-gradient(160deg, var(--charcoal-soft), rgba(32, 28, 23, 0.6));
  border: 1px solid rgba(217, 188, 122, 0.18);
  border-radius: var(--radius);
  padding: 2.4rem 2rem 2.2rem;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 188, 122, 0.55);
  box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.6);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  color: var(--gold-light);
  margin-bottom: 1.4rem;
  transition: transform 0.35s var(--ease-out);
}

.service-card:hover .service-card__icon { transform: translateY(-3px) scale(1.05); }

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
  color: var(--on-dark);
}

.service-card p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--on-dark-soft);
}

/* ---------- Pricing ---------- */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.price-panel {
  position: relative;
  background: var(--warm-white);
  border: 1px solid rgba(180, 137, 58, 0.22);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.price-panel:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }

.price-panel--featured {
  border-color: var(--gold);
  border-width: 1.5px;
}

.price-panel__flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(120deg, #7D5E1D, var(--gold-deep));
  color: #FFFDF8;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.32rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.price-panel__title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  color: var(--ink);
  margin-bottom: 1.4rem;
}

.price-list { list-style: none; }

.price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.85rem 0;
  border-bottom: 1px dotted rgba(180, 137, 58, 0.4);
}

.price-list li:last-child { border-bottom: none; }

.price-list span {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
}

.price-list small {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-soft);
  letter-spacing: 0.03em;
}

.price-list b {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--gold-deep);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.pricing__cta {
  text-align: center;
  margin-top: 2.6rem;
}

/* Recurring discounts */
.discounts {
  text-align: center;
  margin-top: 3rem;
}

.discounts__label {
  margin-bottom: 1.3rem;
}

.discounts__label .script-inline { font-size: 1.5rem; }

.discounts__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.discount {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  min-width: 150px;
  padding: 1.1rem 1.8rem;
  background: var(--warm-white);
  border: 1px solid rgba(180, 137, 58, 0.35);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}

.discount:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}

.discount b {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold-deep);
  line-height: 1.1;
}

.discount span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ---------- What's Included ---------- */
.included__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.included-panel {
  background: var(--warm-white);
  border: 1px solid rgba(180, 137, 58, 0.22);
  border-radius: var(--radius);
  padding: 2.6rem 2.4rem;
  box-shadow: var(--shadow-soft);
}

.included-panel--dark {
  background:
    radial-gradient(ellipse 90% 50% at 50% 0%, rgba(180, 137, 58, 0.15), transparent 65%),
    var(--charcoal);
  border-color: rgba(217, 188, 122, 0.3);
  color: var(--on-dark);
}

.included-panel__title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--ink);
}

.included-panel--dark .included-panel__title { color: var(--on-dark); }

.included-panel__sub {
  font-family: var(--font-script);
  font-size: 1.25rem;
  color: var(--gold-deep);
  margin: 0.3rem 0 1.5rem;
}

.included-panel--dark .included-panel__sub { color: var(--gold-light); }

.check-list {
  list-style: none;
  columns: 1;
}

.check-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.7rem;
  font-size: 0.95rem;
  font-weight: 400;
  break-inside: avoid;
}

.check-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.45rem;
  color: var(--gold);
  font-size: 0.8rem;
}

.check-list small {
  color: var(--text-soft);
  font-size: 0.83rem;
}

.check-list--gold small { color: var(--on-dark-soft); }

/* ---------- Premium Enhancements ---------- */
.extras__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.extra {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  background: var(--warm-white);
  border: 1px solid rgba(180, 137, 58, 0.25);
  border-radius: 999px;
  padding: 0.95rem 1.6rem;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}

.extra:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: var(--shadow-soft);
}

.extra span {
  font-size: 0.88rem;
  font-weight: 500;
}

.extra span small {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-soft);
}

.extra b {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--gold-deep);
  white-space: nowrap;
}

/* ---------- Why Choose Us ---------- */
.trust__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.4rem 2.5rem;
  max-width: 1020px;
  margin-inline: auto;
}

.trust__list li {
  display: flex;
  gap: 1.3rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(217, 188, 122, 0.18);
}

.trust__list i {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  min-width: 2.6rem;
}

.trust__list h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--on-dark);
  margin-bottom: 0.25rem;
}

.trust__list p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--on-dark-soft);
}

/* ---------- Contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact__lead {
  font-weight: 300;
  color: var(--text-soft);
  max-width: 26rem;
  margin-bottom: 2rem;
}

.contact__details {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.contact__details li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.contact__details svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
}

.contact__details a {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}

.contact__details a:hover { color: var(--gold-deep); }

.contact__social-label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.8rem;
}

.contact__social { display: flex; gap: 0.8rem; }

.contact__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(180, 137, 58, 0.4);
  border-radius: 50%;
  color: var(--gold-deep);
  transition: transform 0.3s var(--ease-out), background-color 0.3s, color 0.3s, border-color 0.3s;
}

.contact__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #FFFDF8;
  transform: translateY(-3px);
}

.contact__social svg { width: 21px; height: 21px; }

/* Form */
.contact__form {
  background: var(--warm-white);
  border: 1px solid rgba(180, 137, 58, 0.25);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: var(--shadow-soft);
}

.contact__form-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1.6rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.field { margin-bottom: 1.1rem; }

.field label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.45rem;
}

.field label span { color: var(--gold-deep); }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--ivory);
  border: 1px solid rgba(180, 137, 58, 0.3);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.field textarea { resize: vertical; min-height: 110px; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(180, 137, 58, 0.16);
}

.field input::placeholder,
.field textarea::placeholder { color: #A79C8D; }

.field-error {
  color: #A33A2A;
  font-size: 0.85rem;
  margin: -0.3rem 0 1rem;
}

.contact__form-note {
  margin-top: 1.1rem;
  font-size: 0.82rem;
  color: var(--text-soft);
  text-align: center;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--charcoal);
  color: var(--on-dark-soft);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(217, 188, 122, 0.3);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(217, 188, 122, 0.15);
}

.footer__wordmark {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--on-dark);
  line-height: 1.1;
}

.footer__script {
  font-family: var(--font-script);
  font-size: 1.35rem;
  color: var(--gold-light);
  margin-bottom: 0.7rem;
}

.footer__tagline {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer__links,
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.9rem;
}

.footer__links a,
.footer__contact a {
  color: var(--on-dark-soft);
  width: fit-content;
}

.footer__links a:hover,
.footer__contact a:hover { color: var(--gold-light); }

.footer__legal {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  padding-top: 1.8rem;
  color: rgba(191, 182, 168, 0.7);
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal--delay-1 { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }

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

/* Gold rule draws in when revealed */
.reveal .gold-rule,
.gold-rule {
  transform: scaleX(1);
}

.reveal:not(.is-visible) .gold-rule { transform: scaleX(0); }

.gold-rule { transition: transform 1s var(--ease-out) 0.35s; }

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

  .reveal,
  .reveal--delay-1,
  .reveal--delay-2 {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .sparkle { animation: none; opacity: 0.8; }
  .marquee__track { animation: none; }
  .btn--gold::after { display: none; }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .extras__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .price-panel--featured { order: -1; }
}

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__sub { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__visual { order: -1; }
  .portrait { width: min(340px, 80%); }
  .sparkle--title { display: none; }

  .about__grid { grid-template-columns: 1fr; }
  .about__aside { position: static; }
  .about__logo { margin-inline: 0; }

  .included__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer__links a, .footer__contact a { margin-inline: auto; }
}

@media (max-width: 760px) {
  .nav__toggle { display: flex; }

  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
    background: var(--ivory);
    border-bottom: 1px solid rgba(180, 137, 58, 0.25);
    padding: 1.8rem 0 2.2rem;
    box-shadow: 0 24px 40px -20px rgba(25, 22, 19, 0.25);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s;
  }

  .nav__links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .services__grid { grid-template-columns: 1fr; }
  .extras__grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .check-list { columns: 1; }
  .portrait__badge { left: 0; padding: 0.65rem 1rem; font-size: 0.95rem; }
  .btn { width: 100%; }
  .nav__cta { width: auto; }
  .hero__actions { flex-direction: column; align-items: stretch; }
}
