/* ============================================
   SWOON SPACES — Brand Redesign
   Color Palette Preserved: #205D89, #F2AADE, #ECE70F
   ============================================ */

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

/* Brand selection color */
::selection {
  background: var(--pink-soft);
  color: var(--navy);
}

::-moz-selection {
  background: var(--pink-soft);
  color: var(--navy);
}

:root {
  /* Brand Colors */
  --blue: #205D89;
  --blue-dark: #173f5e;
  --blue-light: #2a7ab5;
  --pink: #F2AADE;
  --pink-soft: #f8d4ee;
  --pink-muted: #e891cc;
  --yellow: #ECE70F;
  --yellow-soft: #f5f29a;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #faf9f7;
  --cream: #f5f3ef;
  --gray-100: #f0eeeb;
  --gray-200: #e0ddd8;
  --gray-300: #c5c0b8;
  --gray-400: #9b9588;
  --gray-500: #6e675a;
  --gray-600: #4a453c;
  --navy: #0f2d44;
  --text: #1a1a1a;
  --text-light: #555;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-padding: 120px;
  --container-width: 1280px;
  --container-narrow: 900px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  animation: pageLoad 0.6s var(--ease-out) both;
}

@keyframes pageLoad {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--off-white);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--blue);
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

h4 {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--blue);
}

/* moved .contact-process-steps after .process__steps for cascade priority */

p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 680px;
}

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

.text-center p {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

section {
  padding: var(--section-padding) 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
}

.btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: none;
}

.btn--primary:hover::after {
  left: 120%;
  transition: left 0.6s var(--ease);
}

.btn--primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(32, 93, 137, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}

.btn--outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--pink {
  background: var(--pink);
  color: var(--navy);
}

.btn--pink:hover {
  background: var(--pink-muted);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(242, 170, 222, 0.35);
}

.btn--white {
  background: var(--white);
  color: var(--blue);
}

.btn--white::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(32,93,137,0.06), transparent);
  transition: none;
}

.btn--white:hover::after {
  left: 120%;
  transition: left 0.6s var(--ease);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

.nav__logo {
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
}

.nav__logo:hover {
  opacity: 0.8;
}

.nav__logo img {
  height: 72px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__mobile-logo {
  display: none;
}

.nav__link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  transition: color 0.3s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--pink);
  transition: width 0.3s var(--ease);
}

.nav__link:hover,
.nav__link.active {
  color: var(--navy);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  padding: 12px 28px;
  font-size: 0.78rem;
}

/* Mobile Nav Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--navy);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.nav__toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--cream) 40%, var(--pink-soft) 100%);
  overflow: hidden;
  padding-top: 80px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--pink-soft);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--pink);
  border-radius: 50%;
}

.hero__title {
  margin-bottom: 28px;
}

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

.hero__subtitle {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 44px;
  color: var(--gray-500);
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
}

.hero__image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--gray-200);
}

.hero__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 47% center;
}

.hero__image-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 140px;
  height: 140px;
  background: var(--pink);
  border-radius: var(--radius-xl);
  z-index: -1;
}

.hero__image-dots {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(var(--blue) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.15;
}

.hero__stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--navy);
  font-weight: 500;
}

.hero__stat-label {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- Marquee / Trusted By ---------- */
.marquee {
  padding: 50px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
  background: var(--white);
}

.marquee__label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 30px;
}

.marquee__track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee__items {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 0 40px;
}

.marquee__item {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gray-300);
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

.marquee__item:hover {
  color: var(--navy);
}

.marquee__divider {
  width: 4px;
  height: 4px;
  background: var(--pink);
  border-radius: 50%;
  flex-shrink: 0;
}

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

/* ---------- Press Feature Section ---------- */
.press-feature {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.press-feature__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.press-feature__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.press-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% center;
  transition: transform 0.6s var(--ease);
}

.press-feature__image:hover img {
  transform: scale(1.05);
}

.press-feature__image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 28px 28px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
}

