/* ==========================================================================
   Christy's Mobile Notary Next Door
   Design tokens are all defined here in :root — change a value once and it
   propagates across the whole site.
   ========================================================================== */

:root {
  /* Brand palette, sampled from the logo */
  --wine-900: #5e1220;
  --wine-800: #7a1b2b;
  --wine-700: #8e2437;
  --wine-600: #a33246;

  --gold-700: #9c5a63;
  --gold-600: #b76e79; /* rose gold, primary accent */
  --gold-500: #c98a93;
  --gold-400: #d99aa1;

  --blush-300: #efcacd;
  --blush-200: #f7e4e5;
  --blush-100: #fcf1f1;

  --cream: #fdf9f8;
  --ink-900: #2b1e21;
  --ink-700: #4a3a3d;
  --ink-500: #6f5c60;
  --white: #ffffff;

  /* Metallic rose gold — used for rules, small flourishes and text accents */
  --rose-gold-sheen: linear-gradient(
    100deg,
    #9c5a63 0%,
    #c98a93 18%,
    #f2d4d3 34%,
    #b76e79 52%,
    #f2d4d3 68%,
    #c98a93 84%,
    #9c5a63 100%
  );
  --wine-sheen: linear-gradient(135deg, var(--wine-800) 0%, var(--wine-600) 55%, var(--gold-600) 100%);

  /* Darker sheen for metallic *text*, which needs real contrast on cream */
  --rose-gold-text: linear-gradient(
    100deg,
    #8a4650 0%,
    #b76e79 28%,
    #d0929a 50%,
    #b76e79 72%,
    #8a4650 100%
  );

  /* Deeper fill for small badges that carry white icons on top */
  --rose-gold-deep: linear-gradient(140deg, #8a4650 0%, var(--gold-600) 100%);

  /* Polished light rose gold. Pairs with dark wine text, so it stays legible
     on both the cream header and the dark wine sections. */
  --rose-gold-lustre: linear-gradient(
    100deg,
    #d2949c 0%,
    #f0d2d3 25%,
    #e3b3b8 50%,
    #f0d2d3 75%,
    #d2949c 100%
  );

  /* Typography */
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-script: "Parisienne", "Brush Script MT", cursive;
  --font-body: "Jost", "Avenir Next", "Segoe UI", system-ui, sans-serif;

  /* Spacing + shape */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --section-y: clamp(4.5rem, 9vw, 8rem);
  --container: 1180px;

  /* Elevation, tinted warm so shadows never look grey */
  --shadow-sm: 0 2px 10px rgba(122, 27, 43, 0.06);
  --shadow: 0 12px 32px -10px rgba(122, 27, 43, 0.16);
  --shadow-lg: 0 28px 60px -22px rgba(122, 27, 43, 0.26);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   Reset / base
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  /* Offset anchor targets so the sticky header never covers a heading */
  scroll-padding-top: 6rem;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: var(--cream);
  color: var(--ink-700);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  /* Required alongside the width/height attributes, or a constrained image
     keeps its attribute height and distorts. */
  height: auto;
  display: block;
}

a {
  color: var(--wine-700);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--gold-600);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--wine-800);
  line-height: 1.15;
  margin: 0 0 0.6em;
  font-weight: 600;
  letter-spacing: -0.01em;
  /* Evens out line lengths so headings never end on a single orphan word */
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
}
h2 {
  font-size: clamp(2rem, 4.2vw, 3rem);
}
h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  margin: 0 0 1.1em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* The UA stylesheet gives figure and blockquote a 40px inline margin, which
   otherwise shrinks every card that uses them. */
figure,
blockquote,
dl,
dd {
  margin: 0;
}

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

