/* ============================================================
   HIGHWAY 1 DIGITAL — V8 ART DECO
   Palette: Near-black #0e0e0e, Emerald #0a3d2e, Gold #c9a84c, Cream #f5f0e8
   Fonts: Poiret One (display) + Raleway (body)
   ============================================================ */

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

:root {
  --black: #0e0e0e;
  --emerald: #0a3d2e;
  --emerald-light: #0f5a42;
  --emerald-dark: #072b1f;
  --gold: #c9a84c;
  --gold-light: #f5deb3;
  --gold-dark: #a08636;
  --cream: #f5f0e8;
  --cream-dark: #e8e0d0;
  --white: #faf8f4;

  --gold-gradient: linear-gradient(135deg, #c9a84c 0%, #f5deb3 50%, #c9a84c 100%);
  --gold-gradient-subtle: linear-gradient(135deg, #c9a84c 0%, #d4b65c 50%, #c9a84c 100%);

  --font-display: 'Poiret One', cursive;
  --font-body: 'Raleway', sans-serif;

  --container: 1140px;
  --container-narrow: 900px;
  --gap: 2rem;
  --section-pad: 6rem 2rem;
  --section-pad-sm: 4rem 1.5rem;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--cream);
  background: var(--black);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--gold);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
  margin-bottom: 1rem;
  font-weight: 300;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 2rem;
}


/* ── DECORATIVE ELEMENTS ──────────────────────────────────── */

/* Gold thin divider line */
.gold-divider {
  width: 80px;
  height: 1px;
  background: var(--gold-gradient);
  margin: 1.5rem auto;
  position: relative;
}

.gold-divider::before {
  content: '\25C6';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  font-size: 0.6rem;
  background: var(--black);
  padding: 0 8px;
}

/* Deco frame around sections */
.deco-frame {
  position: relative;
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 3rem;
}

.deco-frame::before,
.deco-frame::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--gold);
}

.deco-frame::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.deco-frame::after {
  top: -1px;
  right: -1px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.deco-frame-bottom::before,
.deco-frame-bottom::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
}

.deco-frame-bottom::before {
  bottom: -1px;
  left: -1px;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.deco-frame-bottom::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

/* Corner diamond embellishment */
.deco-corner {
  position: relative;
}

.deco-corner::before {
  content: '\25C6';
  position: absolute;
  top: -6px;
  left: -6px;
  color: var(--gold);
  font-size: 0.5rem;
}

.deco-corner::after {
  content: '\25C6';
  position: absolute;
  top: -6px;
  right: -6px;
  color: var(--gold);
  font-size: 0.5rem;
}

/* Section chevron divider */
.deco-chevron-divider {
  text-align: center;
  padding: 2rem 0;
  overflow: hidden;
}

.deco-chevron-divider svg {
  width: 100%;
  max-width: 600px;
  height: 30px;
}

/* Animated line */
.line-draw {
  width: 0;
  height: 1px;
  background: var(--gold-gradient);
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin: 1.5rem auto;
}

.line-draw.visible {
  width: 120px;
}

.line-draw-wide.visible {
  width: 100%;
}

/* Chevron background pattern */
.chevron-bg {
  background-color: var(--emerald-dark);
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(201, 168, 76, 0.04) 20px,
      rgba(201, 168, 76, 0.04) 21px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 20px,
      rgba(201, 168, 76, 0.04) 20px,
      rgba(201, 168, 76, 0.04) 21px
    );
}

/* Diamond grid pattern */
.diamond-bg {
  background-color: var(--black);
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 30px,
      rgba(201, 168, 76, 0.03) 30px,
      rgba(201, 168, 76, 0.03) 31px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 30px,
      rgba(201, 168, 76, 0.03) 30px,
      rgba(201, 168, 76, 0.03) 31px
    );
}