.press-feature__image:hover .press-feature__image-overlay {
  transform: translateY(0);
}

.press-feature__image-overlay h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

.press-feature__image-overlay p {
  color: var(--pink);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.press-feature__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.press-feature__badge img {
  height: 24px;
  width: auto;
}

.press-feature__content h4 {
  color: var(--pink);
  margin-bottom: 16px;
}

.press-feature__content h2 {
  color: var(--white);
  margin-bottom: 24px;
}

.press-feature__content h2 em {
  color: var(--pink);
  font-style: italic;
}

.press-feature__content p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
}

.press-feature__logos {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.press-feature__logos img {
  height: 52px;
  width: auto;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  object-fit: contain;
  transition: transform 0.3s;
}

.press-feature__logos img:hover {
  transform: translateY(-2px);
}

.press-feature__magazine {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}

.press-feature__magazine img {
  width: 140px;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
  cursor: pointer;
}

.press-feature__magazine img:hover {
  transform: scale(1.05);
}

.press-feature__article-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--pink);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 16px;
  transition: gap 0.3s var(--ease), color 0.3s;
}

.press-feature__article-link:hover {
  color: var(--white);
  gap: 14px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  cursor: pointer;
}

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

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s var(--ease);
}

.lightbox.active .lightbox__img {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox__close:hover {
  opacity: 1;
}

/* ---------- About Preview / Intro Section ---------- */
.intro {
  background: var(--white);
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.intro__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--gray-100);
}

.intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 110% center;
  transform: scale(1.1);
}

.intro__image-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.intro__image-tag-icon {
  width: 40px;
  height: 40px;
  background: var(--pink-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.intro__image-tag-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.intro__image-tag-text small {
  display: block;
  font-weight: 400;
  color: var(--gray-400);
  font-size: 0.75rem;
}

.intro__content h4 {
  margin-bottom: 16px;
}

.intro__content h2 {
  margin-bottom: 24px;
}

.intro__content p {
  margin-bottom: 20px;
}

.intro__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
  margin-bottom: 40px;
}

.intro__value {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.intro__value-icon {
  width: 28px;
  height: 28px;
  background: var(--pink-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.intro__value-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--blue);
}

.intro__value span {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
}

/* ---------- Services Section ---------- */
.services {
  background: var(--off-white);
}

.services__header {
  text-align: center;
  margin-bottom: 72px;
}

.services__header h4 {
  margin-bottom: 16px;
}

.services__header h2 {
  margin-bottom: 20px;
}

.services__header p {
  margin: 0 auto;
}

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

/* Center badge */
.services__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.services__badge img {
  width: 100%;
  max-width: 200px;
  height: auto;
}


.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--pink));
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: var(--gray-200);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--pink-soft), var(--pink));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: transform 0.5s var(--ease), border-radius 0.5s var(--ease);
}

.service-card:hover .service-card__icon {
  transform: scale(1.1) rotate(-4deg);
  border-radius: var(--radius-lg);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.5;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.3rem;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  transition: gap 0.3s var(--ease);
}

.service-card:hover .service-card__link {
  gap: 14px;
}

/* Compact service cards for hub layout */
.service-card--compact {
  padding: 28px 24px;
}

.service-card--compact .service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
}

.service-card--compact .service-card__icon svg {
  width: 22px;
  height: 22px;
}

