/* =========================================================
   THE TOKO PROJECT | styles.css
   Colors: Navy #0D1F3C | Gold #B8952A | Cream #F5F4F0
   Fonts:  Cormorant Garamond (display) + Outfit (body)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Outfit:wght@300;400;500;600&display=swap');

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: #0D1F3C;
  background: #F5F4F0;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

p { font-size: 1rem; line-height: 1.7; }

.label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #B8952A;
}

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 7rem 0; }

/* ── Colors ── */
.bg-navy { background: #0D1F3C; }
.bg-navy-mid { background: #1A3358; }
.bg-cream { background: #F5F4F0; }
.bg-white { background: #ffffff; }

.text-cream { color: #F5F4F0; }
.text-gold { color: #B8952A; }
.text-navy { color: #0D1F3C; }
.text-muted { color: #7A7569; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-gold {
  background: #B8952A;
  color: #F5F4F0;
}
.btn-gold:hover {
  background: #C9A840;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,149,42,0.35);
}

.btn-outline-cream {
  background: transparent;
  color: #F5F4F0;
  border: 1.5px solid rgba(245,244,240,0.55);
}
.btn-outline-cream:hover {
  background: rgba(245,244,240,0.12);
  border-color: #F5F4F0;
}

.btn-outline-navy {
  background: transparent;
  color: #0D1F3C;
  border: 1.5px solid #0D1F3C;
}
.btn-outline-navy:hover {
  background: #0D1F3C;
  color: #F5F4F0;
}

/* ── Navigation ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s ease, padding 0.35s ease, backdrop-filter 0.35s ease;
}

.site-nav.scrolled {
  background: rgba(13, 31, 60, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 2rem;
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #F5F4F0;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,244,240,0.85);
  transition: color 0.2s;
}
.nav-links a:hover { color: #C9A840; }
.nav-links a.active { color: #C9A840; }

.nav-cta {
  background: #B8952A;
  color: #F5F4F0 !important;
  padding: 0.55rem 1.4rem;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover {
  background: #C9A840 !important;
  color: #F5F4F0 !important;
  transform: translateY(-1px);
}

/* Light nav variant (for pages without dark hero) */
.site-nav.nav-light .nav-logo { color: #0D1F3C; }
.site-nav.nav-light .nav-links a { color: rgba(13,31,60,0.8); }
.site-nav.nav-light .nav-links a:hover { color: #B8952A; }
.site-nav.nav-light.scrolled .nav-logo { color: #F5F4F0; }
.site-nav.nav-light.scrolled .nav-links a { color: rgba(245,244,240,0.85); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #F5F4F0;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #0D1F3C;
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #F5F4F0;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: #C9A840; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,31,60,0.4) 0%,
    rgba(13,31,60,0.3) 50%,
    rgba(13,31,60,0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #F5F4F0;
  max-width: 820px;
}

.hero-content .label { color: rgba(201,168,64,0.9); margin-bottom: 1.2rem; }

.hero-content h1 {
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.hero-content p {
  font-size: 1.15rem;
  color: rgba(245,244,240,0.85);
  max-width: 540px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Section Intros ── */
.section-intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4rem;
}
.section-intro .label { margin-bottom: 0.8rem; }
.section-intro p {
  color: #7A7569;
  font-size: 1.05rem;
  margin-top: 1rem;
}

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: #e0ddd8;
}

.service-card {
  background: #F5F4F0;
  padding: 3rem 2.5rem;
  position: relative;
  transition: background 0.3s;
}
.service-card:hover { background: #ffffff; }

.service-card .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #B8952A;
  display: block;
  margin: 1rem 0 0.5rem;
}

.service-card p { color: #7A7569; font-size: 0.95rem; }

.service-card .card-cta {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0D1F3C;
  border-bottom: 1.5px solid #B8952A;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.service-card .card-cta:hover { color: #B8952A; }

/* ── Process Strip ── */
.process-section {
  background: #0D1F3C;
  padding: 7rem 0;
}

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

.process-step {
  padding: 0 2rem;
  position: relative;
  text-align: center;
}

.process-connector {
  position: absolute;
  top: 2.2rem;
  left: calc(50% + 2.25rem);
  right: calc(-50% + 2.25rem);
  height: 1px;
  background: rgba(184,149,42,0.35);
  z-index: 0;
}
.process-step:last-child .process-connector { display: none; }

.step-marker {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  border: 1.5px solid #B8952A;
  background: rgba(184,149,42,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #C9A840;
}

.process-step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: #F5F4F0;
  margin-bottom: 0.6rem;
}

.process-step p {
  font-size: 0.88rem;
  color: rgba(245,244,240,0.6);
  line-height: 1.6;
}

/* ── Portfolio Grid ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #1A3358;
  cursor: pointer;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.55s ease;
}
.portfolio-card:hover img { transform: scale(1.06); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,31,60,0.88) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay h4 {
  font-family: 'Cormorant Garamond', serif;
  color: #F5F4F0;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}
.portfolio-overlay a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C9A840;
}

.badge-stars {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #B8952A;
  color: #F5F4F0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.7rem;
  z-index: 2;
}

/* ── Testimonials ── */
.testimonial-spotlight {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: #B8952A;
  line-height: 0.5;
  margin-bottom: 1.5rem;
  display: block;
}

.testimonial-spotlight blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  color: #0D1F3C;
  line-height: 1.35;
  margin-bottom: 1.5rem;
}

.testimonial-attribution {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7A7569;
}

.testimonial-secondary {
  background: #F5F4F0;
  border-left: 3px solid #B8952A;
  padding: 1.5rem 2rem;
  margin-top: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-secondary p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: #0D1F3C;
}
.testimonial-secondary .testimonial-attribution { margin-top: 0.75rem; }

/* ── Story / Image-Text Sections ── */
.story-bg {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.story-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.story-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,31,60,0.65);
}
.story-bg-content {
  position: relative;
  z-index: 2;
  color: #F5F4F0;
  max-width: 640px;
}
.story-bg-content h2 { color: #F5F4F0; margin-bottom: 1rem; }
.story-bg-content p {
  color: rgba(245,244,240,0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

/* ── Final CTA ── */
.cta-section {
  background: #0D1F3C;
  text-align: center;
  padding: 7rem 2rem;
}
.cta-section h2 { color: #F5F4F0; margin-bottom: 1rem; }
.cta-section p {
  color: rgba(245,244,240,0.65);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

/* ── Footer ── */
footer {
  background: #0a1929;
  padding: 4rem 0 2rem;
  color: rgba(245,244,240,0.55);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo {
  font-size: 1.1rem;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(245,244,240,0.45);
  max-width: 280px;
}

.footer-col h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #B8952A;
  margin-bottom: 1.2rem;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(245,244,240,0.55);
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: #F5F4F0; }

.footer-bottom {
  border-top: 1px solid rgba(245,244,240,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(245,244,240,0.3);
}

/* ── About Page ── */
.about-hero {
  min-height: 75vh;
}

.text-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.text-image-row.reverse { direction: rtl; }
.text-image-row.reverse > * { direction: ltr; }

.text-image-row img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.text-block .label { margin-bottom: 0.8rem; }
.text-block h2 { margin-bottom: 1.2rem; }
.text-block p {
  color: #7A7569;
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

/* ── Contact Page ── */
.contact-section {
  background: #0D1F3C;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 10rem 0 7rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
}

.contact-info h2 {
  color: #F5F4F0;
  margin-bottom: 1.5rem;
}
.contact-info p {
  color: rgba(245,244,240,0.6);
  font-size: 1rem;
  margin-bottom: 2rem;
}
.contact-info a {
  display: block;
  font-size: 1rem;
  color: #C9A840;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.contact-info a:hover { color: #F5F4F0; }

.contact-form-wrap {
  background: rgba(245,244,240,0.04);
  border: 1px solid rgba(245,244,240,0.1);
  padding: 3rem;
}

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

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,244,240,0.55);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(245,244,240,0.06);
  border: 1px solid rgba(245,244,240,0.15);
  color: #F5F4F0;
  padding: 0.85rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245,244,240,0.25);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #B8952A;
}

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

/* ── Services Page ── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.package-card {
  border: 1px solid #e0ddd8;
  padding: 2.5rem;
  background: #ffffff;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.package-card:hover {
  box-shadow: 0 12px 40px rgba(13,31,60,0.1);
  transform: translateY(-4px);
}

.package-card.featured {
  border-color: #B8952A;
  background: #0D1F3C;
  color: #F5F4F0;
}

.featured-badge {
  position: absolute;
  top: -1px;
  left: 2rem;
  background: #B8952A;
  color: #F5F4F0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
}

.package-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.package-card.featured h3 { color: #F5F4F0; }

.package-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #B8952A;
  display: block;
  margin: 1rem 0;
}

.package-card p {
  font-size: 0.92rem;
  color: #7A7569;
  line-height: 1.65;
  margin-bottom: 2rem;
}
.package-card.featured p { color: rgba(245,244,240,0.6); }

.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: #e0ddd8;
}

.addon-item {
  background: #F5F4F0;
  padding: 1.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.addon-item:hover { background: #ffffff; }

.addon-name {
  font-weight: 500;
  font-size: 0.95rem;
}
.addon-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #B8952A;
  white-space: nowrap;
  margin-left: 2rem;
}

/* ── Work Page ── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.work-card {
  background: #ffffff;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
}
.work-card:hover {
  box-shadow: 0 16px 48px rgba(13,31,60,0.12);
  transform: translateY(-5px);
}

.work-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.work-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}
.work-card:hover .work-card-img img { transform: scale(1.04); }

.work-card-body {
  padding: 1.5rem;
}
.work-card-body h3 {
  font-size: 1.25rem;
  color: #0D1F3C;
  margin-bottom: 0.3rem;
}
.work-card-body .site-url {
  font-size: 0.78rem;
  color: #7A7569;
  margin-bottom: 1rem;
  display: block;
}
.work-card-body .visit-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0D1F3C;
  border-bottom: 1.5px solid #B8952A;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.work-card-body .visit-link:hover { color: #B8952A; }

.work-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #B8952A;
  color: #F5F4F0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  z-index: 2;
}

/* ── Get Started Page ── */
.get-started-section {
  background: #F5F4F0;
  padding: 10rem 0 5rem;
}
.get-started-intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4rem;
}
.get-started-intro h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 1rem;
}
.get-started-intro p {
  color: #7A7569;
  font-size: 1.05rem;
}
.get-started-intro a { color: #B8952A; }
.get-started-intro a:hover { color: #0D1F3C; }

/* ── Page Hero (non-home pages) ── */
.page-hero {
  min-height: 50vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,31,60,0.3) 0%, rgba(13,31,60,0.7) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: #F5F4F0;
}
.page-hero-content .label { margin-bottom: 0.8rem; }
.page-hero-content h1 { font-style: italic; color: #F5F4F0; }

/* ── Differentiators ── */
.diff-section {
  background: #1A3358;
  padding: 5rem 0;
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
}
.diff-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: #F5F4F0;
  margin-bottom: 0.6rem;
}
.diff-item p {
  font-size: 0.9rem;
  color: rgba(245,244,240,0.55);
}
.diff-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(184,149,42,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  color: #C9A840;
  font-size: 1.2rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid,
  .packages-grid,
  .portfolio-grid,
  .work-grid { grid-template-columns: repeat(2, 1fr); }

  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .footer-brand { grid-column: 1 / -1; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-section { padding-top: 9rem; }

  .text-image-row { grid-template-columns: 1fr; gap: 3rem; }
  .text-image-row.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  section { padding: 5rem 0; }

  .services-grid,
  .packages-grid,
  .portfolio-grid,
  .work-grid,
  .addons-grid,
  .diff-grid { grid-template-columns: 1fr; }

  .process-grid { grid-template-columns: 1fr; }
  .process-connector { display: none; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

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

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }

  .contact-form-wrap { padding: 2rem 1.5rem; }
}

/* ── Service Card Popular Highlight ── */
.service-card.popular {
  border-top: 3px solid #B8952A;
  box-shadow: 0 6px 28px rgba(184,149,42,0.14);
}
.popular-badge {
  position: absolute;
  top: 0;
  right: 1.5rem;
  background: #B8952A;
  color: #F5F4F0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
}

/* ── Services Two-Col Variant (home page) ── */
.services-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .services-grid.two-col { grid-template-columns: 1fr; }
}

/* ── Home Add-Ons Grid ── */
.home-addons {
  margin-top: 3rem;
  border-top: 1px solid #e0ddd8;
  padding-top: 2.5rem;
}
.home-addons-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #B8952A;
  margin-bottom: 1.2rem;
  display: block;
}
.home-addons-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: #e0ddd8;
}
.home-addon-item {
  background: #F5F4F0;
  padding: 1.2rem 1rem;
  text-align: center;
  transition: background 0.2s;
  position: relative;
}
.home-addon-item:hover { background: #ffffff; }
.home-addon-item .addon-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: #0D1F3C;
  line-height: 1.4;
  margin-bottom: 0.4rem;
}
.home-addon-item .addon-price-sm {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #B8952A;
}
.addon-popular-pill {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: #B8952A;
  color: #F5F4F0;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.18rem 0.55rem;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .home-addons-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .home-addons-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Form Select ── */
.form-group select {
  width: 100%;
  background: rgba(245,244,240,0.06);
  border: 1px solid rgba(245,244,240,0.15);
  color: #F5F4F0;
  padding: 0.85rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  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='rgba(245,244,240,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.form-group select:focus { border-color: #B8952A; }
.form-group select option {
  background: #0D1F3C;
  color: #F5F4F0;
}
.form-group select option:disabled { color: rgba(245,244,240,0.35); }

/* ── Package Card Popular (services page) ── */
.package-card.popular {
  border-color: #B8952A;
  box-shadow: 0 8px 32px rgba(184,149,42,0.15);
}
.package-popular-badge {
  position: absolute;
  top: -1px;
  left: 2rem;
  background: #B8952A;
  color: #F5F4F0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
}

/* ── Marketing Consulting Standalone ── */
.addon-standalone {
  text-align: center;
  margin-top: 1.5px;
  background: #F5F4F0;
  padding: 1.8rem 2rem;
  border-top: 1.5px solid #e0ddd8;
}
.addon-standalone .addon-name {
  font-weight: 500;
  font-size: 0.95rem;
  color: #0D1F3C;
  margin-bottom: 0.3rem;
}
.addon-standalone .addon-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #B8952A;
}

/* ── Service Checkbox Pills (contact form) ── */
.service-pills-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.service-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.85rem;
  border: 1px solid rgba(245,244,240,0.2);
  cursor: pointer;
  font-size: 0.78rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: rgba(245,244,240,0.55);
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
  user-select: none;
  line-height: 1;
}

.service-pill input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.service-pill:hover {
  border-color: rgba(245,244,240,0.4);
  color: rgba(245,244,240,0.85);
}

.service-pill.checked {
  border-color: #B8952A;
  background: rgba(184,149,42,0.14);
  color: #F5F4F0;
}

/* ── Scroll Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.5s; }
.reveal-stagger.visible > * {
  opacity: 1;
  transform: none;
}