/* Fan arc pattern */
.fan-bg {
  background-color: var(--emerald);
  background-image:
    radial-gradient(circle at 0% 100%, transparent 60%, rgba(201, 168, 76, 0.05) 60%, rgba(201, 168, 76, 0.05) 61%, transparent 61%),
    radial-gradient(circle at 100% 100%, transparent 60%, rgba(201, 168, 76, 0.05) 60%, rgba(201, 168, 76, 0.05) 61%, transparent 61%),
    radial-gradient(circle at 50% 100%, transparent 60%, rgba(201, 168, 76, 0.05) 60%, rgba(201, 168, 76, 0.05) 61%, transparent 61%);
  background-size: 120px 120px;
}


/* ── FADE IN ANIMATION ────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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


/* ── NAVIGATION ───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(14, 14, 14, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: box-shadow var(--transition);
}

.deco-nav {
  padding: 0;
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  gap: 1.5rem;
  position: relative;
}

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

.nav-left {
  justify-content: flex-end;
  flex: 1;
}

.nav-right {
  justify-content: flex-start;
  flex: 1;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0.5rem 0;
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s ease 0.1s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-diamond {
  color: var(--gold);
  font-size: 0.35rem;
  opacity: 0.5;
  line-height: 1;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 1rem;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1010;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(14, 14, 14, 0.98);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: color var(--transition);
}

.mobile-link:hover,
.mobile-link.active {
  color: var(--gold);
}

.mobile-link-diamond {
  font-size: 0.5rem;
  color: var(--gold);
  opacity: 0.5;
}

.mobile-menu-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.mobile-cta {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}


/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 6rem;
}

/* Geometric chevron background pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--emerald-dark);
  background-image:
    repeating-linear-gradient(
      60deg,
      transparent,
      transparent 40px,
      rgba(201, 168, 76, 0.05) 40px,
      rgba(201, 168, 76, 0.05) 41px
    ),
    repeating-linear-gradient(
      -60deg,
      transparent,
      transparent 40px,
      rgba(201, 168, 76, 0.05) 40px,
      rgba(201, 168, 76, 0.05) 41px
    ),
    repeating-linear-gradient(
      60deg,
      transparent,
      transparent 80px,
      rgba(201, 168, 76, 0.03) 80px,
      rgba(201, 168, 76, 0.03) 82px
    ),
    repeating-linear-gradient(
      -60deg,
      transparent,
      transparent 80px,
      rgba(201, 168, 76, 0.03) 80px,
      rgba(201, 168, 76, 0.03) 82px
    );
  z-index: 0;
}

/* Decorative gold framing lines */
.hero::after {
  content: '';
  position: absolute;
  top: 60px;
  left: 40px;
  right: 40px;
  bottom: 40px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  pointer-events: none;
  z-index: 1;
}

.hero-frame {
  position: absolute;
  top: 60px;
  left: 40px;
  right: 40px;
  bottom: 40px;
  pointer-events: none;
  z-index: 1;
}

/* Corner embellishments for hero frame */
.hero-frame::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 40px;
  height: 40px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
}

.hero-frame::after {
  content: '';
  position: absolute;
  top: -4px;
  right: -4px;
  width: 40px;
  height: 40px;
  border-top: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
}

.hero-frame-bottom {
  position: absolute;
  top: 60px;
  left: 40px;
  right: 40px;
  bottom: 40px;
  pointer-events: none;
  z-index: 1;
}

.hero-frame-bottom::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: -4px;
  width: 40px;
  height: 40px;
  border-bottom: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
}

.hero-frame-bottom::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 40px;
  height: 40px;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero h1 {
  margin-bottom: 1rem;
}

.hero-divider {
  width: 80px;
  height: 1px;
  background: var(--gold-gradient);
  margin: 2rem auto;
  position: relative;
}

.hero-divider::before {
  content: '\25C6';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  font-size: 0.5rem;
  background: transparent;
  padding: 0 6px;
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--black);
}

.btn-gold:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

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

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}


/* ── PAGE HERO (inner pages) ──────────────────────────────── */
.page-hero {
  padding: 10rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--emerald-dark);
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 25px,
      rgba(201, 168, 76, 0.04) 25px,
      rgba(201, 168, 76, 0.04) 26px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 25px,
      rgba(201, 168, 76, 0.04) 25px,
      rgba(201, 168, 76, 0.04) 26px
    );
  z-index: 0;
}

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

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  color: var(--cream);
  opacity: 0.9;
}


