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

/* ── VARIABLES ─────────────────────────────────────────────────────────────── */
:root {
  --cream:       #fdf8f4;
  --warm-white:  #fff9f5;
  --blush:       #fce4ec;
  --blush-light: #fef0f3;
  --taupe:       #8c7b6b;
  --taupe-light: #b5a89c;
  --dark:        #3d2e22;
  --dark-soft:   #5a4a3e;
  --pink:        #ff6a97;
  --pink-dim:    #e0557d;
  --pink-light:  rgba(255, 106, 151, 0.08);
  --pink-glow:   rgba(255, 106, 151, 0.15);
  --rose:        #b77e77;
  --border:      #e8ddd4;
  --border-light:#f0e8e0;
  --shadow:      rgba(61, 46, 34, 0.06);
  --shadow-md:   rgba(61, 46, 34, 0.1);
  --shadow-lg:   rgba(61, 46, 34, 0.16);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', 'Source Sans Pro', sans-serif;
  --radius:      8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
}

/* ── DARK MODE (always on) ─────────────────────────────────────────────────── */
:root {
  --cream:       #1a1210;
  --warm-white:  #211916;
  --blush:       #2a1a1e;
  --blush-light: #231518;
  --taupe:       #a89890;
  --taupe-light: #8a7c74;
  --dark:        #f0e8e2;
  --dark-soft:   #d4c8be;
  --pink:        #ff7da6;
  --pink-dim:    #ff6a97;
  --pink-light:  rgba(255, 125, 166, 0.12);
  --pink-glow:   rgba(255, 125, 166, 0.2);
  --rose:        #c89690;
  --border:      #342824;
  --border-light:#2a2220;
  --shadow:      rgba(0, 0, 0, 0.2);
  --shadow-md:   rgba(0, 0, 0, 0.3);
  --shadow-lg:   rgba(0, 0, 0, 0.4);
}

/* ── BASE ──────────────────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--cream);
  color: var(--dark-soft);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.75;
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--dark);
  font-weight: 600;
  line-height: 1.25;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.1rem; font-weight: 600; }

a { color: var(--pink); text-decoration: none; transition: color 0.3s var(--ease-out); }
a:hover { color: var(--pink-dim); }

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

.section-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 6rem 6%;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.75rem;
  display: inline-block;
}

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

/* ── Decorative divider ──────────────────────────────────────────────────── */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--rose));
  border-radius: 3px;
  margin: 1.5rem auto;
}

/* ── NAV ───────────────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 6%;
  background: rgba(253, 248, 244, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: padding 0.3s var(--ease-out), background 0.3s;
}

nav { background: rgba(26, 18, 16, 0.92); }

.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-logo img { height: 55px; width: auto; transition: height 0.3s var(--ease-out); }

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }

.nav-links a {
  color: var(--taupe); text-decoration: none;
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--pink);
  border-radius: 2px;
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--pink); }
.nav-links a.active { color: var(--pink); }

.nav-cta {
  background: var(--pink) !important; border: none;
  color: #fff !important; padding: 0.55rem 1.4rem;
  border-radius: 50px; white-space: nowrap;
  font-weight: 600;
  box-shadow: 0 4px 16px var(--pink-glow);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s !important;
}
.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--pink-dim) !important; color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--pink-glow);
}

/* ── Nav dropdown ──────────────────────────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-arrow { font-size: 0.55em; margin-left: 0.25em; opacity: 0.5; transition: transform 0.3s var(--ease-out), opacity 0.3s; }
.nav-dropdown:hover .nav-arrow { transform: rotate(180deg); opacity: 1; }
.nav-dropdown__menu {
  display: none; position: absolute; top: calc(100% + 0.5rem); left: 50%;
  transform: translateX(-50%); opacity: 0;
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); min-width: 200px; padding: 0.6rem 0;
  list-style: none; z-index: 10001;
  box-shadow: 0 20px 50px var(--shadow-lg);
  animation: dropIn 0.25s var(--ease-out) forwards;
}
.nav-dropdown__menu::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--rose));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.nav-dropdown::after {
  content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 0.75rem;
  display: none;
}
.nav-dropdown:hover::after { display: block; }
.nav-dropdown:hover > .nav-dropdown__menu { display: block; opacity: 1; }
@keyframes dropIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.nav-dropdown__menu li a {
  display: block; padding: 0.65rem 1.25rem;
  font-size: 0.85rem; font-weight: 400;
  color: var(--taupe); white-space: nowrap;
  transition: color 0.3s, background 0.3s, padding-left 0.3s;
}
.nav-dropdown__menu li a::after { display: none; }
.nav-dropdown__menu li a:hover {
  color: var(--pink); background: var(--pink-light);
  padding-left: 1.5rem;
}

/* ── HAMBURGER ─────────────────────────────────────────────────────────────── */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: 1px solid var(--border);
  cursor: pointer; padding: 0.5rem 0.65rem; border-radius: var(--radius); z-index: 101;
}