/* ==========================================================================
   Layout helpers
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.section {
  padding-block: var(--section-y);
  position: relative;
}

.section--tint {
  background: linear-gradient(180deg, var(--blush-100) 0%, var(--cream) 100%);
}

.section--blush {
  background-color: var(--blush-200);
}

.section--wine {
  background: radial-gradient(circle at 15% 10%, var(--wine-700) 0%, var(--wine-900) 70%);
  color: var(--blush-200);
}

.section--wine h2,
.section--wine h3 {
  color: var(--white);
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  z-index: 200;
  background: var(--wine-800);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 500;
}

.skip-link:focus {
  top: 0;
  color: var(--white);
}

/* Section headings ------------------------------------------------------- */

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 1rem;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--rose-gold-sheen);
}

.section--wine .eyebrow {
  color: var(--blush-300);
}

.section--wine .eyebrow::before,
.section--wine .eyebrow::after {
  background: var(--gold-400);
}

.section-head p {
  font-size: 1.075rem;
  color: var(--ink-500);
  margin-bottom: 0;
}

.section--wine .section-head p {
  color: var(--blush-300);
}

/* Decorative divider mirroring the logo's flourish ----------------------- */

.flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.flourish::before,
.flourish::after {
  content: "";
  height: 1px;
  width: clamp(3rem, 12vw, 7rem);
  background: var(--rose-gold-sheen);
}

.flourish span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-600);
  box-shadow: 0 0 0 4px rgba(183, 110, 121, 0.16);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  --btn-bg: var(--wine-sheen);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 2rem;
  border: 0;
  border-radius: var(--radius-pill);
  background-image: var(--btn-bg);
  background-size: 160% 100%;
  background-position: 0% 50%;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    background-position 0.5s var(--ease), color 0.25s var(--ease);
}

.btn:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background-position: 100% 50%;
}

/* Dark wine label rather than white — rose gold is a mid-tone and white text
   disappears into the lighter bands of the gradient. */
.btn--gold {
  --btn-bg: var(--rose-gold-lustre);
  color: var(--wine-900);
}

.btn--gold:hover {
  color: var(--wine-900);
}

.btn--ghost {
  background-image: none;
  background-color: transparent;
  color: var(--wine-800);
  box-shadow: inset 0 0 0 1.5px var(--gold-500);
}

.btn--ghost:hover {
  color: var(--wine-900);
  background-color: var(--blush-200);
  box-shadow: inset 0 0 0 1.5px var(--gold-600);
}

.btn--on-wine {
  background-image: none;
  background-color: var(--white);
  color: var(--wine-800);
}

.btn--on-wine:hover {
  color: var(--wine-900);
  background-color: var(--blush-200);
}

.btn--lg {
  padding: 1.1rem 2.4rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

.btn svg {
  width: 1.05em;
  height: 1.05em;
  flex-shrink: 0;
}

/* ==========================================================================
   Header / navigation
   ========================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(253, 249, 248, 0.82);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  transition: box-shadow 0.35s var(--ease), background-color 0.35s var(--ease);
}

.header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--rose-gold-sheen);
  opacity: 0.5;
}

.header.is-stuck {
  background-color: rgba(253, 249, 248, 0.96);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--blush-300), var(--shadow-sm);
  transition: transform 0.4s var(--ease);
}

.brand:hover img {
  transform: rotate(-6deg) scale(1.05);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--wine-800);
}

.brand__tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-700);
}

.nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.nav__items {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 1.7vw, 1.9rem);
}

/* Scoped away from .btn so the CTA keeps its own colour and doesn't get the
   hover underline drawn across it. */
.nav a:not(.btn) {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-700);
  padding-block: 0.35rem;
  white-space: nowrap;
}

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

.nav a:not(.btn):hover,
.nav a:not(.btn)[aria-current="true"] {
  color: var(--wine-800);
}

.nav a:not(.btn):hover::after,
.nav a:not(.btn)[aria-current="true"]::after {
  transform: scaleX(1);
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
}

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--wine-800);
}

.header__phone svg {
  width: 1.1em;
  height: 1.1em;
  color: var(--gold-600);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  padding: 0;
  place-items: center;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--wine-800);
  transition: transform 0.35s var(--ease), opacity 0.2s linear;
}