/* ── STATS BAR ────────────────────────────────────────────── */
.stats-bar {
  background: var(--emerald);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding: 3rem 2rem;
}

.stats-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '\25C6';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.4rem;
  opacity: 0.4;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.8;
}


/* ── SECTION STYLES ───────────────────────────────────────── */
.section {
  padding: var(--section-pad);
  position: relative;
}

.section-dark {
  background: var(--black);
}

.section-emerald {
  background: var(--emerald);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.85;
}

/* Section deco frame wrapper */
.section-framed {
  position: relative;
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 4rem 3rem;
  margin: 0 auto;
  max-width: var(--container);
}

.section-framed::before,
.section-framed::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
}

.section-framed::before {
  top: -2px;
  left: -2px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.section-framed::after {
  top: -2px;
  right: -2px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

/* Bottom corners for framed sections */
.section-framed > .frame-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  pointer-events: none;
}

.section-framed > .frame-bottom::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: -2px;
  width: 24px;
  height: 24px;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.section-framed > .frame-bottom::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 24px;
  height: 24px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}


/* ── SERVICES CARDS ───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--container);
  margin: 0 auto;
}

.service-card {
  position: relative;
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 3rem 2rem 2.5rem;
  text-align: center;
  background: rgba(10, 61, 46, 0.15);
  transition: all var(--transition);
}

/* Corner embellishments */
.service-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 16px;
  height: 16px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.service-card::after {
  content: '';
  position: absolute;
  top: -1px;
  right: -1px;
  width: 16px;
  height: 16px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.service-card:hover {
  background: rgba(10, 61, 46, 0.3);
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-4px);
}

.service-card-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  pointer-events: none;
}

.service-card-bottom::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: -1px;
  width: 16px;
  height: 16px;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.service-card-bottom::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 16px;
  height: 16px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.service-card p {
  font-size: 0.95rem;
  opacity: 0.85;
}

.service-features {
  list-style: none;
  margin-top: 1.5rem;
  text-align: left;
}

.service-features li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  font-weight: 300;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.service-features li::before {
  content: '\25C6';
  color: var(--gold);
  font-size: 0.4rem;
  flex-shrink: 0;
}


/* ── IMAGE FRAME ──────────────────────────────────────────── */
.deco-image-frame {
  position: relative;
  display: inline-block;
}

.deco-image-frame img {
  display: block;
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 4px;
}

.deco-image-frame::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  width: 16px;
  height: 16px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  z-index: 2;
}

.deco-image-frame::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 16px;
  height: 16px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  z-index: 2;
}


