/*
Theme Name: LOVAN Digital
Theme URI: https://lovandigital.com
Author: LOVAN Digital Marketing Agency
Author URI: https://lovandigital.com
Description: Custom premium theme for LOVAN Digital Marketing Agency
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: lovan-digital
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ======================================
   CSS CUSTOM PROPERTIES
====================================== */
:root {
  --gold:       #C9A84C;
  --gold-light: #E8C96A;
  --dark:       #0A0A08;
  --dark-2:     #111110;
  --dark-3:     #1A1A18;
  --off-white:  #F0EDE6;
  --muted:      #7A7A72;
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --container: 1180px;
  --gutter: clamp(1.5rem, 4vw, 4rem);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol { list-style: none; }

button, input, textarea, select {
  font: inherit;
  outline: none;
  border: none;
  background: transparent;
}

/* ======================================
   TYPOGRAPHY
====================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(3rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 4rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2.2rem); }
h4 { font-size: 1.25rem; }

p { font-size: 1rem; color: var(--muted); }

/* ======================================
   LAYOUT UTILITIES
====================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(4rem, 10vw, 9rem);
}

/* ======================================
   EYEBROW LABEL
====================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
}

.eyebrow span {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ======================================
   BUTTONS
====================================== */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.1rem 2.5rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ======================================
   GHOST LINK (arrow style)
====================================== */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s;
}

.link-arrow:hover { color: var(--off-white); }

.link-arrow .arrow-line {
  width: 2rem;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.25s;
}

.link-arrow:hover .arrow-line { width: 2.8rem; }

.link-arrow .arrow-line::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

/* ======================================
   SECTION DIVIDER
====================================== */
.divider {
  border: none;
  border-top: 1px solid rgba(201,168,76,0.12);
  margin-block: 0;
}

/* ======================================
   FORMS
====================================== */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.15);
  color: var(--off-white);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

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

/* ======================================
   RESPONSIVE UTILITIES
====================================== */
@media (max-width: 768px) {
  nav .nav-links { display: none; }
}

/* ======================================
   SITE HEADER & NAVBAR
====================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  /* Transparent by default — sits over the hero */
  background: transparent;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

/* Scrolled state — frosted dark bar */
.site-header.is-scrolled {
  background: rgba(10,10,8,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(201,168,76,0.12);
}

.navbar {
  width: 100%;
}

.navbar__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 4.5rem;
}

/* ======================================
   LOGO
====================================== */
.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 1;
}

.navbar__logo .custom-logo-link {
  display: flex;
  align-items: center;
}

.navbar__logo img,
.navbar__logo .custom-logo {
  max-height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--off-white);
  line-height: 1;
  transition: color 0.2s;
}

.logo-text:hover {
  color: var(--gold-light);
}

.logo-accent {
  color: var(--gold);
}

/* ======================================
   NAV LIST
====================================== */
.navbar__menu {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.nav-list li a {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color 0.2s;
}

.nav-list li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-list li a:hover,
.nav-list li.current-menu-item a {
  color: var(--off-white);
}

.nav-list li a:hover::after,
.nav-list li.current-menu-item a::after {
  width: 100%;
}

/* CTA in header */
.navbar__cta {
  flex-shrink: 0;
  padding: 0.7rem 1.5rem;
  font-size: 0.78rem;
}

/* ======================================
   HAMBURGER BUTTON
====================================== */
.menu-close {
  display: none; /* hidden on desktop */
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0.25rem;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
}

.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--off-white);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}

.hamburger span:nth-child(1) { width: 100%; }
.hamburger span:nth-child(2) { width: 65%; }
.hamburger span:nth-child(3) { width: 100%; }

/* Active (X) state */
.hamburger.is-active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  width: 100%;
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  width: 100%;
}