.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); border-radius: 1px;
  transition: transform 0.3s var(--ease-out), opacity 0.25s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--pink); color: #fff;
  padding: 0.85rem 2.2rem; border: 1px solid transparent;
  border-radius: 50px; font-size: 0.95rem;
  font-weight: 600; font-family: var(--font-body);
  letter-spacing: 0.02em; line-height: 1.2;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 4px 20px var(--pink-glow);
  transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.btn-primary:hover {
  background: var(--pink-dim); color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 106, 151, 0.25);
}

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: #fff;
  padding: 0.85rem 2.2rem; border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px; font-size: 0.95rem;
  font-weight: 600; font-family: var(--font-body);
  letter-spacing: 0.02em; line-height: 1.2;
  cursor: pointer; text-decoration: none;
  transition: background 0.3s var(--ease-out), color 0.3s, border-color 0.3s, transform 0.3s var(--ease-out);
}
.btn-secondary:hover {
  background: var(--pink); color: #fff;
  border-color: var(--pink);
  transform: translateY(-3px);
}

/* ── HERO (full-bleed image) ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 6% 5rem;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(253, 248, 244, 0.88) 0%,
    rgba(253, 248, 244, 0.75) 40%,
    rgba(253, 248, 244, 0.92) 100%
  );
  z-index: 1;
}

.hero::before {
  background: linear-gradient(
    180deg,
    rgba(26, 18, 16, 0.9) 0%,
    rgba(26, 18, 16, 0.78) 40%,
    rgba(26, 18, 16, 0.94) 100%
  );
}

.hero > * { position: relative; z-index: 2; }

.hero h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  max-width: 800px;
}

.hero p {
  max-width: 580px;
  margin: 0 auto 1rem;
  color: var(--dark-soft);
  font-size: 1.15rem;
  line-height: 1.8;
}

.hero .btn-primary { margin-top: 1rem; }

.hero-image {
  max-width: 480px;
  margin: 3rem auto 0;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 80px var(--shadow-lg), 0 0 0 1px var(--border-light);
}

/* ── Page hero (inner pages) ─────────────────────────────────────────────── */
.page-hero {
  padding: 10rem 6% 4.5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--blush-light) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  border-radius: 3px;
}