/* ── PORTFOLIO / WORK ─────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: var(--container);
  margin: 0 auto;
}

.portfolio-card {
  position: relative;
  border: 1px solid rgba(201, 168, 76, 0.2);
  overflow: hidden;
  background: rgba(10, 61, 46, 0.1);
  transition: all var(--transition);
}

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

.portfolio-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 20px;
  height: 20px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  z-index: 2;
}

.portfolio-card::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  z-index: 2;
}

.portfolio-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.portfolio-body {
  padding: 2rem;
}

.portfolio-category {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.portfolio-body h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.portfolio-body p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.portfolio-stats {
  display: flex;
  gap: 1.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding-top: 1.25rem;
}

.portfolio-stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1.1;
}

.portfolio-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 0.15rem;
}

.portfolio-tags {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.portfolio-tag {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 0.25rem 0.75rem;
  color: var(--gold);
  opacity: 0.8;
}


/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-section {
  padding: var(--section-pad);
  background: var(--emerald);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: var(--container);
  margin: 0 auto;
}

.testimonial-card {
  position: relative;
  padding: 2.5rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: rgba(14, 14, 14, 0.2);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 16px;
  height: 16px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 16px;
  height: 16px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.4;
  margin-bottom: -1rem;
}

.testimonial-text {
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--cream);
}

.testimonial-author {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gold);
}

.testimonial-title {
  font-size: 0.75rem;
  opacity: 0.7;
}


/* ── PRICING ──────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--container);
  margin: 0 auto;
  align-items: start;
}

.pricing-card {
  position: relative;
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 3rem 2rem;
  text-align: center;
  background: rgba(10, 61, 46, 0.1);
  transition: all var(--transition);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 20px;
  height: 20px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.pricing-card::after {
  content: '';
  position: absolute;
  top: -1px;
  right: -1px;
  width: 20px;
  height: 20px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.pricing-card-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  pointer-events: none;
}

.pricing-card-bottom::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: -1px;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.pricing-card-bottom::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.pricing-card.featured {
  border-color: var(--gold);
  background: rgba(10, 61, 46, 0.25);
  transform: scale(1.03);
}

.pricing-card.featured::before,
.pricing-card.featured::after {
  width: 28px;
  height: 28px;
  border-width: 3px;
}

.pricing-card.featured .pricing-card-bottom::before,
.pricing-card.featured .pricing-card-bottom::after {
  width: 28px;
  height: 28px;
  border-width: 3px;
}

.pricing-banner {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 2rem;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 8% 100%);
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1.1;
}

.pricing-period {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.pricing-tagline {
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.85;
  min-height: 2.5em;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding-top: 1.5rem;
}

.pricing-features li {
  padding: 0.4rem 0;
  font-size: 0.85rem;
  font-weight: 300;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.pricing-features li::before {
  content: '\25C6';
  color: var(--gold);
  font-size: 0.35rem;
  flex-shrink: 0;
}

.pricing-cta {
  margin-top: auto;
}


/* ── ADDONS ───────────────────────────────────────────────── */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--container);
  margin: 3rem auto 0;
}

.addon-card {
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 2rem;
  text-align: center;
}

.addon-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.addon-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.addon-desc {
  font-size: 0.85rem;
  opacity: 0.8;
}


/* ── ABOUT PAGE ───────────────────────────────────────────── */
.about-story {
  max-width: var(--container-narrow);
  margin: 0 auto;
  text-align: center;
}

.about-story .initial-cap::first-letter {
  font-family: var(--font-display);
  font-size: 4rem;
  float: left;
  line-height: 0.8;
  padding-right: 0.5rem;
  color: var(--gold);
  margin-top: 0.1rem;
}

.about-story p {
  font-size: 1.1rem;
  line-height: 1.9;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: var(--container);
  margin: 0 auto;
}

.value-card {
  position: relative;
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 2.5rem 2rem;
  background: rgba(10, 61, 46, 0.1);
}

.value-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 14px;
  height: 14px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 14px;
  height: 14px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.value-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.value-card p {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: var(--container);
  margin: 0 auto;
}

.team-card {
  text-align: center;
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 2rem 1.5rem;
  position: relative;
  background: rgba(10, 61, 46, 0.1);
}

.team-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.team-card::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 12px;
  height: 12px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  margin: 0 auto 1.25rem;
  object-fit: cover;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}


/* ── CONTACT FORM ─────────────────────────────────────────── */
.contact-wrapper {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.contact-frame {
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 3rem;
  position: relative;
}

.contact-frame::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 28px;
  height: 28px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
}

.contact-frame::after {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  width: 28px;
  height: 28px;
  border-top: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
}

.contact-frame-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  pointer-events: none;
}

.contact-frame-bottom::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: -2px;
  width: 28px;
  height: 28px;
  border-bottom: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
}

.contact-frame-bottom::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 28px;
  height: 28px;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: var(--cream);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201, 168, 76, 0.4);
  padding: 0.75rem 0;
  transition: border-color var(--transition);
  outline: none;
}

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

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

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--black);
  color: var(--cream);
}

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

.contact-info {
  max-width: 640px;
  margin: 3rem auto 0;
  text-align: center;
}

.contact-info p {
  font-size: 0.9rem;
  opacity: 0.8;
}

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