.nav-toggle span + span {
  margin-top: 5px;
}

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

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(ellipse 60% 50% at 85% 0%, var(--blush-200) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 0% 100%, var(--blush-100) 0%, transparent 65%),
    var(--cream);
}

/* Soft blurred colour blobs for depth */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
}

.hero::before {
  width: 26rem;
  height: 26rem;
  top: -8rem;
  right: -6rem;
  background: radial-gradient(circle, var(--blush-300), transparent 70%);
}

.hero::after {
  width: 20rem;
  height: 20rem;
  bottom: -7rem;
  left: -5rem;
  background: radial-gradient(circle, rgba(183, 110, 121, 0.35), transparent 70%);
}

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

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.1rem 0.45rem 0.5rem;
  border-radius: var(--radius-pill);
  background-color: var(--white);
  box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--blush-300);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--wine-800);
  margin-bottom: 1.75rem;
}

.hero__badge b {
  display: grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background-image: var(--rose-gold-deep);
  color: var(--white);
}

.hero__badge svg {
  width: 0.9rem;
  height: 0.9rem;
}

.hero h1 {
  margin-bottom: 0.35em;
}

.hero h1 em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  /* Metallic text fill for the script accent */
  background-image: var(--rose-gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.08em;
  /* Keeps the "next door" brand phrase on one line */
  white-space: nowrap;
}

.hero__lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-500);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.5rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--blush-300);
}

.hero__trust div {
  min-width: 5.5rem;
}

.hero__trust dt {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--wine-700);
  line-height: 1;
}

.hero__trust dd {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-500);
}

/* Hero logo medallion */
.hero__media {
  position: relative;
  display: grid;
  place-items: center;
}

.hero__medallion {
  position: relative;
  width: min(100%, 26rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 50%;
  background-color: var(--white);
  box-shadow: var(--shadow-lg), inset 0 0 0 1px var(--blush-200);
}

/* Rotating rose gold ring */
.hero__medallion::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    var(--gold-400) 60deg,
    var(--blush-300) 120deg,
    transparent 200deg,
    var(--gold-600) 300deg,
    transparent 360deg
  );
  animation: spin 22s linear infinite;
  z-index: -1;
}

.hero__medallion::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background-color: var(--cream);
  z-index: -1;
}

.hero__medallion img {
  border-radius: 50%;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Floating info chips around the medallion */
.hero__chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius-pill);
  background-color: var(--white);
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--wine-800);
  white-space: nowrap;
  animation: float 6s ease-in-out infinite;
}

.hero__chip svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--gold-600);
}

.hero__chip--one {
  top: 8%;
  left: -4%;
}

.hero__chip--two {
  bottom: 12%;
  right: -4%;
  animation-delay: -3s;
}

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

/* ==========================================================================
   Marquee strip
   ========================================================================== */

.strip {
  background-image: var(--wine-sheen);
  color: var(--blush-200);
  padding-block: 1rem;
  overflow: hidden;
}

/* The track holds two identical groups. Spacing lives inside each item as
   padding (not flex gap) so the group is self-contained and translating the
   track by exactly -50% loops seamlessly. */
.strip__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 42s linear infinite;
}

.strip__group {
  display: flex;
  align-items: center;
}

.strip__group li {
  display: inline-flex;
  align-items: center;
  gap: 2.25rem;
  padding-right: 2.25rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}

.strip__group li::after {
  content: "✦";
  color: var(--gold-400);
  letter-spacing: 0;
  font-size: 0.7rem;
}

.strip:hover .strip__track {
  animation-play-state: paused;
}

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

/* ==========================================================================
   Cards / grids
   ========================================================================== */

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}

.card {
  position: relative;
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  background-color: var(--white);
  box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--blush-200);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