/* ======================================
   MOBILE MENU OPEN STATE
====================================== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .navbar__cta {
    display: none;
  }

  .navbar__inner {
    justify-content: space-between;
  }

  .navbar__logo {
    margin-right: auto;
  }

  .navbar__menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    /* needed so .menu-close positions inside the overlay */
    isolation: isolate;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    /* Hidden off-screen by default */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .navbar__menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
  }

  .nav-list li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(201,168,76,0.08);
  }

  .nav-list li:first-child {
    border-top: 1px solid rgba(201,168,76,0.08);
  }

  .nav-list li a {
    display: block;
    padding: 1.25rem 2rem;
    font-size: 1rem;
    letter-spacing: 0.12em;
    color: var(--off-white);
  }

  .nav-list li a::after {
    display: none;
  }

  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
  }

  /* Keep header visible with solid bg when menu is open */
  body.menu-open .site-header {
    background: rgba(10, 10, 8, 0.98);
  }

  /* Close (×) button inside the menu overlay */
  .menu-close {
    display: block;
    position: fixed;
    top: 1.1rem;
    right: 1.25rem;
    z-index: 101;
    background: none;
    border: none;
    color: var(--off-white);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.4rem 0.6rem;
    opacity: 0.7;
    transition: opacity 0.2s, color 0.2s;
  }

  .menu-close:hover {
    opacity: 1;
    color: var(--gold);
  }

  /* Gold accent line at top of full-screen menu */
  .navbar__menu.is-open::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
}

/* ======================================
   SCROLL ANIMATIONS
====================================== */
.will-animate {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.will-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================
   HERO SECTION
====================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: clamp(7rem, 14vw, 11rem) clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  background: var(--dark);
}

/* Subtle grid texture */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 30%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 30%, black 30%, transparent 100%);
}

/* Ambient gold orb */
.hero__orb {
  position: absolute;
  top: -10%;
  right: -5%;
  width: clamp(320px, 55vw, 720px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(201,168,76,0.14) 0%, transparent 68%);
  pointer-events: none;
  border-radius: 50%;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* ======================================
   HERO HEADLINE
====================================== */
.hero__headline {
  max-width: 18ch;
  color: var(--off-white);
  line-height: 1.02;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.hero__headline--italic {
  font-style: italic;
  color: var(--gold);
  font-weight: 800;
}

/* Description */
.hero__desc {
  max-width: 48ch;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

/* CTA row */
.hero__actions {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  margin-bottom: clamp(3rem, 7vw, 5.5rem);
}

/* ======================================
   HERO STATS
====================================== */
.hero__stats {
  display: flex;
  gap: clamp(2rem, 5vw, 4rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(201,168,76,0.15);
  width: 100%;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--off-white);
  letter-spacing: -0.03em;
}

.stat__num span {
  font-size: 0.55em;
  color: var(--gold);
  vertical-align: super;
  line-height: 1;
}

.stat__label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ======================================
   HERO BADGE  (rotating ring)
====================================== */
.hero__badge {
  position: absolute;
  bottom: clamp(2rem, 5vw, 4rem);
  right: clamp(1.5rem, 6vw, 5rem);
  width: clamp(100px, 12vw, 152px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* Rotating ring via pseudo-element */
.hero__badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.35);
  background: conic-gradient(
    from 0deg,
    rgba(201,168,76,0.08),
    rgba(201,168,76,0.22) 50%,
    rgba(201,168,76,0.08) 100%
  );
  animation: badge-spin 14s linear infinite;
}

/* Outer tick marks */
.hero__badge::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(201,168,76,0.2);
  animation: badge-spin 28s linear infinite reverse;
}

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

.hero__badge-text {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(0.6rem, 1vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.5;
}

/* ======================================
   MARQUEE BAR
====================================== */
.marquee-bar {
  position: relative;
  overflow: hidden;
  background: var(--dark-3);
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding-block: 1rem;
  white-space: nowrap;
}

/* Fade edges */
.marquee-bar::before,
.marquee-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6rem;
  z-index: 1;
  pointer-events: none;
}

.marquee-bar::before {
  left: 0;
  background: linear-gradient(90deg, var(--dark-3), transparent);
}

.marquee-bar::after {
  right: 0;
  background: linear-gradient(-90deg, var(--dark-3), transparent);
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: marquee-scroll 28s linear infinite;
  will-change: transform;
}

.marquee-bar:hover .marquee-track {
  animation-play-state: paused;
}

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

.marquee-item {
  display: inline-block;
  padding-inline: 1.75rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.marquee-item:hover { color: var(--gold); }

.marquee-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.45;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ======================================
   HERO — MOBILE BREAKPOINTS
====================================== */
@media (max-width: 768px) {
  .hero {
    padding-block: 8rem 4rem;
    min-height: auto;
  }

  .hero__headline {
    font-size: clamp(2.6rem, 10vw, 3.5rem);
  }

  .hero__stats {
    gap: 1.75rem;
    flex-wrap: wrap;
  }

  .hero__badge {
    display: none; /* hide badge on small screens */
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero__headline {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  .hero__stats {
    gap: 1.25rem;
  }

  .stat__num {
    font-size: 2rem;
  }

  .marquee-item {
    padding-inline: 1.25rem;
  }
}

/* ======================================
   SERVICES SECTION
====================================== */
.services {
  background: var(--dark);
}

.section-header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.1);
}

.service-card {
  position: relative;
  background: var(--dark);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.25s ease;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  background: var(--dark-2);
}

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

.service-card__num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.7;
}

.service-card__title {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--off-white);
  margin: 0;
  transition: color 0.2s;
}

.service-card:hover .service-card__title {
  color: var(--gold-light);
}

.service-card__desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
  flex-grow: 1;
}

