/* =========================================
   SEW SIMPLE — style.css
   ========================================= */

/* =========================================
   SELF-HOSTED FONTS
   ========================================= */

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-latin.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'MonteCarlo';
  src: url('/fonts/montecarlo-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('/fonts/playfair-display-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('/fonts/playfair-display-latin.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('/fonts/playfair-display-italic-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --primary: #EE6055;
  /* Vibrant Coral */
  --primary-dark: #D44037;
  /* Darker coral — hover states */
  --primary-light: #FF9B85;
  /* Salmon — soft primary accents */
  --secondary: #60D394;
  /* Emerald — icons and decoration */
  --secondary-hover: #3EA872;
  /* Darker emerald — hover states */
  --accent: #FFD97D;
  /* Jasmine — italic/ornament highlights */
  --accent-light: #AAF683;
  /* Light Green — surface dot patterns */
  --bg: #FAF6EF;
  --surface: #F0E8D8;
  --text: #2C2416;
  --muted: #7A6E5F;
  --border: #E0D5C5;
  --overlay: rgba(44, 36, 22, 0.54);

  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-s: 0.75rem;
  --space-m: 1rem;
  --space-l: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  --text-2xs: 0.625rem;
  --text-xs: 0.75rem;
  --text-s: 0.875rem;
  --text-m: 1rem;
  --text-l: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  --container-width: 1100px;
  --std-col-gap: var(--space-xl);
  --std-row-gap: var(--space-l);
  --std-padding: var(--space-l);
  --section-pad: var(--space-4xl);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
  --shadow-sm: 0 1px 4px rgba(44, 36, 22, 0.08);
  --shadow-md: 0 6px 20px rgba(44, 36, 22, 0.14);
  --std-transition: all 0.2s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: var(--text-l);
  line-height: 1.75;
  color: var(--text);
  background-color: var(--bg);
}

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ---- Typography ---- */
h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  color: var(--text);
}

h1 {
  font-size: var(--text-5xl);
  font-weight: 700;
}

h2 {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--text);
}

h3 {
  font-size: var(--text-xl);
  font-weight: 700;
}

p+p {
  margin-top: var(--space-m);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--std-transition);
}

a:hover {
  color: var(--primary-dark);
}

/* ---- Global Layout ---- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: var(--space-xl);
}

/* ---- Buttons ---- */
.btn--primary {
  display: inline-block;
  padding: var(--space-s) var(--space-2xl);
  background: var(--primary);
  color: #fff;
  font-size: var(--text-s);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.btn--primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(238, 96, 85, 0.35);
}

.btn--ghost {
  display: inline-block;
  padding: var(--space-s) var(--space-2xl);
  background: transparent;
  color: var(--text);
  font-size: var(--text-s);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--std-transition);
}

.btn--ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* ---- Ornament Dividers ---- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-l) 0;
  color: var(--border);
}

.ornament svg {
  width: 220px;
  height: 18px;
}

.ornament--icon {
  gap: var(--space-m);
  padding-inline: var(--space-xl);
  max-width: var(--container-width);
  margin-inline: auto;
}

.ornament__line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.ornament__icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