/* ── INDUSTRIES ───────────────────────────────────────────── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}

.industry-card {
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
}

.industry-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  background: rgba(10, 61, 46, 0.15);
}

.industry-card h4 {
  margin-bottom: 0.5rem;
}

.industry-card p {
  font-size: 0.85rem;
  opacity: 0.8;
}


/* ── CTA BAND ─────────────────────────────────────────────── */
.cta-band {
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--emerald);
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 30px,
      rgba(201, 168, 76, 0.04) 30px,
      rgba(201, 168, 76, 0.04) 31px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 30px,
      rgba(201, 168, 76, 0.04) 30px,
      rgba(201, 168, 76, 0.04) 31px
    );
  z-index: 0;
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  margin-bottom: 1rem;
}

.cta-band p {
  max-width: 500px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  opacity: 0.9;
}


/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  position: relative;
}

.deco-divider-top {
  overflow: hidden;
}

.deco-divider-top svg {
  width: 100%;
  height: 24px;
  display: block;
}

.deco-zigzag {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: zigzagDraw 3s ease forwards;
}

@keyframes zigzagDraw {
  to { stroke-dashoffset: 0; }
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-logo {
  width: 140px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--cream);
  opacity: 0.7;
  transition: all var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer-contact p {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 0.25rem;
}

.footer-contact a {
  color: var(--cream);
  opacity: 0.7;
}

.footer-contact a:hover {
  color: var(--gold);
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--cream);
  opacity: 0.6;
  border: 1px solid rgba(201, 168, 76, 0.2);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.social-links a:hover {
  opacity: 1;
  color: var(--gold);
  border-color: var(--gold);
}

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

.footer-bottom p {
  font-size: 0.75rem;
  opacity: 0.5;
  letter-spacing: 0.05em;
}


/* ── SVG LINE DRAW ANIMATION ──────────────────────────────── */
.svg-line-draw path,
.svg-line-draw line,
.svg-line-draw polyline,
.svg-line-draw rect,
.svg-line-draw circle {
  stroke-dasharray: var(--dash-length, 1000);
  stroke-dashoffset: var(--dash-length, 1000);
  transition: stroke-dashoffset 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.svg-line-draw.visible path,
.svg-line-draw.visible line,
.svg-line-draw.visible polyline,
.svg-line-draw.visible rect,
.svg-line-draw.visible circle {
  stroke-dashoffset: 0;
}


/* ── DECO ORNAMENT SVG (section dividers) ─────────────────── */
.deco-ornament {
  text-align: center;
  padding: 1rem 0;
}

.deco-ornament svg {
  width: 200px;
  height: 30px;
}


/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid,
  .pricing-grid,
  .addons-grid,
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

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

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

  .stat-item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 4rem 1.5rem;
  }

  /* Nav: show hamburger, hide desktop links */
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-inner {
    justify-content: space-between;
  }

  .nav-logo {
    padding: 0;
  }

  /* Hero adjustments */
  .hero {
    min-height: 90vh;
    padding: 7rem 1.5rem 4rem;
  }

  .hero::after {
    top: 70px;
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .hero-frame,
  .hero-frame-bottom {
    top: 70px;
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Grids to single column */
  .services-grid,
  .portfolio-grid,
  .pricing-grid,
  .testimonial-grid,
  .values-grid,
  .addons-grid,
  .industries-grid {
    grid-template-columns: 1fr;
  }

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

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

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-logo {
    margin: 0 auto 1rem;
  }

  /* Pricing featured scale reset */
  .pricing-card.featured {
    transform: none;
  }

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

  .contact-frame {
    padding: 2rem 1.5rem;
  }

  .section-framed {
    padding: 2.5rem 1.5rem;
  }

  /* Page hero */
  .page-hero {
    padding: 8rem 1.5rem 3rem;
  }
}

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

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .stat-item::after {
    display: none;
  }

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

  .hero-frame::before,
  .hero-frame::after,
  .hero-frame-bottom::before,
  .hero-frame-bottom::after {
    width: 24px;
    height: 24px;
    border-width: 2px;
  }
}


/* ============================================================
   NEW PAGE COMPONENTS — Features, Process, FAQ, Case Study
   ============================================================ */

/* ── FEATURES GRID ───────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--container);
  margin: 0 auto;
}

.feature-card {
  position: relative;
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 2.5rem 2rem;
  background: rgba(10, 61, 46, 0.12);
  transition: all var(--transition);
}

/* Art Deco corner ornaments */
.feature-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 14px;
  height: 14px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 14px;
  height: 14px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.feature-card:hover {
  background: rgba(10, 61, 46, 0.25);
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-4px);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.92rem;
  opacity: 0.82;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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


/* ── PROCESS GRID ────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: var(--container);
  margin: 0 auto;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.1);
  background: rgba(10, 61, 46, 0.1);
}

.process-step::after {
  content: '\25B6';
  position: absolute;
  right: -1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.6rem;
  opacity: 0.4;
}

.process-step:last-child::after {
  display: none;
}

.process-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.6;
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.88rem;
  opacity: 0.8;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-step:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-step::after {
    display: none;
  }
}


/* ── FAQ ACCORDION ───────────────────────────────────────── */
.faq-list {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

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

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

.faq-question {
  display: block;
  width: 100%;
  padding: 1.5rem 2.5rem 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  cursor: pointer;
  position: relative;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  display: none;
  content: '';
}

/* Diamond toggle indicator */
.faq-question::after {
  content: '\25C6';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.6rem;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-answer {
  padding: 0 0 1.5rem 0;
}

.faq-answer p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.75;
}


/* ── CASE STUDY ──────────────────────────────────────────── */
.case-study {
  max-width: var(--container-narrow);
  margin: 0 auto;
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 3rem;
  position: relative;
  background: rgba(10, 61, 46, 0.08);
}

/* Deco corner ornaments */
.case-study::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 20px;
  height: 20px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.case-study::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.case-study-block {
  margin-bottom: 2rem;
}

.case-study-block h3 {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.case-study-block p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.7;
}

.case-study-results {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.case-study-results h3 {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.case-study-results ul {
  list-style: none;
}

.case-study-results li {
  padding: 0.4rem 0;
  font-size: 0.95rem;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.case-study-results li::before {
  content: '\25C6';
  color: var(--gold);
  font-size: 0.4rem;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .case-study {
    padding: 2rem 1.5rem;
  }
}


/* ── RESULTS PAGE: FULL CASE STUDIES ─────────────────────── */
.case-study-full {
  max-width: var(--container);
  margin: 0 auto 3rem;
  border: 1px solid rgba(201, 168, 76, 0.15);
  background: rgba(10, 61, 46, 0.08);
  position: relative;
}

.case-study-full::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 20px;
  height: 20px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.case-study-full::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.case-study-header {
  padding: 2rem 3rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.case-study-header h3 {
  font-size: 1.8rem;
  color: var(--gold);
  margin: 0;
}

.case-study-meta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.case-study-industry {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.2rem 0.8rem;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.case-study-tags {
  font-size: 0.8rem;
  color: var(--cream);
  opacity: 0.6;
}

.case-study-full .case-study-body {
  padding: 2.5rem 3rem;
}

.case-study-full .case-study-block {
  margin-bottom: 1.5rem;
}

.case-study-full .case-study-block h4 {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.case-study-full .case-study-block p {
  font-size: 0.95rem;
  opacity: 0.82;
  line-height: 1.7;
}

.case-study-results-row {
  display: flex;
  gap: 3rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  margin: 1.5rem 0;
}

.case-study-stat {
  text-align: center;
}

.case-study-stat .stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.case-study-stat .stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

.case-study-testimonial {
  padding-top: 1.5rem;
  position: relative;
}

.case-study-testimonial p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.case-study-testimonial cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--gold);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .case-study-header,
  .case-study-full .case-study-body {
    padding: 1.5rem;
  }

  .case-study-results-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .case-study-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}


/* ── MOBILE MENU SECTIONS ────────────────────────────────── */
.mobile-menu-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.mobile-menu-heading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  text-align: center;
  opacity: 0.6;
}

.mobile-link-sub {
  font-size: 1.2rem;
  gap: 0;
}

.mobile-link-sub::before {
  content: '\25C6';
  font-size: 0.3rem;
  margin-right: 0.5rem;
  opacity: 0.4;
}


/* ── FOOTER LINKS (vertical) ────────────────────────────── */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--cream);
  opacity: 0.6;
  transition: opacity var(--transition), color var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--gold);
}