.service-card__link {
  margin-top: 0.5rem;
  align-self: flex-start;
}

/* ======================================
   SERVICES — MOBILE BREAKPOINTS
====================================== */
@media (max-width: 900px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ======================================
   PORTFOLIO SECTION
====================================== */
.portfolio {
  background: var(--dark-2);
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.no-content {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  padding-block: 3rem;
}

.portfolio-card {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.portfolio-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}

.portfolio-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--dark);
}

.portfolio-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-card__img img {
  transform: scale(1.04);
}

/* Gold shimmer on image hover */
.portfolio-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(201,168,76,0.08) 100%);
  pointer-events: none;
}

.portfolio-card__body {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.portfolio-card__title {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--off-white);
  line-height: 1.25;
}

.portfolio-card__excerpt {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  flex-grow: 1;
}

/* ======================================
   PORTFOLIO — MOBILE BREAKPOINTS
====================================== */
@media (max-width: 900px) {
  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ======================================
   CONTACT SECTION
====================================== */
.contact-section {
  background: var(--dark);
}

.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.contact-section__left {
  position: sticky;
  top: 6rem;
}

.contact-section__left h2 {
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  color: var(--off-white);
}

.contact-section__left > p {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 38ch;
}

.contact-section__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-info-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-info-item a,
.contact-info-item span {
  font-size: 0.95rem;
  color: var(--off-white);
  transition: color 0.2s;
}

.contact-info-item a:hover {
  color: var(--gold-light);
}

/* Right column — form */
.contact-section__right {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.1);
  padding: clamp(2rem, 4vw, 3rem);
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form .form-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.15);
  color: var(--off-white);
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  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='%237A7A72' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.contact-form .form-group select:focus {
  border-color: var(--gold);
  outline: none;
}

.contact-form .form-group select option {
  background: var(--dark-3);
  color: var(--off-white);
}

.contact-form .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.contact-form__feedback {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1.1rem;
  font-size: 0.88rem;
  border-left: 3px solid;
}

.contact-form__feedback--success {
  border-color: #4caf82;
  color: #4caf82;
  background: rgba(76,175,130,0.07);
}

.contact-form__feedback--error {
  border-color: #e05555;
  color: #e05555;
  background: rgba(224,85,85,0.07);
}

/* ======================================
   CONTACT — MOBILE BREAKPOINTS
====================================== */
@media (max-width: 900px) {
  .contact-section__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-section__left {
    position: static;
  }
}