.service-card--compact h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.service-card--compact p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ---------- Process Section ---------- */
.process {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(242, 170, 222, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.process__header {
  text-align: center;
  margin-bottom: 80px;
}

.process__header h4 {
  color: var(--pink);
  margin-bottom: 16px;
}

.process__header h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.process__header p {
  color: rgba(255, 255, 255, 0.55);
  margin: 0 auto;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.contact-process-steps {
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.process__step {
  text-align: center;
  position: relative;
  padding: 0 16px;
  transition: all 0.4s var(--ease);
}

.process__step:hover {
  transform: translateY(-6px);
}

.process__step-number {
  font-family: var(--font-heading);
  font-size: 7rem;
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(232, 196, 200, 0.3);
  line-height: 1;
  margin-bottom: 28px;
  transition: all 0.4s ease;
  user-select: none;
  position: relative;
  z-index: 1;
}

.process__step:hover .process__step-number {
  -webkit-text-stroke: 1.2px rgba(242, 170, 222, 0.7);
  color: rgba(242, 170, 222, 0.15);
  text-shadow: 0 0 30px rgba(242, 170, 222, 0.3);
}

.process__step-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.process__step h3 {
  color: var(--white);
  font-size: 1.1rem;
  font-style: normal;
  margin-bottom: 0;
  transition: color 0.3s;
}

.process__step:hover h3 {
  color: var(--pink);
}

.process__step p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 240px;
  margin: 0 auto;
}

/* ---------- Legal Pages ---------- */
.legal-toc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  padding: 20px 24px;
  background: var(--off-white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(27, 58, 75, 0.06);
}

.legal-toc a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.3s;
}

.legal-toc a:hover {
  color: var(--pink);
}

.legal-toc span {
  color: rgba(27, 58, 75, 0.2);
  font-size: 0.8rem;
}

.legal-content h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-top: 48px;
  margin-bottom: 14px;
  padding-top: 16px;
}

.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
}

.legal-content p {
  margin-bottom: 12px;
}

.legal-content ul {
  padding-left: 0;
  margin-bottom: 16px;
  list-style: none;
}

.legal-content li {
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

.legal-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
}

.legal-content a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: rgba(27, 58, 75, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.3s ease;
}

.legal-content a:hover {
  text-decoration-color: var(--navy);
}

.legal-contact-card {
  margin-top: 56px;
  padding: 40px;
  background: var(--off-white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(27, 58, 75, 0.06);
}

.legal-contact-card h3 {
  margin-top: 0;
  padding-top: 0;
}

/* ---------- Navbar Social Icons ---------- */
.nav__social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 8px;
}

.nav__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.nav__social a:hover {
  opacity: 1;
  color: var(--pink);
}

.nav__social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ---------- Review Page ---------- */
.review-section {
  padding: 80px 0 100px;
  background: var(--white);
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.review-card {
  background: #FAFCFE;
  border: 1px solid #E8E2DC;
  border-radius: 16px;
  padding: 48px 32px 40px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(27, 58, 75, 0.1);
}

.review-card--highlighted {
  border-color: var(--navy);
  box-shadow: 0 0 0 2px rgba(27, 58, 75, 0.15), 0 12px 32px rgba(27, 58, 75, 0.1);
}

.review-card__city {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}

.review-card__tagline {
  font-size: 0.85rem;
  color: var(--gray-300);
  line-height: 1.6;
  margin-bottom: 32px;
}

.review-card__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.review-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  color: var(--white);
}

.review-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.review-btn--google {
  background: #0C6AA4;
}

.review-btn--yelp {
  background: #E6A4BF;
}

.review-btn--disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}

.review-btn svg {
  flex-shrink: 0;
}

/* ---------- Blog ---------- */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: all 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: var(--gray-200);
}

.blog-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.blog-card--featured .blog-card__image {
  aspect-ratio: 16/10;
}

.blog-card__image {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
  background: var(--gray-100);
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

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

.blog-card__category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  background: var(--white);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
}

.blog-card__content {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.blog-card--featured .blog-card__content {
  padding: 40px;
  justify-content: center;
}

.blog-card__meta {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-card__content h2 {
  font-size: 1.6rem;
  line-height: 1.3;
}

.blog-card__content h3 {
  font-size: 1.2rem;
  line-height: 1.3;
}

.blog-card__content p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--gray-500);
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-top: 4px;
  transition: gap 0.3s var(--ease);
}

.blog-card:hover .blog-card__link {
  gap: 14px;
}

/* ---------- Portfolio / Gallery ---------- */
.portfolio {
  background: var(--white);
}