/* =========================================
   NAV
   ========================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-m) var(--space-xl);
  max-width: var(--container-width);
  margin-inline: auto;
  position: relative;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: 'MonteCarlo', cursive;
  font-size: var(--text-5xl);
  font-weight: 400;
  color: var(--text);
  line-height: 1;
}

.nav__logo:hover {
  color: var(--text);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
}

.nav__links a {
  font-size: var(--text-s);
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
  transition: var(--std-transition);
}

.nav__links a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: var(--std-transition);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
}

.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='500' height='140'><g transform='translate(10,16) scale(0.117)'><path fill='%23EE6055' d='M247.59 61.22L195.83 33a8 8 0 0 0-3.83-1h-32a8 8 0 0 0-8 8a24 24 0 0 1-48 0a8 8 0 0 0-8-8H64a8 8 0 0 0-3.84 1L8.41 61.22a15.76 15.76 0 0 0-6.59 21.26l19.27 36.81A16.37 16.37 0 0 0 35.67 128H56v80a16 16 0 0 0 16 16h112a16 16 0 0 0 16-16v-80h20.34a16.37 16.37 0 0 0 14.58-8.71l19.27-36.81a15.76 15.76 0 0 0-6.6-21.26M35.67 112a.62.62 0 0 1-.41-.13L16.09 75.26L56 53.48V112ZM184 208H72V48h16.8a40 40 0 0 0 78.38 0H184Zm36.75-96.14a.55.55 0 0 1-.41.14H200V53.48l39.92 21.78Z'/></g><g transform='translate(110,16) scale(0.117)'><path fill='%23EE6055' d='m223.88 214l-22-176A16 16 0 0 0 186 24H70a16 16 0 0 0-15.88 14l-22 176A16 16 0 0 0 48 232h40.69a16 16 0 0 0 15.51-12.06l23.8-92l23.79 91.94A16 16 0 0 0 167.31 232H208a16 16 0 0 0 15.88-18M192.9 95.2A32.13 32.13 0 0 1 169 72h21ZM186 40l2 16H68l2-16ZM66 72h21a32.13 32.13 0 0 1-23.9 23.2Zm22.69 144H48l13-104.27A48.08 48.08 0 0 0 103.32 72H120v23Zm78.6-.06L136 95V72h16.68A48.08 48.08 0 0 0 195 111.73L208 216Z'/></g><g transform='translate(210,16) scale(0.117)'><path fill='%23EE6055' d='M214.7 209.7a2 2 0 0 0-.11-.25l-45.48-96.86l20.5-32.18a2 2 0 0 0 .11-.18a16 16 0 0 0 0-16.46c-.09-.16-.2-.32-.3-.47L168 32.7V8a8 8 0 0 0-16 0v24.42L146.74 39a24 24 0 0 1-37.48 0L104 32.42V8a8 8 0 0 0-16 0v24.7L66.58 63.3c-.1.15-.21.31-.3.47a16 16 0 0 0 0 16.46a2 2 0 0 0 .11.18l20.5 32.18l-45.48 96.86a2 2 0 0 0-.11.25A16 16 0 0 0 56 232h144a16 16 0 0 0 14.71-22.3ZM80 72l16.43-23.43l.33.42a40 40 0 0 0 62.48 0l.33-.42L176 72l-20.38 32h-55.23ZM56 216l45.07-96h53.84L200 216Z'/></g><g transform='translate(310,16) scale(0.117)'><path fill='%23EE6055' d='M157.73 113.13a8 8 0 0 1 2.09-11.13l67.66-46.3a8 8 0 0 1 9 13.21l-67.67 46.3a7.9 7.9 0 0 1-4.51 1.4a8 8 0 0 1-6.57-3.48m80.87 85.09a8 8 0 0 1-11.12 2.08L136 137.7l-42.51 29.08a36 36 0 1 1-9-13.19L121.83 128l-37.39-25.59a35.86 35.86 0 1 1 9-13.19l143 97.87a8 8 0 0 1 2.16 11.13M80 180a20 20 0 1 0-5.86 14.14A19.85 19.85 0 0 0 80 180m-5.86-89.87a20 20 0 1 0-28.28 0a19.85 19.85 0 0 0 28.28 0'/></g><g transform='translate(410,16) scale(0.117)'><path fill='%23EE6055' d='M189.66 66.34a8 8 0 0 1 0 11.32l-16 16a8 8 0 0 1-11.32-11.32l16-16a8 8 0 0 1 11.32 0M224 72a39.7 39.7 0 0 1-11.72 28.28l-24 24a8 8 0 0 1-4.3 2.23c-51.49 8.84-137.46 94.28-138.32 95.15a8 8 0 0 1-11.31-11.32C36 208.73 120.69 123.28 129.49 72a8 8 0 0 1 2.23-4.3l24-24A40 40 0 0 1 224 72m-16 0a24 24 0 0 0-41-17l-22.23 22.29c-4.41 21.15-18.9 46.19-35.49 69.43c23.24-16.59 48.28-31.08 69.43-35.49L201 89a23.85 23.85 0 0 0 7-17'/></g><polyline points='0,72 10,60 20,72 30,60 40,72 50,60 60,72 70,60 80,72 90,60 100,72 110,60 120,72 130,60 140,72 150,60 160,72 170,60 180,72 190,60 200,72 210,60 220,72 230,60 240,72 250,60 260,72 270,60 280,72 290,60 300,72 310,60 320,72 330,60 340,72 350,60 360,72 370,60 380,72 390,60 400,72 410,60 420,72 430,60 440,72 450,60 460,72 470,60 480,72 490,60 500,72' stroke='%23EE6055' stroke-width='1.2' fill='none'/><g transform='translate(60,86) scale(0.117)'><path fill='%23EE6055' d='M157.73 113.13a8 8 0 0 1 2.09-11.13l67.66-46.3a8 8 0 0 1 9 13.21l-67.67 46.3a7.9 7.9 0 0 1-4.51 1.4a8 8 0 0 1-6.57-3.48m80.87 85.09a8 8 0 0 1-11.12 2.08L136 137.7l-42.51 29.08a36 36 0 1 1-9-13.19L121.83 128l-37.39-25.59a35.86 35.86 0 1 1 9-13.19l143 97.87a8 8 0 0 1 2.16 11.13M80 180a20 20 0 1 0-5.86 14.14A19.85 19.85 0 0 0 80 180m-5.86-89.87a20 20 0 1 0-28.28 0a19.85 19.85 0 0 0 28.28 0'/></g><g transform='translate(160,86) scale(0.117)'><path fill='%23EE6055' d='M189.66 66.34a8 8 0 0 1 0 11.32l-16 16a8 8 0 0 1-11.32-11.32l16-16a8 8 0 0 1 11.32 0M224 72a39.7 39.7 0 0 1-11.72 28.28l-24 24a8 8 0 0 1-4.3 2.23c-51.49 8.84-137.46 94.28-138.32 95.15a8 8 0 0 1-11.31-11.32C36 208.73 120.69 123.28 129.49 72a8 8 0 0 1 2.23-4.3l24-24A40 40 0 0 1 224 72m-16 0a24 24 0 0 0-41-17l-22.23 22.29c-4.41 21.15-18.9 46.19-35.49 69.43c23.24-16.59 48.28-31.08 69.43-35.49L201 89a23.85 23.85 0 0 0 7-17'/></g><g transform='translate(260,86) scale(0.117)'><path fill='%23EE6055' d='M247.59 61.22L195.83 33a8 8 0 0 0-3.83-1h-32a8 8 0 0 0-8 8a24 24 0 0 1-48 0a8 8 0 0 0-8-8H64a8 8 0 0 0-3.84 1L8.41 61.22a15.76 15.76 0 0 0-6.59 21.26l19.27 36.81A16.37 16.37 0 0 0 35.67 128H56v80a16 16 0 0 0 16 16h112a16 16 0 0 0 16-16v-80h20.34a16.37 16.37 0 0 0 14.58-8.71l19.27-36.81a15.76 15.76 0 0 0-6.6-21.26M35.67 112a.62.62 0 0 1-.41-.13L16.09 75.26L56 53.48V112ZM184 208H72V48h16.8a40 40 0 0 0 78.38 0H184Zm36.75-96.14a.55.55 0 0 1-.41.14H200V53.48l39.92 21.78Z'/></g><g transform='translate(360,86) scale(0.117)'><path fill='%23EE6055' d='m223.88 214l-22-176A16 16 0 0 0 186 24H70a16 16 0 0 0-15.88 14l-22 176A16 16 0 0 0 48 232h40.69a16 16 0 0 0 15.51-12.06l23.8-92l23.79 91.94A16 16 0 0 0 167.31 232H208a16 16 0 0 0 15.88-18M192.9 95.2A32.13 32.13 0 0 1 169 72h21ZM186 40l2 16H68l2-16ZM66 72h21a32.13 32.13 0 0 1-23.9 23.2Zm22.69 144H48l13-104.27A48.08 48.08 0 0 0 103.32 72H120v23Zm78.6-.06L136 95V72h16.68A48.08 48.08 0 0 0 195 111.73L208 216Z'/></g><g transform='translate(460,86) scale(0.117)'><path fill='%23EE6055' d='M214.7 209.7a2 2 0 0 0-.11-.25l-45.48-96.86l20.5-32.18a2 2 0 0 0 .11-.18a16 16 0 0 0 0-16.46c-.09-.16-.2-.32-.3-.47L168 32.7V8a8 8 0 0 0-16 0v24.42L146.74 39a24 24 0 0 1-37.48 0L104 32.42V8a8 8 0 0 0-16 0v24.7L66.58 63.3c-.1.15-.21.31-.3.47a16 16 0 0 0 0 16.46a2 2 0 0 0 .11.18l20.5 32.18l-45.48 96.86a2 2 0 0 0-.11.25A16 16 0 0 0 56 232h144a16 16 0 0 0 14.71-22.3ZM80 72l16.43-23.43l.33.42a40 40 0 0 0 62.48 0l.33-.42L176 72l-20.38 32h-55.23ZM56 216l45.07-96h53.84L200 216Z'/></g><line x1='0' y1='136' x2='500' y2='136' stroke='%23EE6055' stroke-width='1.2' stroke-dasharray='6 4'/></svg>");
  background-size: 500px 140px;
  background-repeat: repeat;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: var(--space-5xl) var(--space-xl);
}

.hero__content-inner {
  max-width: 620px;
  margin-inline: auto;
}

.hero__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-s);
  margin-bottom: var(--space-xl);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease 0.15s, transform 0.6s ease 0.15s;
}

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

.hero__ornament-rule {
  height: 1px;
  width: 36px;
  background: var(--border);
  flex-shrink: 0;
}

.hero__ornament-text {
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: var(--space-l);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
}

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

.hero__title em {
  font-style: italic;
  color: var(--secondary-hover);
}

.hero__lead {
  color: var(--muted);
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.65s ease 0.48s, transform 0.65s ease 0.48s;
}

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

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-l);
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease 0.62s, transform 0.6s ease 0.62s;
}

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

/* -- Sewing machine illustration -- */
.hero__machine {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.hero__machine-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* =========================================
   SERVICES
   ========================================= */
.services {
  background-color: var(--surface);
  background-image: radial-gradient(circle, var(--accent-light) 1px, transparent 1px);
  background-size: 26px 26px;
  padding: var(--section-pad) var(--space-xl);
}

.services__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.services__eyebrow,
.about__eyebrow,
.faq-preview__eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary-hover);
  margin-bottom: var(--space-s);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--std-col-gap);
  max-width: var(--container-width);
  margin-inline: auto;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--primary-light);
}