/* ======================================
   SITE FOOTER
====================================== */
.site-footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(201,168,76,0.12);
  padding-block: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 3vw, 2.5rem);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(3rem, 6vw, 6rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* Brand col */
.footer__logo {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--off-white);
  margin-bottom: 1rem;
}

.logo-accent {
  color: var(--gold);
}

.footer__tagline {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 28ch;
}

/* Nav cols */
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer__nav-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__nav-col ul li a,
.footer__nav-col ul li span {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer__nav-col ul li a:hover {
  color: var(--off-white);
}

/* WordPress nav_menu wrapping ul */
.footer__nav-col .menu {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__nav-col .menu li a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer__nav-col .menu li a:hover {
  color: var(--off-white);
}

/* Socials */
.footer__socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(201,168,76,0.2);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.footer__socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.07);
}

/* Bottom bar */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: clamp(1.25rem, 3vw, 2rem);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer__legal a {
  color: var(--muted);
  transition: color 0.2s;
}

.footer__legal a:hover {
  color: var(--off-white);
}

.footer__legal span {
  opacity: 0.4;
}

/* ======================================
   FOOTER — MOBILE BREAKPOINTS
====================================== */
@media (max-width: 900px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__nav {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

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

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

/* ======================================
   ABOUT PAGE — STORY SECTION
====================================== */
.about-story {
  background: var(--dark);
  padding-top: calc(clamp(4rem, 10vw, 9rem) + 4.5rem);
}

.about-story__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.about-story__left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-story__heading {
  color: var(--off-white);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.about-story__heading--italic {
  font-style: italic;
  color: var(--gold);
}

.about-story__left > p {
  margin-bottom: 1.1rem;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.8;
  color: var(--muted);
}

/* Timeline */
.about-timeline {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid rgba(201,168,76,0.2);
  padding-left: clamp(1.25rem, 3vw, 2rem);
}

.about-timeline__item {
  position: relative;
  display: flex;
  gap: 1.5rem;
  padding-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.about-timeline__item:last-child {
  padding-bottom: 0;
}

.about-timeline__item::before {
  content: '';
  position: absolute;
  left: calc(-1 * clamp(1.25rem, 3vw, 2rem) - 4px);
  top: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--dark);
  box-shadow: 0 0 0 2px var(--gold);
}

.about-timeline__year {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  white-space: nowrap;
  padding-top: 3px;
  min-width: 2.8rem;
}

.about-timeline__content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.about-timeline__content strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--off-white);
  letter-spacing: -0.01em;
}

.about-timeline__content span {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Right column — stat cards */
.about-story__right {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.1);
}

.about-stat-card {
  background: var(--dark-2);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: background 0.2s;
}

.about-stat-card:hover {
  background: var(--dark-3);
}

.about-stat-card--gold {
  background: rgba(201,168,76,0.06);
}

.about-stat-card--gold:hover {
  background: rgba(201,168,76,0.1);
}

.about-stat-card__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  color: var(--off-white);
  letter-spacing: -0.03em;
}

.about-stat-card__num span {
  font-size: 0.5em;
  color: var(--gold);
  vertical-align: super;
}

.about-stat-card--gold .about-stat-card__num {
  color: var(--gold);
}

.about-stat-card--gold .about-stat-card__num span {
  color: var(--gold-light);
}

.about-stat-card__label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-white);
}

.about-stat-card__desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 0.2rem;
}

/* Location badge */
.about-location-badge {
  background: var(--dark-3);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 1rem clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-location-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.2);
  animation: badge-pulse 2.5s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(201,168,76,0.2); }
  50%       { box-shadow: 0 0 0 6px rgba(201,168,76,0.06); }
}

.about-location-badge__text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.about-location-badge__text strong {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--off-white);
  letter-spacing: 0.05em;
}