.portfolio__header {
  text-align: center;
  margin-bottom: 60px;
}

.portfolio__header h4 {
  margin-bottom: 16px;
}

.portfolio__header h2 {
  margin-bottom: 20px;
}

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

.portfolio__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--gray-100);
  cursor: default;
}

.portfolio__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

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

.portfolio__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 45, 68, 0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.portfolio__item:hover .portfolio__overlay {
  opacity: 1;
}

.portfolio__overlay h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 4px;
  transform: translateY(16px);
  transition: transform 0.5s var(--ease-out);
}

.portfolio__item:hover .portfolio__overlay h3 {
  transform: translateY(0);
}

.portfolio__overlay p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  transform: translateY(16px);
  transition: transform 0.5s var(--ease-out) 0.06s;
}

.portfolio__item:hover .portfolio__overlay p {
  transform: translateY(0);
}

.portfolio__cta {
  text-align: center;
  margin-top: 48px;
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--navy);
  overflow: hidden;
  color: var(--white);
}

.testimonials__header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials__header h4 {
  margin-bottom: 16px;
  color: var(--pink);
}

.testimonials__header h2 {
  margin-bottom: 20px;
  color: var(--white);
}

.testimonials__pullquote {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials__pullquote p {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--white);
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.3;
}

.testimonials__pullquote span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.03em;
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), background 0.5s var(--ease);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid transparent;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  border-left-color: var(--blue-light);
  background: rgba(255, 255, 255, 0.1);
}

.testimonial-card--featured {
  padding: 56px;
  border: 1px solid rgba(207, 181, 131, 0.3);
  border-left: 3px solid rgba(207, 181, 131, 0.5);
  background: rgba(255, 255, 255, 0.09);
}

.testimonial-card--featured:hover {
  border-left-color: rgba(207, 181, 131, 0.8);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 0 30px rgba(207, 181, 131, 0.1);
}

.testimonial-card__quote {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  color: var(--pink-soft);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.7;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
  font-style: italic;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 500;
}

.testimonial-card__avatar-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(207, 181, 131, 0.4);
}

.testimonial-card__name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--blue);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(242, 170, 222, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(236, 231, 15, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

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

.cta-banner__content h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-banner__content p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer__logo a {
  display: inline-block;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.footer__logo a:hover {
  opacity: 0.8;
}

.footer__logo span {
  color: var(--pink);
}

.footer__brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer__social a:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--navy);
}

.footer__social a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer__col h4 {
  color: var(--white);
  font-size: 0.78rem;
  margin-bottom: 24px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
}

.footer__col ul li {
  margin-bottom: 12px;
}

.footer__col ul li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
  position: relative;
}

.footer__col ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--pink);
  transition: width 0.3s var(--ease);
}

.footer__col ul li a:hover {
  color: var(--pink);
}

.footer__col ul li a:hover::after {
  width: 100%;
}

.footer__bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
}

.footer__bottom a:hover {
  color: var(--pink);
}

/* ---------- Page Headers ---------- */
.page-header {
  padding: 180px 0 100px;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--cream) 40%, var(--pink-soft) 100%);
  text-align: center;
}

.page-header h4 {
  margin-bottom: 16px;
}

.page-header h1 {
  margin-bottom: 20px;
}

.page-header p {
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ---------- About Page ---------- */
.about-founder {
  background: var(--white);
}

.about-founder__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-founder__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--gray-100);
  position: relative;
}

.about-founder__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 10% center;
}

.about-values {
  background: var(--off-white);
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
}

.value-card__icon {
  transition: transform 0.5s var(--ease);
}

.value-card:hover .value-card__icon {
  transform: scale(1.1);
}

.value-card__icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--pink-soft), var(--cream));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
}

.value-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.value-card p {
  font-size: 0.92rem;
  margin: 0 auto;
}

/* ---------- Services Page ---------- */
.service-detail {
  background: var(--white);
  scroll-margin-top: 80px;
}