.service-card__icon {
  width: 90px;
  height: 90px;
  margin: 0 auto var(--space-l);
}

.service-card__icon-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.service-card__title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-s);
}

.service-card__desc {
  font-size: var(--text-l);
  color: var(--muted);
  line-height: 1.5;
}

/* =========================================
   ABOUT
   ========================================= */
.about {
  padding: var(--section-pad) var(--space-xl);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  max-width: var(--container-width);
  margin-inline: auto;
}

.about__image-wrap {
  position: relative;
}

.about__illustration {
  width: 100%;
  height: auto;
  display: block;
}

.about__spool {
  position: absolute;
  bottom: var(--space-l);
  right: var(--space-l);
  width: 50px;
  height: 50px;
  color: rgba(238, 96, 85, 0.18);
  z-index: 2;
  transition: color 0.5s ease;
}

.about__image-wrap:hover .about__spool {
  color: rgba(238, 96, 85, 0.55);
}

.about__title {
  margin-bottom: var(--space-l);
}

.about__body {
  color: var(--muted);
}

.about__trust {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}

.about__trust-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-s);
  font-size: var(--text-s);
  color: var(--muted);
}

.about__check {
  width: 16px;
  height: 16px;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 3px;
}

/* =========================================
   PROCESS
   ========================================= */