/* Rose gold top edge that wipes in on hover */
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--rose-gold-sheen);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), inset 0 0 0 1px var(--blush-300);
}

.card:hover::before {
  transform: scaleX(1);
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card p:last-child {
  margin-bottom: 0;
}

.card__icon {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1.35rem;
  border-radius: var(--radius);
  background: linear-gradient(150deg, var(--blush-200), var(--blush-300));
  color: var(--wine-700);
  box-shadow: inset 0 0 0 1px rgba(183, 110, 121, 0.22);
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}

.card__icon svg {
  width: 1.6rem;
  height: 1.6rem;
}

.card:hover .card__icon {
  background-image: var(--rose-gold-deep);
  color: var(--white);
}

.card__list {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.5rem;
}

.card__list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.93rem;
  color: var(--ink-500);
}

.card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--gold-500);
}

/* ==========================================================================
   Process steps
   ========================================================================== */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 2.25rem 1.6rem 1.75rem;
  border-radius: var(--radius-lg);
  background-color: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 0 1px rgba(239, 202, 205, 0.22);
  counter-increment: step;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -0.9rem;
  left: 1.6rem;
  display: grid;
  place-items: center;
  min-width: 2.6rem;
  height: 2.6rem;
  padding-inline: 0.6rem;
  border-radius: var(--radius-pill);
  background-image: var(--rose-gold-lustre);
  color: var(--wine-900);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.step h3 {
  margin: 0.75rem 0 0.5rem;
  font-size: 1.2rem;
}

.step p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--blush-300);
}

/* ==========================================================================
   Pricing
   ========================================================================== */

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1.75rem;
  align-items: start;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.25rem 1.9rem;
  border-radius: var(--radius-lg);
  background-color: var(--white);
  box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--blush-200);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.price-card--featured {
  background-image: var(--wine-sheen);
  color: var(--blush-200);
  box-shadow: var(--shadow-lg);
}

.price-card--featured h3 {
  color: var(--white);
}

/* Kept in normal flow so it can never collide with the kicker on narrow cards */
.price-card__flag {
  align-self: flex-start;
  margin-bottom: 0.9rem;
  white-space: nowrap;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  background-image: var(--rose-gold-lustre);
  color: var(--wine-900);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-card__kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 0.75rem;
}

.price-card--featured .price-card__kicker {
  color: var(--blush-300);
}

.price-card__amount {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  font-family: var(--font-display);
  margin-bottom: 0.4rem;
}

.price-card__amount strong {
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  font-weight: 600;
  color: var(--wine-700);
  line-height: 1;
}

.price-card--featured .price-card__amount strong {
  color: var(--white);
}

.price-card__amount span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-500);
}

.price-card--featured .price-card__amount span {
  color: var(--blush-300);
}

.price-card__note {
  font-size: 0.92rem;
  color: var(--ink-500);
  margin-bottom: 1.5rem;
}

.price-card--featured .price-card__note {
  color: var(--blush-300);
}

.price-card__items {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--blush-300);
}

.price-card--featured .price-card__items {
  border-top-color: rgba(239, 202, 205, 0.3);
}

.price-card__items li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.93rem;
}

.price-card__items svg {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  margin-top: 0.32rem;
  color: var(--gold-600);
}

.price-card--featured .price-card__items svg {
  color: var(--blush-300);
}

.price-card .btn {
  margin-top: auto;
}

/* Add-on fee table ------------------------------------------------------- */

.fee-table {
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  background-color: var(--white);
  box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--blush-200);
  overflow: hidden;
}

.fee-table__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1.5rem 1.9rem;
  background: linear-gradient(120deg, var(--blush-200), var(--blush-100));
}

.fee-table__head h3 {
  margin: 0;
  font-size: 1.3rem;
}

.fee-table__head p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-500);
}

.fee-table dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
}

.fee-table dl > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.05rem 1.9rem;
  border-top: 1px solid var(--blush-200);
}

.fee-table dt {
  font-weight: 500;
  color: var(--ink-700);
}