.service-detail:nth-child(even) {
  background: var(--off-white);
}

.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-detail:nth-child(even) .service-detail__grid {
  direction: rtl;
}

.service-detail:nth-child(even) .service-detail__grid > * {
  direction: ltr;
}

.service-detail__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-100);
}

.service-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.service-detail__image:hover img {
  transform: scale(1.04);
}

.service-detail__content h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.service-detail__content p {
  margin-bottom: 16px;
}

.service-detail__features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-detail__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}

.service-detail__feature-check {
  width: 22px;
  height: 22px;
  background: var(--pink-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-detail__feature-check svg {
  width: 12px;
  height: 12px;
  stroke: var(--blue);
  stroke-width: 2.5;
}

/* ---------- Contact Page ---------- */
.contact-section {
  background: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.contact__info h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.contact__info > p {
  margin-bottom: 40px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact__detail-icon {
  width: 48px;
  height: 48px;
  background: var(--pink-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__detail-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.5;
}

.contact__detail-text strong {
  display: block;
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.contact__detail-text span {
  font-size: 0.88rem;
  color: var(--gray-400);
}

.contact__detail-text a {
  color: var(--blue);
  transition: color 0.3s;
}

.contact__detail-text a:hover {
  color: var(--pink-muted);
}

.contact__areas h4 {
  margin-bottom: 16px;
}

.contact__area-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact__area-tag {
  padding: 8px 20px;
  background: var(--off-white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
}

/* Contact Form */
.contact__form {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 48px;
}

.contact__form h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.contact__form > p {
  margin-bottom: 32px;
  font-size: 0.92rem;
}

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

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #D5CFC9;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231B3A4B' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 44px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #1B3A4B;
  box-shadow: 0 0 0 3px rgba(27, 58, 75, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-300);
}

.contact__form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}
.contact__form .btn:hover {
  filter: brightness(0.9);
}

/* Progress indicator */
.form-progress {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 36px;
}
.form-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.form-progress__circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #D5CFC9;
  background: transparent;
  transition: all 0.3s ease;
}
.form-progress__step.active .form-progress__circle {
  background: var(--navy);
  border-color: var(--navy);
}
.form-progress__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #D5CFC9;
  transition: color 0.3s ease;
}
.form-progress__step.active .form-progress__label {
  color: var(--navy);
}
.form-progress__line {
  width: 60px;
  height: 2px;
  background: #D5CFC9;
  position: relative;
  margin: 5px 16px 0;
}
.form-progress__line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--navy);
  transition: width 0.3s ease;
}

/* Multi-step form */
.form-steps {
  position: relative;
}
.form-step {
  display: none;
}
.form-step.active {
  display: block;
}
.form-step.slide-out-left { animation: slideOutLeft 0.3s ease forwards; }
.form-step.slide-in-right { animation: slideInRight 0.3s ease; }
.form-step.slide-out-right { animation: slideOutRight 0.3s ease forwards; }
.form-step.slide-in-left { animation: slideInLeft 0.3s ease; }

@keyframes slideOutLeft {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(-40px); opacity: 0; }
}
@keyframes slideInRight {
  from { transform: translateX(40px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes slideOutRight {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(40px); opacity: 0; }
}
@keyframes slideInLeft {
  from { transform: translateX(-40px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Step headers */
.form-step__header {
  padding-bottom: 8px;
  border-bottom: 1px solid #E8E2DC;
  margin-bottom: 24px;
}
.form-step__header h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(27, 58, 75, 0.6);
  margin: 0;
}

/* Next button */
.btn--next {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: filter 0.3s ease;
  margin-top: 8px;
}
.btn--next:hover {
  filter: brightness(1.15);
}

/* Back link */
.form-back {
  display: inline-block;
  color: var(--navy);
  font-size: 0.88rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.form-back:hover {
  opacity: 0.7;
}

/* Custom select dropdowns */
.custom-select {
  position: relative;
}
.custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #D5CFC9;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}
.custom-select__trigger.placeholder {
  color: var(--gray-300);
}
.custom-select__trigger:focus,
.custom-select.open .custom-select__trigger {
  border-color: #1B3A4B;
  box-shadow: 0 0 0 3px rgba(27, 58, 75, 0.1);
}
.custom-select__arrow {
  display: flex;
  align-items: center;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 8px;
}
.custom-select.open .custom-select__arrow {
  transform: rotate(180deg);
}
.custom-select__options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid #D5CFC9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.2s ease, opacity 0.2s ease;
  z-index: 100;
}
.custom-select.open .custom-select__options {
  max-height: 280px;
  overflow-y: auto;
  opacity: 1;
}
.custom-select__option {
  padding: 12px 16px;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text);
  transition: background 0.15s ease;
}
.custom-select__option:hover {
  background: #F5EFEB;
}
.custom-select__option.selected {
  font-weight: 500;
}
.form-group.has-error .custom-select__trigger {
  border-color: #c0392b;
}

/* Required asterisk */
.required {
  color: #E8C4C8;
  font-weight: 400;
}

/* Form hint text */
.form-hint {
  font-size: 0.8rem;
  color: #A89F95;
  margin: -4px 0 8px;
  font-style: italic;
}

/* Inline validation errors */
.form-error {
  display: none;
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 6px;
}
.form-error.visible {
  display: block;
}
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #c0392b;
}

/* Checkbox styling */
.form-group--checkbox {
  margin-top: 4px;
  margin-bottom: 24px;
}
.form-group--checkbox .checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 0;
}
.form-group--checkbox .checkbox-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  max-width: 20px;
  padding: 0;
  border: 1.5px solid #D5CFC9;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.checkbox-label input[type="checkbox"]:checked {
  background: var(--navy);
  border-color: var(--navy);
}
.checkbox-label input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 45%;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* Success message */
.form-success {
  text-align: center;
  padding: 60px 20px;
  animation: fadeInUp 0.6s ease;
}
.form-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.form-success h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--navy);
}
.form-success p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  max-width: 440px;
  margin: 0 auto;
}
.form-success__link {
  display: inline-block;
  margin-top: 24px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.form-success__link:hover {
  border-bottom-color: var(--navy);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loading spinner on button */
.btn--loading {
  position: relative;
  pointer-events: none;
}
.btn--loading::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 8px;
  vertical-align: middle;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- Newsletter Page ---------- */
.newsletter-section {
  background: var(--white);
  padding: 0 0 var(--section-padding);
}

.newsletter__card {
  max-width: 600px;
  margin: -80px auto 0;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  z-index: 1;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
}

.newsletter__card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.newsletter__card > p {
  margin-bottom: 32px;
  font-size: 0.95rem;
  color: var(--text);
  opacity: 0.7;
}

.newsletter__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 8px;
}

.btn--newsletter {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  background: #0C6AA4;
  color: var(--white);
}

.btn--newsletter::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: none;
}