.process {
  background: var(--surface);
  padding: var(--section-pad) var(--space-xl);
}

.process__inner {
  max-width: var(--container-width);
  margin-inline: auto;
}

.process__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--std-col-gap);
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: var(--border);
}

.process__step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process__num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1.5px solid var(--secondary);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-l);
  font-family: 'Playfair Display', serif;
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--secondary);
}

.process__step-title {
  font-size: var(--text-l);
  margin-bottom: var(--space-xs);
}

.process__step-desc {
  font-size: var(--text-s);
  color: var(--muted);
}

/* =========================================
   FAQ PREVIEW
   ========================================= */
.faq-preview {
  padding: var(--section-pad) var(--space-xl);
}

.faq-preview__inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.faq-preview__header {
  margin-bottom: var(--space-3xl);
}

.faq-list {
  text-align: left;
  margin-bottom: var(--space-2xl);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-m);
  padding: var(--space-l) 0;
  font-family: 'Playfair Display', serif;
  font-size: var(--text-l);
  font-weight: 700;
  color: var(--text);
  text-align: left;
  transition: color 0.2s ease;
}

.faq-item__question:hover {
  color: var(--primary);
}

.faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--secondary);
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  font-size: var(--text-m);
  color: var(--muted);
  padding-bottom: var(--space-l);
  display: none;
}