.about-location-badge__text span {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ======================================
   ABOUT STORY — BREAKPOINTS
====================================== */
@media (max-width: 900px) {
  .about-story__inner {
    grid-template-columns: 1fr;
  }

  .about-story__right {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .about-stat-card {
    flex: 1 1 calc(50% - 1px);
    min-width: 160px;
  }

  .about-location-badge {
    flex: 1 1 100%;
  }
}

@media (max-width: 540px) {
  .about-stat-card {
    flex: 1 1 100%;
  }
}

/* ======================================
   ABOUT PAGE — TEAM SECTION
====================================== */
.about-team {
  background: var(--dark-2);
}

.about-team .section-header {
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.5vw, 1.75rem);
}

.team-card {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.08);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.team-card:hover {
  border-color: rgba(201,168,76,0.28);
  transform: translateY(-4px);
}

.team-card__avatar {
  width: clamp(56px, 8vw, 76px);
  height: clamp(56px, 8vw, 76px);
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 0.5rem;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.team-card:hover .team-card__avatar {
  background: rgba(201,168,76,0.16);
  border-color: var(--gold);
}

.team-card__name {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--off-white);
  line-height: 1.2;
  margin: 0;
}

.team-card__role {
  font-size: 0.72rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.team-card__bio {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 0.25rem;
}

/* ======================================
   TEAM SECTION — BREAKPOINTS
====================================== */
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .team-card {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .team-card__avatar {
    margin-bottom: 0;
  }
}

/* ======================================
   SERVICES PAGE — HERO
====================================== */
.svc-hero {
  position: relative;
  background: var(--dark);
  padding-block: calc(clamp(3rem, 8vw, 6rem) + 4.5rem) clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.svc-hero__orb {
  position: absolute;
  top: -20%;
  right: -8%;
  width: clamp(280px, 45vw, 580px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}

.svc-hero__inner {
  position: relative;
  z-index: 1;
}

.svc-hero__heading {
  color: var(--off-white);
  max-width: 20ch;
  margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
  line-height: 1.05;
}

.svc-hero__heading--italic {
  font-style: italic;
  color: var(--gold);
}

.svc-hero__sub {
  max-width: 52ch;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--muted);
  line-height: 1.75;
}

/* ======================================
   SERVICES NAV STRIP
====================================== */
.svc-nav {
  position: sticky;
  top: 4.5rem; /* sits just below the fixed site header */
  z-index: 90;
  background: var(--dark-2);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  overflow-x: auto;
  scrollbar-width: none;
}

.svc-nav::-webkit-scrollbar { display: none; }

.svc-nav__inner {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding-block: 0.75rem;
  white-space: nowrap;
}

.svc-nav__pill {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.5rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 100px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.svc-nav__pill:hover {
  color: var(--off-white);
  border-color: rgba(201,168,76,0.2);
}

.svc-nav__pill.is-active {
  color: var(--dark);
  background: var(--gold);
  border-color: var(--gold);
}

/* ======================================
   SERVICE SECTIONS
====================================== */
.svc-section {
  padding-block: clamp(4rem, 9vw, 8rem);
  background: var(--dark);
}

.svc-section--alt {
  background: var(--dark-2);
}

.svc-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

/* visual left, text right */
.svc-section__inner--normal .svc-section__visual { order: 1; }
.svc-section__inner--normal .svc-section__body   { order: 2; }

/* text left, visual right */
.svc-section__inner--reversed .svc-section__body   { order: 1; }
.svc-section__inner--reversed .svc-section__visual { order: 2; }

.svc-section__body h2 {
  color: var(--off-white);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.svc-section__body > p {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Deliverables list */
.svc-deliverables {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-block: 1.5rem 2rem;
}

.svc-deliverables li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--off-white);
  line-height: 1.5;
}

.svc-deliverables li::before {
  content: '';
  display: block;
  width: 1.2rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.6em;
}

/* ======================================
   VISUAL PLACEHOLDER BLOCKS
====================================== */
.svc-section__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-visual-block {
  width: 100%;
  max-width: 440px;
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.12);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

/* Faint corner accent */
.svc-visual-block::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 6rem; height: 6rem;
  background: radial-gradient(circle at top right, rgba(201,168,76,0.08), transparent 70%);
  pointer-events: none;
}

.svc-visual-block__num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.6;
}

.svc-visual-block__label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding-top: 1rem;
}

/* Generic horizontal lines (Brand Strategy, SEO) */
.svc-visual-block__lines {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.svc-visual-block__lines span {
  display: block;
  height: 6px;
  background: rgba(201,168,76,0.18);
  border-radius: 3px;
  width: 100%;
}

.svc-visual-block__lines span:first-child { background: rgba(201,168,76,0.5); }
.svc-visual-block__lines span:nth-child(2) { width: 75%; }
.svc-visual-block__lines span:nth-child(3) { width: 85%; }

/* Browser mockup (Web Design) */
.svc-visual-block__browser {
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  overflow: hidden;
}

.svc-visual-block__browser-bar {
  background: rgba(201,168,76,0.06);
  padding: 0.5rem 0.75rem;
  display: flex;
  gap: 0.35rem;
  align-items: center;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.svc-visual-block__browser-bar span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201,168,76,0.25);
}

.svc-visual-block__browser-body {
  padding: 1.25rem;
}

/* Bar chart (SEO) */
.svc-visual-block__chart {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  height: 80px;
}

.svc-visual-block__chart span {
  flex: 1;
  background: rgba(201,168,76,0.2);
  border-radius: 2px 2px 0 0;
  transition: background 0.2s;
}

.svc-visual-block__chart span:last-child { background: var(--gold); }

/* Metrics (Paid Ads) */
.svc-visual-block__metrics {
  display: flex;
  gap: 1rem;
}

.svc-visual-block__metric {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 0.75rem;
  text-align: center;
}

.metric-val {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}

.metric-lbl {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* 2×2 grid (Social Media) */
.svc-visual-block__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.svc-visual-block__grid span {
  display: block;
  aspect-ratio: 1;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 2px;
}

.svc-visual-block__grid span:first-child { background: rgba(201,168,76,0.22); }

/* Flow nodes (AI) */
.svc-visual-block__nodes {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.svc-node {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(201,168,76,0.15);
  background: rgba(201,168,76,0.04);
}

.svc-node--active {
  color: var(--dark);
  background: var(--gold);
  border-color: var(--gold);
}

.svc-node-arrow {
  color: var(--gold);
  font-size: 1rem;
  opacity: 0.6;
}

/* ======================================
   BOTTOM CTA BANNER
====================================== */
.svc-cta-banner {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.svc-cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.svc-cta-banner__text h2 {
  color: var(--off-white);
  margin-bottom: 0.5rem;
}

.svc-cta-banner__text p {
  color: var(--muted);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  max-width: 44ch;
}

/* ======================================
   SERVICES PAGE — BREAKPOINTS
====================================== */
@media (max-width: 900px) {
  .svc-section__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .svc-section__inner--normal .svc-section__visual,
  .svc-section__inner--reversed .svc-section__visual {
    order: 1;
  }

  .svc-section__inner--normal .svc-section__body,
  .svc-section__inner--reversed .svc-section__body {
    order: 2;
  }

  .svc-visual-block {
    max-width: 100%;
  }

  .svc-cta-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .svc-hero__heading {
    font-size: clamp(2.4rem, 9vw, 3.2rem);
  }

  .svc-visual-block__metrics {
    flex-direction: column;
  }

  .svc-nav__inner {
    gap: 0.15rem;
  }
}

/* ======================================
   CONTACT PAGE — HERO
====================================== */
.cpage-hero {
  position: relative;
  background: var(--dark);
  padding-block: calc(clamp(3rem, 8vw, 6rem) + 4.5rem) clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.cpage-hero__orb {
  position: absolute;
  top: -20%;
  right: -8%;
  width: clamp(260px, 42vw, 540px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}

.cpage-hero__inner {
  position: relative;
  z-index: 1;
}

.cpage-hero__heading {
  color: var(--off-white);
  max-width: 22ch;
  margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
  line-height: 1.05;
}

.cpage-hero__heading--italic {
  font-style: italic;
  color: var(--gold);
}

.cpage-hero__sub {
  max-width: 48ch;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--muted);
  line-height: 1.75;
}

/* ======================================
   CONTACT PAGE — MAIN SECTION
====================================== */
.cpage-main {
  background: var(--dark);
}

.cpage-main__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

/* Info column */
.cpage-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 6rem;
}

.cpage-info__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cpage-info__item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

.cpage-info__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cpage-info__label {
  font-size: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.cpage-info__value {
  font-size: 1rem;
  color: var(--off-white);
  line-height: 1.5;
  transition: color 0.2s;
}

a.cpage-info__value:hover {
  color: var(--gold-light);
}

/* WhatsApp button */
.cpage-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 1.75rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}

.cpage-whatsapp-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.cpage-whatsapp-btn__icon {
  flex-shrink: 0;
  color: var(--dark);
}

/* Social buttons row */
.cpage-socials {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.cpage-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(201,168,76,0.2);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.cpage-social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.07);
}

/* Response time note */
.cpage-info__note {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  padding-top: 0.5rem;
}

/* Form column */
.cpage-form-wrap {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.1);
  padding: clamp(2rem, 4vw, 3rem);
}

/* ======================================
   CONTACT PAGE — FAQ STRIP
====================================== */
.cpage-faq {
  background: var(--dark-2);
}

.cpage-faq__heading {
  color: var(--off-white);
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(201,168,76,0.12);
}

.faq-item {
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 700;
  color: var(--off-white);
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: none;
  transition: color 0.2s;
}

.faq-item__trigger:hover {
  color: var(--gold-light);
}

.faq-item__trigger[aria-expanded="true"] {
  color: var(--gold);
}

/* Plus/minus icon */
.faq-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  position: relative;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* horizontal bar */
.faq-item__icon::before {
  width: 14px;
  height: 1.5px;
}

/* vertical bar — becomes hidden when open */
.faq-item__icon::after {
  width: 1.5px;
  height: 14px;
}

.faq-item__trigger[aria-expanded="true"] .faq-item__icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

/* Answer body */
.faq-item__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-item__body > p {
  overflow: hidden;
  padding-bottom: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  transition: padding-bottom 0.35s ease;
}

.faq-item.is-open .faq-item__body {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-item__body > p {
  padding-bottom: 1.5rem;
}

/* ======================================
   CONTACT PAGE — BREAKPOINTS
====================================== */
@media (max-width: 900px) {
  .cpage-main__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cpage-info {
    position: static;
  }
}

@media (max-width: 480px) {
  .cpage-hero__heading {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  .cpage-whatsapp-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ======================================
   HERO — RIGHT-SIDE IMAGE
====================================== */
.hero--has-image .hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(3rem, 5vw, 5rem);
}

/* Keep all text children in column 1 */
.hero--has-image .eyebrow,
.hero--has-image .hero__headline,
.hero--has-image .hero__desc,
.hero--has-image .hero__actions,
.hero--has-image .hero__stats {
  grid-column: 1;
}

.hero__image-wrap {
  grid-column: 2;
  grid-row: 1 / 6;
  position: relative;
  align-self: stretch;
  min-height: 480px;
  overflow: hidden;
}

/* Gold border frame */
.hero__image-wrap::before {
  content: '';
  position: absolute;
  inset: 1rem 0 0 1rem;
  border: 1px solid rgba(201,168,76,0.3);
  z-index: 0;
  pointer-events: none;
}

.hero__image {
  position: absolute;
  inset: 0 1rem 1rem 0;
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 900px) {
  .hero--has-image .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__image-wrap {
    display: none;
  }
}

/* ======================================
   TEAM CARD — PHOTO
====================================== */
.team-card__photo {
  width: clamp(56px, 8vw, 76px);
  height: clamp(56px, 8vw, 76px);
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(201,168,76,0.3);
  display: block;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.team-card:hover .team-card__photo {
  border-color: var(--gold);
}