.fee-table dt small {
  display: block;
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--ink-500);
}

.fee-table dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--wine-700);
  white-space: nowrap;
}

.disclaimer {
  margin-top: 1.75rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--gold-600);
  background-color: var(--blush-100);
  font-size: 0.88rem;
  color: var(--ink-500);
}

.disclaimer p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   About / split media sections
   ========================================================================== */

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: center;
}

.split__media {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--blush-200), var(--white));
  box-shadow: var(--shadow);
}

.split__media::before {
  content: "";
  position: absolute;
  inset: 0.9rem;
  border-radius: var(--radius);
  border: 1px solid var(--gold-500);
  opacity: 0.45;
  pointer-events: none;
}

.split__media img {
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.checklist {
  display: grid;
  gap: 0.85rem;
  margin: 1.75rem 0 2.25rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.98rem;
}

.checklist svg {
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
  padding: 0.22rem;
  border-radius: 50%;
  background-image: var(--rose-gold-deep);
  color: var(--white);
}

/* Signature line, echoes the script in the logo */
.signature {
  font-family: var(--font-script);
  font-size: 2.25rem;
  color: var(--gold-600);
  line-height: 1;
  margin-top: 1.5rem;
}

/* ==========================================================================
   Service area
   ========================================================================== */

.area {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.25rem;
}

.area__list {
  columns: 2;
  column-gap: 1.5rem;
}

.area__list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-block: 0.4rem;
  font-size: 0.95rem;
}

.area__list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-image: var(--rose-gold-sheen);
  flex-shrink: 0;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.quote {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.25rem 1.9rem 1.9rem;
  border-radius: var(--radius-lg);
  background-color: var(--white);
  box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--blush-200);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

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

.quote__mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--blush-300);
  margin-bottom: 0.5rem;
}

.quote__stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.9rem;
  color: var(--gold-600);
}

.quote__stars svg {
  width: 1.05rem;
  height: 1.05rem;
}

.quote blockquote {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  color: var(--ink-700);
}

.quote figcaption {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--blush-200);
}

.quote__avatar {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background-image: var(--rose-gold-deep);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  flex-shrink: 0;
}

.quote__who strong {
  display: block;
  font-size: 0.95rem;
  color: var(--wine-800);
  font-weight: 600;
}

.quote__who span {
  font-size: 0.82rem;
  color: var(--ink-500);
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq {
  max-width: 50rem;
  margin-inline: auto;
  display: grid;
  gap: 0.9rem;
}

.faq details {
  border-radius: var(--radius);
  background-color: var(--white);
  box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--blush-200);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease);
}

.faq details[open] {
  box-shadow: var(--shadow), inset 0 0 0 1px var(--blush-300);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem 1.6rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--wine-800);
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  flex-shrink: 0;
  border-right: 2px solid var(--gold-600);
  border-bottom: 2px solid var(--gold-600);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s var(--ease);
}

.faq details[open] summary::after {
  transform: rotate(-135deg) translateY(-2px);
}

.faq__body {
  padding: 0 1.6rem 1.5rem;
  font-size: 0.97rem;
  color: var(--ink-500);
}

.faq__body p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.contact__details {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

.contact__row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact__row svg {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  padding: 0.65rem;
  border-radius: var(--radius-sm);
  background-color: var(--white);
  color: var(--wine-700);
  box-shadow: var(--shadow-sm);
}

.contact__row strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 0.15rem;
}

.contact__row a,
.contact__row p {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--wine-800);
}

.form {
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  background-color: var(--white);
  box-shadow: var(--shadow);
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin-bottom: 1.1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-500);
}

.field label span {
  color: var(--wine-600);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--blush-300);
  border-radius: var(--radius-sm);
  background-color: var(--cream);
  color: var(--ink-900);
  font-family: inherit;
  font-size: 0.97rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background-color 0.25s var(--ease);
}