.faq-item.is-open .faq-item__answer {
  display: block;
}

.faq-preview__more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-s);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  transition: gap 0.2s ease, color 0.2s ease;
}

.faq-preview__more:hover {
  gap: var(--space-s);
  color: var(--secondary-hover);
}

/* =========================================
   CTA
   ========================================= */
.cta {
  background: var(--text);
  padding: var(--section-pad) var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before,
.cta::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.cta::before {
  width: 500px;
  height: 500px;
  top: -260px;
  right: -120px;
}

.cta::after {
  width: 340px;
  height: 340px;
  bottom: -180px;
  left: -80px;
}

.cta__inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin-inline: auto;
}

.cta__eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: var(--space-m);
}

.cta__title {
  color: var(--bg);
  margin-bottom: var(--space-m);
}

.cta__desc {
  color: rgba(250, 246, 239, 0.65);
  margin-bottom: var(--space-2xl);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--text);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--space-3xl) var(--space-xl) var(--space-xl);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-xl);
  align-items: start;
  max-width: var(--container-width);
  margin-inline: auto;
  margin-bottom: var(--space-2xl);
}

.footer__name {
  display: block;
  font-family: 'MonteCarlo', cursive;
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--bg);
  margin-bottom: var(--space-xs);
  line-height: 1.2;
}

.footer__tagline {
  font-size: var(--text-s);
  color: var(--muted);
}

.footer__links {
  display: flex;
  gap: var(--space-l);
  list-style: none;
}

.footer__links a {
  font-size: var(--text-s);
  color: var(--muted);
}

.footer__links a:hover {
  color: var(--bg);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-top: var(--space-l);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__copy {
  font-size: var(--text-xs);
  color: var(--muted);
}

.footer__buttons {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: var(--space-l);
  padding-bottom: var(--space-2xl);
  opacity: 0.32;
  color: var(--primary-light);
}

.footer__buttons svg {
  flex-shrink: 0;
}

.footer__egg {
  width: 22px;
  height: 22px;
  color: rgba(238, 96, 85, 0.18);
  transition: color 0.5s ease;
  cursor: default;
}

.footer__egg:hover {
  color: var(--primary);
}

/* =========================================
   QUOTE MODAL
   ========================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 36, 22, 0.72);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-l);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.is-open .modal {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: var(--space-l);
  right: var(--space-l);
  background: none;
  border: none;
  font-size: var(--text-2xl);
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  padding: var(--space-xs);
  transition: color 0.2s ease;
}

.modal__close:hover {
  color: var(--text);
}

.modal__ornament {
  display: flex;
  align-items: center;
  gap: var(--space-s);
  margin-bottom: var(--space-l);
  color: var(--accent);
}

.modal__title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-xs);
}

.modal__intro {
  font-size: var(--text-s);
  color: var(--muted);
  margin-bottom: var(--space-2xl);
}

.form-group {
  margin-bottom: var(--space-l);
}

.form-group label {
  display: block;
  font-size: var(--text-s);
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-xs);
}

.form-label-note {
  font-weight: 400;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-s) var(--space-m);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-m);
}

.modal__submit {
  width: 100%;
  padding: var(--space-m);
  margin-top: var(--space-s);
}

/* -- Form: checkboxes & radios -- */
.form-check-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
  margin-top: var(--space-xs);
}

.form-check {
  display: flex;
  align-items: center;
  gap: var(--space-s);
  font-size: var(--text-s);
  color: var(--text);
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}