.page-hero .section-label { margin-bottom: 0.5rem; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { max-width: 650px; margin: 0 auto 2rem; color: var(--taupe); font-size: 1.15rem; }

/* ── CARDS ────────────────────────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px var(--shadow-lg);
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.card:hover img { transform: scale(1.05); }

.card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card {
  display: flex;
  flex-direction: column;
}

.card-features {
  list-style: none;
  margin: 0.5rem 0 1.25rem;
  padding: 0;
}

.card-features li {
  padding: 0.3rem 0;
  font-size: 0.82rem;
  color: var(--dark-soft);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border-light);
}

.card-features li::before {
  content: '\2713';
  color: var(--pink);
  font-weight: 700;
  font-size: 0.7rem;
  flex-shrink: 0;
}

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

.card-body p {
  color: var(--taupe);
  font-size: 0.95rem;
}

.price-tag {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 0.5rem;
}

/* Card image overflow hidden wrapper */
.card { overflow: hidden; }

/* ── PRICING CARDS ───────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.pricing-card {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--pink);
  box-shadow: 0 0 0 1px var(--pink-light), 0 12px 40px var(--shadow-md);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: #1a1210;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1.2rem;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-card.featured:hover {
  transform: translateY(-8px);
}

.pricing-card h3 { margin-bottom: 0.15rem; font-size: 1.05rem; }

.pricing-card .price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--pink);
  margin: 0.75rem 0;
  line-height: 1;
}

.pricing-card .subtitle {
  font-size: 0.78rem;
  color: var(--taupe);
  margin-bottom: 0.75rem;
  font-style: italic;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 1.25rem;
}

.pricing-card ul li {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.82rem;
  color: var(--dark-soft);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pricing-card ul li::before {
  content: '\2713';
  color: var(--pink);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--pink-light);
  border-radius: 50%;
}

/* ── FEATURE LIST ────────────────────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.feature-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-xl);
  transition: background 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
  background: var(--warm-white);
  box-shadow: 0 12px 40px var(--shadow);
}

.feature-item h4 {
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.feature-item h4::after {
  content: '';
  display: block;
  width: 30px; height: 2px;
  background: var(--pink);
  border-radius: 2px;
  margin: 0.5rem auto 0;
}

.feature-item p { color: var(--taupe); font-size: 0.9rem; }

/* ── TESTIMONIALS ────────────────────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: var(--dark-soft);
  position: relative;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px var(--shadow-md);
}

.testimonial::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--pink);
  opacity: 0.2;
  position: absolute;
  top: 0.5rem; left: 1.5rem;
  line-height: 1;
}

.testimonial p:first-child {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.testimonial .author {
  font-style: normal;
  font-weight: 600;
  color: var(--dark);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonial .author::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--pink);
  border-radius: 2px;
}

/* ── GALLERY ─────────────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 0.75rem;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.5s var(--ease-out), filter 0.5s;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
}

/* ── SPLIT SECTION (image + text side-by-side) ───────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split img {
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px var(--shadow-md);
}

.split-text h2 { margin-bottom: 1.25rem; }
.split-text p { margin-bottom: 1.25rem; color: var(--taupe); font-size: 1.05rem; }

/* ── ALTERNATING BACKGROUND ──────────────────────────────────────────────── */
.bg-blush { background: var(--blush-light); }
.bg-white { background: var(--warm-white); }

/* ── CONTACT FORM ────────────────────────────────────────────────────────── */
.contact-section {
  background: var(--blush-light);
}

.contact-section .section-inner {
  max-width: 860px;
  text-align: center;
}

.contact-section h3 { margin-bottom: 0.5rem; }
.contact-section > .section-inner > p { color: var(--taupe); margin-bottom: 2rem; }

.contact-form {
  text-align: left;
  background: var(--warm-white);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: 0 12px 40px var(--shadow);
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.form-group .required { color: var(--pink); }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #f0e8e2;
  background: rgba(255, 255, 255, 0.06);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-light);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.08);
}

.contact-form .btn-primary {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem;
}

.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
}