.field textarea {
  resize: vertical;
  min-height: 7rem;
}

.field select {
  appearance: none;
  /* Chevron drawn inline so there is no extra image request */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b76e79' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.1rem;
  padding-right: 2.75rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-600);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(183, 110, 121, 0.14);
}

.field input:user-invalid,
.field textarea:user-invalid {
  border-color: var(--wine-600);
}

.form__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.form__foot small {
  font-size: 0.82rem;
  color: var(--ink-500);
}

.form__status {
  margin-top: 1.1rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  background-color: var(--blush-100);
  border-left: 3px solid var(--gold-600);
  font-size: 0.9rem;
  color: var(--wine-800);
}

.form__status[hidden] {
  display: none;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */

.cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 120%, rgba(183, 110, 121, 0.5), transparent 60%);
  pointer-events: none;
}

.cta__inner {
  position: relative;
  max-width: 46rem;
  margin-inline: auto;
}

.cta h2 {
  margin-bottom: 0.5em;
}

.cta p {
  color: var(--blush-300);
  font-size: 1.075rem;
  margin-bottom: 2rem;
}

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

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background-color: var(--blush-100);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: 0.93rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--blush-300);
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 1.1rem;
}

.footer ul {
  display: grid;
  gap: 0.6rem;
}

.footer a {
  color: var(--ink-700);
}

.footer a:hover {
  color: var(--wine-700);
}

.footer__brand p {
  color: var(--ink-500);
  max-width: 24rem;
  margin-top: 1.1rem;
  font-size: 0.92rem;
}

.footer__social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.footer__social a {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--wine-700);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), background-image 0.3s var(--ease), color 0.3s var(--ease);
}

.footer__social a:hover {
  transform: translateY(-3px);
  background-image: var(--rose-gold-deep);
  color: var(--white);
}

.footer__social svg {
  width: 1.1rem;
  height: 1.1rem;
}

.footer__legal {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--ink-500);
}

.footer__legal p {
  margin: 0;
  max-width: 46rem;
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1040px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .hero__inner,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero__media {
    order: -1;
  }

  .hero__medallion {
    width: min(78%, 20rem);
  }

  .split__media {
    max-width: 26rem;
    margin-inline: auto;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: grid;
  }

  .header__phone span {
    display: none;
  }

  /* Slide-down mobile panel */
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0.5rem clamp(1.25rem, 4vw, 2.5rem) 1.5rem;
    /* Fully opaque so page content never shows through the open menu */
    background-color: var(--cream);
    box-shadow: var(--shadow);
    /* Collapsed by default; toggled by [data-open] */
    display: grid;
    grid-template-rows: 0fr;
    visibility: hidden;
    opacity: 0;
    transition: grid-template-rows 0.35s var(--ease), opacity 0.25s linear,
      visibility 0.35s linear;
  }

  .nav > * {
    overflow: hidden;
  }

  .nav[data-open="true"] {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
  }

  .nav__items {
    display: grid;
    align-items: stretch;
    gap: 0;
  }

  .nav a:not(.btn) {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--blush-200);
    font-size: 1rem;
  }

  .nav a:not(.btn)::after {
    display: none;
  }

  .nav .btn {
    margin-top: 1.1rem;
  }
}

@media (max-width: 620px) {
  .form__grid {
    grid-template-columns: 1fr;
  }

  .area__list {
    columns: 1;
  }

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

  /* Floating chips crowd the logo on small screens and reduced-motion
     disables their bounce, so hide them below tablet width. */
  .hero__chip {
    display: none;
  }

  .fee-table dl > div {
    padding-inline: 1.35rem;
  }
}

/* ==========================================================================
   Accessibility + print
   ========================================================================== */

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .header,
  .strip,
  .cta,
  .nav-toggle,
  .hero__chip {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .card,
  .price-card,
  .quote {
    box-shadow: none;
    border: 1px solid #ddd;
    break-inside: avoid;
  }
}