.form-radio-group {
  display: flex;
  align-items: center;
  gap: var(--space-l);
  flex-wrap: wrap;
  margin-top: var(--space-xs);
}

.form-radio-group--stack {
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-s);
}

.form-radio {
  display: flex;
  align-items: flex-start;
  gap: var(--space-s);
  font-size: var(--text-s);
  color: var(--text);
  cursor: pointer;
  line-height: 1.5;
}

.form-radio input[type="radio"] {
  width: 15px;
  height: 15px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 3px;
}

.form-radio small {
  display: block;
  font-size: var(--text-xs);
  color: var(--muted);
  font-weight: 400;
}

/* -- Form: conditional panels -- */
.form-conditional {
  display: none;
  margin-top: var(--space-s);
}

/* -- Form: info/warning notes -- */
.form-note {
  font-size: var(--text-xs);
  color: var(--muted);
  font-style: italic;
  line-height: 1.6;
  padding: var(--space-s) var(--space-m);
  background: var(--surface);
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--border);
}

.form-note--warn {
  border-left-color: var(--primary);
  color: var(--text);
}

#rush-warning {
  display: none;
  margin-top: var(--space-s);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 991px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__content {
    padding: var(--space-3xl) var(--space-xl);
  }

  .hero__content-inner {
    max-width: 100%;
  }

  .hero__image-wrap {
    height: 400px;
    order: -1;
  }

  .hero__image-fade {
    background: linear-gradient(to bottom, transparent 60%, var(--bg) 100%);
  }

  .services__grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }

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

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

  .process__steps::before {
    display: none;
  }

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

@media (max-width: 767px) {
  h1 {
    font-size: var(--text-4xl);
  }

  h2 {
    font-size: var(--text-3xl);
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-l) var(--space-xl);
    gap: var(--space-l);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__toggle {
    display: flex;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__links {
    flex-wrap: wrap;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-m);
    text-align: center;
  }
}

@media (max-width: 478px) {
  h1 {
    font-size: var(--text-3xl);
  }

  .hero__content {
    padding: var(--space-2xl) var(--space-l);
  }

  .hero__cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .modal {
    padding: var(--space-xl) var(--space-l);
  }

  .container {
    padding-inline: var(--space-l);
  }
}

/* =========================================
   STAGGER DELAYS (replaces inline transition-delay attrs)
   ========================================= */

.services__grid .service-card:nth-child(1) { transition-delay: .08s; }
.services__grid .service-card:nth-child(2) { transition-delay: .18s; }
.services__grid .service-card:nth-child(3) { transition-delay: .28s; }

.about__body  { transition-delay: .1s; }
.about__trust { transition-delay: .2s; }

.faq-list .faq-item:nth-child(2) { transition-delay: .08s; }
.faq-list .faq-item:nth-child(3) { transition-delay: .16s; }
.faq-list .faq-item:nth-child(4) { transition-delay: .24s; }
.faq-list .faq-item:nth-child(5) { transition-delay: .32s; }

.process__steps .process__step:nth-child(1) { transition-delay: .08s; }
.process__steps .process__step:nth-child(2) { transition-delay: .2s; }
.process__steps .process__step:nth-child(3) { transition-delay: .32s; }

/* =========================================
   COMPONENT MODIFIERS
   ========================================= */

.service-card--hemming .service-card__icon-img {
  transform: rotate(-77deg) scale(1.6);
}

.btn--primary:focus-visible,
.btn--ghost:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.modal__close:focus-visible,
.faq-item__question:focus-visible,
.nav__toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

#rush-warning.is-visible {
  display: block;
}

/* =========================================
   PAGE HERO (interior pages)
   ========================================= */

.page-hero {
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero__eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-m);
}

.page-hero__title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.15;
}

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

.faq-page {
  padding: var(--section-pad) var(--space-xl);
}

.faq-page__inner {
  max-width: 760px;
  margin-inline: auto;
}

.faq-page__group {
  margin-bottom: var(--space-3xl);
}

.faq-page__group-title {
  font-size: var(--text-s);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: var(--space-m);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-l);
}

/* =========================================
   UTILITIES
   ========================================= */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* =========================================
   REDUCED MOTION
   ========================================= */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

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