.form-status.success { color: #38a169; }
.form-status.error { color: #e53e3e; }

/* ── PRICING TABLE (simple) ──────────────────────────────────────────────── */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.price-table th,
.price-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.price-table th {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--dark);
  font-size: 0.9rem;
}

.price-table td {
  color: var(--taupe);
}

.price-table .price-value {
  font-weight: 600;
  color: var(--pink);
}

/* ── BADGE ────────────────────────────────────────────────────────────────── */
.trust-badge {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding: 1.5rem 2.5rem;
  background: #fff;
  border: none;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.trust-badge img { height: 50px; width: auto; }
.trust-badge p { font-size: 0.9rem; color: #5c4f46; font-weight: 500; }

/* ── CTA BANNER ──────────────────────────────────────────────────────────── */
.cta-banner {
  text-align: center;
  padding: 5rem 6%;
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-light) 50%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--pink-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner h2 { margin-bottom: 0.75rem; position: relative; }
.cta-banner p { max-width: 600px; margin: 0 auto 2rem; color: var(--taupe); position: relative; }
.cta-banner .btn-primary { position: relative; }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
footer {
  background: #110d0b;
  color: var(--taupe-light);
  margin-top: auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1140px;
  margin: 0 auto;
  padding: 4rem 6% 2.5rem;
}

.footer-logo { height: 50px; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.9rem; color: var(--taupe-light); font-style: italic; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 1.25rem;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--pink);
  border-radius: 2px;
  margin-top: 0.4rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: var(--taupe-light);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s, padding-left 0.3s;
}
.footer-links a:hover { color: var(--pink); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  max-width: 1140px;
  margin: 0 auto;
  padding: 1.75rem 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
}

.footer-legal { display: flex; gap: 1.5rem; list-style: none; }
.footer-legal a { color: var(--taupe-light); font-size: 0.78rem; }
.footer-legal a:hover { color: var(--pink); }
.footer-credit a { color: var(--taupe-light); }
.footer-credit a:hover { color: var(--pink); }

/* ── FADE-IN & STAGGERED ANIMATIONS ──────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children in grids */
.card-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.card-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }
.card-grid .fade-in:nth-child(4) { transition-delay: 0.3s; }
.card-grid .fade-in:nth-child(5) { transition-delay: 0.35s; }
.card-grid .fade-in:nth-child(6) { transition-delay: 0.4s; }

.pricing-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.pricing-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }
.pricing-grid .fade-in:nth-child(4) { transition-delay: 0.3s; }

.feature-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.feature-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }
.feature-grid .fade-in:nth-child(4) { transition-delay: 0.3s; }

.testimonial-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.testimonial-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .nav-toggle { display: flex; }
  .nav-links { display: none; }
  .nav-arrow { display: none; }
  .nav-dropdown__menu { display: none; }
}

@media (max-width: 1024px) {
  .card-grid[style*="repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .pricing-grid[style*="repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  /* Layout */
  .section-inner { padding: 3.5rem 5%; }
  .split { grid-template-columns: 1fr; gap: 2rem; }

  /* Hero */
  .hero { min-height: 85vh; padding: 7rem 5% 4rem; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero p { font-size: 1rem; }
  .page-hero { padding: 8rem 5% 3.5rem; }

  /* Grids — !important to override inline styles */
  .card-grid,
  .card-grid[style] {
    grid-template-columns: 1fr !important;
  }
  .pricing-grid,
  .pricing-grid[style] {
    grid-template-columns: 1fr !important;
  }
  .feature-grid { grid-template-columns: 1fr 1fr; }

  /* Cards */
  .card img { aspect-ratio: 16 / 9; }
  .pricing-card { padding: 1.25rem 1rem; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-6px); }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 180px);
  }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }

  /* Typography */
  h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* CTA */
  .cta-banner { padding: 3.5rem 5%; }

  /* Buttons */
  .btn-primary, .btn-secondary {
    padding: 0.75rem 1.8rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .section-inner { padding: 2.5rem 4%; }
  .hero { min-height: 80vh; padding: 6rem 4% 3rem; }
  .page-hero { padding: 7rem 4% 3rem; }

  .card-grid[style] { grid-template-columns: 1fr !important; }
  .pricing-grid[style] { grid-template-columns: 1fr !important; }
  .feature-grid { grid-template-columns: 1fr; }

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

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .cta-banner { padding: 2.5rem 4%; }
  .cta-banner h2 { font-size: 1.4rem; }
  .image-break { height: 250px !important; margin: 1.5rem 0 !important; }
}