.btn--newsletter:hover::after {
  left: 120%;
  transition: left 0.6s var(--ease);
}

.btn--newsletter:hover {
  background: #0a5a8c;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(12, 106, 164, 0.3);
}

.newsletter__privacy {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text);
  opacity: 0.45;
  margin-top: 16px;
  margin-bottom: 0;
}

.newsletter-values {
  background: var(--off-white);
  padding: var(--section-padding) 0;
}

.newsletter-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}

/* ---------- Blog Post Page ---------- */
.blog-post-header {
  padding: 180px 0 60px;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--cream) 40%, var(--pink-soft) 100%);
}

.blog-post__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 24px;
  transition: gap 0.3s var(--ease);
}

.blog-post__back:hover {
  gap: 12px;
}

.blog-post-header h1 {
  margin-bottom: 20px;
  max-width: 800px;
}

.blog-post__meta {
  display: flex;
  gap: 20px;
  font-size: 0.82rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-post__hero {
  padding: 40px 0 0;
}

.blog-post__hero-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--gray-100);
}

.blog-post__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-post {
  padding: 60px 0 var(--section-padding);
}

.blog-post__content h2 {
  margin-top: 48px;
  margin-bottom: 20px;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
}

.blog-post__content h3 {
  margin-top: 36px;
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.blog-post__content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 100%;
}

.blog-post__content ul,
.blog-post__content ol {
  margin: 20px 0;
  padding-left: 24px;
  list-style: disc;
}

.blog-post__content ol {
  list-style: decimal;
}

.blog-post__content li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
}

.blog-post__content blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  border-left: 3px solid var(--blue);
  background: var(--off-white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
}

.blog-post__content blockquote p {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.blog-post__content strong {
  color: var(--navy);
  font-weight: 600;
}

.related-posts {
  background: var(--off-white);
}

.related-posts h2 {
  text-align: center;
  margin-bottom: 48px;
}

/* ---------- Portfolio Page ---------- */
.portfolio-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-page__item:hover img {
  transform: scale(1.05);
}

.portfolio-page__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  cursor: default;
}

.portfolio-page__item--tall {
  grid-row: span 2;
}

.portfolio-page__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}


/* ---------- Portfolio Filters ---------- */
.portfolio-filter {
  padding: 10px 24px;
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  background: transparent;
  color: var(--gray-400);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.portfolio-filter:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.portfolio-filter.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.portfolio__service {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
  transform: translateY(16px);
  transition: transform 0.5s var(--ease-out) 0.12s;
}

.portfolio__item:hover .portfolio__service {
  transform: translateY(0);
}

.portfolio__item[data-category].hidden {
  display: none;
}

/* ---------- Blog Featured / Start Here ---------- */
.blog-featured__card {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  transform: translateY(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.blog-featured__card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 2px rgba(27, 58, 75, 0.6),
    0 0 24px rgba(27, 58, 75, 0.4),
    0 0 48px rgba(27, 58, 75, 0.15);
  border-color: rgba(27, 58, 75, 0.6);
}

.blog-featured__card h3 {
  color: var(--navy);
  transition: color 0.3s;
}

.blog-featured__card:hover h3 {
  color: var(--navy);
}

/* Blog card filter hidden state */
.blog-card[data-category].hidden {
  display: none;
}

/* Blog grid: flexbox for proper reflow when filtering */
.blog__grid.blog-filterable {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.blog__grid.blog-filterable .blog-card {
  width: calc((100% - 64px) / 3);
}

.blog__grid.blog-filterable .blog-card--featured {
  width: 100%;
}

/* Blog inline CTA blocks */
.blog-inline-cta h3 {
  color: var(--navy);
}

.blog-inline-cta p {
  color: var(--gray-500);
}

/* Blog email form focus */
.blog-email-form input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(242, 170, 222, 0.15);
}

.blog-email-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

/* ---------- FAQ Section ---------- */
.faq {
  background: var(--off-white);
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--gray-200);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s;
}

.faq__question:hover {
  color: var(--blue);
}

.faq__icon {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.faq__item.active .faq__icon {
  background: var(--pink);
  border-color: var(--pink);
  transform: rotate(45deg);
}

.faq__icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--navy);
  stroke-width: 2;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq__answer-inner {
  padding: 0 0 28px;
}

.faq__answer p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray-500);
}

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

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Image reveal — subtle scale-in for portfolio and blog images */
.portfolio__item.reveal,
.portfolio-page__item.reveal,
.blog-card.reveal {
  transform: translateY(40px) scale(0.97);
}

.portfolio__item.reveal.visible,
.portfolio-page__item.reveal.visible,
.blog-card.reveal.visible {
  transform: translateY(0) scale(1);
}

/* Intro image parallax-like float */
.intro__image {
  transition: transform 0.5s var(--ease);
}

.intro__image:hover {
  transform: translateY(-6px);
}

/* About founder image hover */
.about-founder__image {
  transition: transform 0.5s var(--ease);
}

.about-founder__image:hover {
  transform: translateY(-6px);
}

/* ---------- Mobile Responsive ---------- */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .hero__grid {
    gap: 50px;
  }

  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .services__badge img {
    max-width: 160px;
  }

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

  .blog__grid.blog-filterable .blog-card {
    width: calc((100% - 32px) / 2);
  }

  .blog-card--featured {
    grid-column: 1 / -1;
  }

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

  .process__step {
    padding: 0 12px;
  }

  .process__step-number {
    font-size: 5rem;
    margin-bottom: 20px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .review-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

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

@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
  }

  .container {
    padding: 0 24px;
  }

  /* Mobile Navigation */
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 24px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transition: right 0.4s var(--ease);
  }

  .nav__mobile-logo {
    display: block;
    height: 52px;
    width: auto;
    margin-bottom: 8px;
    align-self: center;
  }

  .nav__links.open {
    right: 0;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__link {
    font-size: 1.1rem;
    text-transform: none;
    letter-spacing: 0;
  }

  .nav__cta {
    width: 100%;
    justify-content: center;
  }

  .nav__social {
    margin-left: 0;
    gap: 20px;
  }

  .nav__social svg {
    width: 20px;
    height: 20px;
  }

  /* Mobile Overlay */
  .nav__overlay {
    position: fixed;
    inset: 0;
    background: transparent;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .nav__overlay.visible {
    opacity: 1;
    pointer-events: auto;
  }

  /* Hero */
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
    gap: 32px;
  }

  .hero {
    padding-top: 100px;
  }

  .hero__visual {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .press-feature__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .press-feature__logos img {
    height: 40px;
    padding: 10px 16px;
  }

  .press-feature__magazine img {
    width: 120px;
  }

  .blog-post__meta {
    flex-wrap: wrap;
    gap: 12px;
  }

  /* Sections */
  .intro__grid,
  .about-founder__grid,
  .service-detail__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-detail:nth-child(even) .service-detail__grid {
    direction: ltr;
  }

  .services__grid,
  .portfolio__grid,
  .about-values__grid,
  .portfolio-page__grid,
  .blog__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonials__slider {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog__grid.blog-filterable .blog-card {
    width: 100%;
  }

  .services__badge {
    display: none;
  }

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

  .blog-card--featured {
    grid-template-columns: 1fr;
  }

  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }

  .contact-process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process__step {
    padding: 0 8px;
  }

  .process__step:hover {
    transform: translateY(-4px);
  }

  .process__step-number {
    font-size: 4rem;
    margin-bottom: 16px;
  }

  .process__step h3 {
    font-size: 1rem;
  }

  .process__step p {
    font-size: 0.82rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .review-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
  }

  .review-card {
    padding: 36px 24px 32px;
  }

  .review-card__city {
    font-size: 1.5rem;
  }

  .review-section {
    padding: 60px 0 80px;
  }

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

  .contact__form {
    padding: 32px 24px;
  }

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

  .hero__image-accent,
  .hero__image-dots {
    display: none;
  }

  .portfolio-filters,
  .blog-filters__bar {
    gap: 8px;
  }

  .portfolio-filter {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .blog-featured__grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  .blog-email-form {
    flex-direction: column !important;
  }

  .blog-inline-cta,
  .blog-email-capture {
    padding: 36px 24px !important;
  }

  .portfolio-testimonial__grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Newsletter Mobile */
  .newsletter__card {
    padding: 32px 24px;
    margin-top: -48px;
  }

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

  .newsletter-values__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.2rem;
  }

  .hero__stats {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.8rem;
  }

  .blog-featured__grid {
    grid-template-columns: 1fr !important;
  }

  .page-header {
    padding: 140px 0 60px;
  }

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

  .process__step-number {
    font-size: 3.5rem;
    margin-bottom: 12px;
  }
}
