/* ============================================================
   StatusSymbol House of Printing Co.
   Light Ivory Prestige Design System
   ============================================================ */

/* ── Custom Properties ── */
:root {
  /* Light Backgrounds — warm ivory scale */
  --bg-white: #FFFFFF;
  --bg-1: #FDFCF8;
  /* hero / main base */
  --bg-2: #FAF7F2;
  /* alternating sections */
  --bg-3: #F5F0E8;
  /* deeper cream */
  --bg-4: #EDE5D5;
  /* warmest cream */
  --bg-dark: #0C1835;
  /* navy — footer + 1 accent section */
  --bg-darkest: #08112A;

  /* Gold */
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-bright: #F0D060;
  --gold-dark: #8B6914;
  --gold-pale: rgba(201, 168, 76, 0.09);
  --gold-glow: rgba(201, 168, 76, 0.22);

  /* Text */
  --navy: #0C1835;
  --navy-2: #1B2D5A;
  --navy-3: #243660;
  --text-muted: #6B7A9A;
  --text-light: rgba(12, 24, 53, 0.55);

  /* On dark sections */
  --cream: #EDE8DC;
  --cream-muted: rgba(237, 232, 220, 0.55);

  /* Borders */
  --border: rgba(12, 24, 53, 0.08);
  --border-mid: rgba(12, 24, 53, 0.14);
  --border-gold: rgba(201, 168, 76, 0.25);
  --border-gold-h: rgba(201, 168, 76, 0.55);

  /* Fonts */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Cinzel', serif;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows — warm, soft */
  --shadow-sm: 0 2px 12px rgba(12, 24, 53, 0.07);
  --shadow-md: 0 8px 32px rgba(12, 24, 53, 0.10);
  --shadow-lg: 0 20px 60px rgba(12, 24, 53, 0.14);
  --shadow-gold: 0 8px 40px rgba(201, 168, 76, 0.22);
  --glow-gold: 0 0 60px rgba(201, 168, 76, 0.15);

  --radius: 12px;
  --radius-lg: 20px;
  --pad: 120px;
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--bg-1);
  color: var(--navy);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

input,
select,
textarea {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Noise Overlay ── */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px;
}

/* ── Utilities ── */
.gold-text {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

em {
  font-style: italic;
  color: var(--gold-dark);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

/* Section tag on dark background */
.dark-section .section-tag {
  color: var(--gold);
}

.dark-section .section-tag::before,
.dark-section .section-tag::after {
  background: var(--gold);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--navy);
}

.section-title.left {
  text-align: left;
}

.dark-section .section-title {
  color: var(--cream);
}

.dark-section em {
  color: var(--gold-light);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

.dark-section .section-desc {
  color: var(--cream-muted);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  z-index: -1;
}

.btn:hover::before {
  transform: translateY(0);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.32);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(201, 168, 76, 0.42), var(--glow-gold);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(12, 24, 53, 0.25);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

/* Ghost on dark bg / Hero */
.dark-section .btn-ghost,
.hero .btn-ghost {
  color: var(--cream);
  border-color: rgba(237, 232, 220, 0.3);
}

.dark-section .btn-ghost:hover,
.hero .btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 0.88rem;
}

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

/* ============================================================
   CUSTOM CURSOR
============================================================ */
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
}

.cursor-ring {
  position: absolute;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--spring), height 0.35s var(--spring),
    border-color 0.3s, background 0.3s, opacity 0.3s;
  will-change: transform;
}

.cursor-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--navy);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
  will-change: transform;
}

body.cursor-hover .cursor-ring {
  width: 52px;
  height: 52px;
  background: rgba(201, 168, 76, 0.08);
  border-color: var(--gold);
}

body.cursor-hover .cursor-dot {
  opacity: 0;
}

/* ============================================================
   PAGE LOADER
============================================================ */
#pageLoader {
  position: fixed;
  inset: 0;
  background: var(--bg-1);
  z-index: 99997;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

#pageLoader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.loader-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  animation: loaderPulse 1.5s ease-in-out infinite;
  filter: drop-shadow(0 4px 20px rgba(201, 168, 76, 0.35));
}

.loader-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
}

.loader-sub {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: -6px;
}

.loader-bar {
  width: 160px;
  height: 1px;
  background: rgba(12, 24, 53, 0.1);
  margin-top: 12px;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  width: 0%;
  transition: width 0.05s linear;
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.navbar.scrolled {
  background: rgba(253, 252, 248, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
  padding: 12px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(201, 168, 76, 0.3));
  transition: filter 0.3s;
}

.nav-logo:hover .logo-img {
  filter: drop-shadow(0 4px 16px rgba(201, 168, 76, 0.55));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.08em;
  transition: color 0.4s var(--ease);
}

.navbar.scrolled .logo-name {
  color: var(--navy);
}

.logo-sub {
  font-size: 0.58rem;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.4s var(--ease);
}

.navbar.scrolled .logo-sub {
  color: var(--gold-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.nav-link {
  color: rgba(237, 232, 220, 0.8);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.3s;
  position: relative;
}

.navbar.scrolled .nav-link {
  color: var(--text-muted);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

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

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--navy);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 12px;
  padding: 10px 22px;
  font-size: 0.78rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: 0.35s var(--ease);
}

.navbar.scrolled .hamburger span {
  background: var(--navy);
}

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

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

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

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-1);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero_bg_1772768078528.png') center/cover no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 17, 42, 0.85) 0%, rgba(12, 24, 53, 0.65) 100%);
  mix-blend-mode: multiply;
}

.hero-grid-lines {
  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: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  z-index: 1;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-glow--1 {
  width: 600px;
  height: 600px;
  left: -8%;
  top: -15%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.10), transparent 65%);
  animation: glowDrift 11s ease-in-out infinite alternate;
}

.hero-glow--2 {
  width: 500px;
  height: 500px;
  right: -10%;
  bottom: -10%;
  background: radial-gradient(circle, rgba(12, 24, 53, 0.07), transparent 65%);
  animation: glowDrift 14s ease-in-out infinite alternate-reverse;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-watermark {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 20vw, 240px);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(12, 24, 53, 0.04);
  letter-spacing: 0.1em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 140px 28px 100px;
  max-width: 900px;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 36px;
}

.hero-line-left,
.hero-line-right {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.hero-line-right {
  background: linear-gradient(to left, transparent, var(--gold));
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 7.5vw, 7rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.hero-title-row {
  display: block;
}

.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 60%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--cream-muted);
  max-width: 540px;
  margin: 0 auto 44px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 68px;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: 12px;
  padding: 24px 48px;
  box-shadow: var(--shadow-md);
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(12, 24, 53, 0.2);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 6px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBob 2s ease-in-out infinite;
}

/* Hero reveal animations */
.reveal-word,
.reveal-fade {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-word:nth-child(2) {
  transition-delay: 0.15s;
}

.reveal-fade {
  transition-delay: 0.3s;
}

.hero-actions.reveal-fade {
  transition-delay: 0.45s;
}

.hero-stats.reveal-fade {
  transition-delay: 0.6s;
}

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

/* ============================================================
   MARQUEE
============================================================ */
.marquee-wrap {
  background: var(--navy);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding: 18px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 36s linear infinite;
}

.marquee-track span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(237, 232, 220, 0.6);
  padding: 0 22px;
  transition: color 0.3s;
}

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

.marquee-track .dot {
  color: var(--gold);
  font-size: 0.45rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  opacity: 0.5;
}

/* ============================================================
   CLIENTS STRIP
============================================================ */
.clients-strip {
  padding: 56px 28px 60px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.clients-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 36px 56px;
  max-width: 1100px;
  margin: 0 auto;
}

.client-logo {
  height: 40px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.5);
  transition: filter 0.35s var(--ease), transform 0.3s var(--ease);
}

.client-logo:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.1);
}

/* ============================================================
   SERVICES
============================================================ */
.services-swipe-hint {
  display: none;
}

.services {
  padding: var(--pad) 0;
  background: var(--bg-white);
  position: relative;
}

.services::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

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

.service-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.service-card::before {
  content: attr(data-num);
  position: absolute;
  bottom: -10px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(12, 24, 53, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: -webkit-text-stroke-color 0.4s;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
  border-radius: 2px 2px 0 0;
}

.service-card:hover {
  background: var(--bg-white);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--border-gold);
  transform: translateY(-4px);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card:hover::before {
  -webkit-text-stroke-color: rgba(12, 24, 53, 0.07);
}

.service-card--wide {
  grid-column: span 3;
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

.service-card--wide .service-icon {
  flex-shrink: 0;
  margin-bottom: 0;
}

.service-card--wide::before {
  font-size: 9rem;
}

.service-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  margin-bottom: 22px;
  background: rgba(201, 168, 76, 0.06);
  transition: all 0.4s var(--ease);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.service-card:hover h3 {
  color: var(--gold-dark);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 24px;
}

.service-link {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s, color 0.3s;
}

.service-link span {
  transition: transform 0.3s var(--spring);
}

.service-card:hover .service-link {
  color: var(--gold-dark);
}

.service-card:hover .service-link span {
  transform: translateX(4px);
}

/* ============================================================
   ABOUT
============================================================ */
.about {
  padding: var(--pad) 0;
  background: var(--bg-2);
  position: relative;
}

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

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  border-radius: var(--radius-lg);
  background: url('images/about_image_1772768220199.png') center/cover no-repeat;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 24, 53, 0.4);
  backdrop-filter: blur(2px);
}

.about-logo-frame {
  position: relative;
  width: 280px;
  height: 280px;
  background: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.about-logo {
  width: 210px;
  height: 210px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 12px 40px rgba(201, 168, 76, 0.3));
  animation: floatLogo 5s ease-in-out infinite;
}

.about-logo-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.22);
  animation: ringPulse 4s ease-in-out infinite;
}

.about-logo-ring--2 {
  inset: -40px;
  border-color: rgba(201, 168, 76, 0.1);
  animation-delay: 0.7s;
}

.about-logo-ring--3 {
  inset: -80px;
  border-color: rgba(201, 168, 76, 0.05);
  animation-delay: 1.4s;
}

.about-badge-float {
  position: absolute;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
}

.about-badge-float--1 {
  bottom: 30px;
  left: -10px;
  animation: float 4s ease-in-out infinite;
}

.about-badge-float--2 {
  top: 30px;
  right: -10px;
  animation: float 4s ease-in-out infinite 1s;
}

.badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}

.badge-label {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-top: 4px;
  white-space: nowrap;
}

.about-content .section-tag {
  display: inline-flex;
}

.about-content p {
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: 0.97rem;
}

.about-mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0 28px;
}

.about-mv-item {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.about-mv-item strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}

.about-mv-item p {
  font-size: 0.875rem !important;
  margin-bottom: 0 !important;
  color: var(--text-light);
  line-height: 1.7;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 28px 0 36px;
}

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

.feature-icon-sm {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}

.feature-icon-sm svg {
  width: 13px;
  height: 13px;
}

.about-feature strong {
  font-size: 0.88rem;
  color: var(--navy);
  display: block;
  margin-bottom: 2px;
  font-weight: 600;
}

.about-feature p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   WHY US
============================================================ */
.why-us {
  padding: var(--pad) 0;
  background: var(--bg-3);
  position: relative;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.why-header {
  margin-bottom: 72px;
}

.why-header .section-title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.1;
}

.why-list {
  display: flex;
  flex-direction: column;
}

.why-item {
  display: grid;
  grid-template-columns: 100px 1px 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}

.why-item:first-child {
  border-top: 1px solid var(--border);
}

.why-item:hover {
  padding-left: 16px;
  background: transparent;
}

.why-item-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(12, 24, 53, 0.15);
  line-height: 1;
  transition: -webkit-text-stroke-color 0.4s, transform 0.4s;
}

.why-item:hover .why-item-num {
  -webkit-text-stroke-color: var(--gold);
  transform: scale(1.1);
}

.why-item-line {
  width: 1px;
  height: 40px;
  background: var(--border);
  transition: background 0.4s, height 0.4s;
}

.why-item:hover .why-item-line {
  background: var(--gold);
  height: 56px;
}

.why-item-body h3 {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  transition: color 0.3s;
}

.why-item:hover .why-item-body h3 {
  color: var(--gold-dark);
}

.why-item-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 560px;
}

.why-item-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.4s var(--ease);
  flex-shrink: 0;
  background: var(--bg-white);
}

.why-item-icon svg {
  width: 20px;
  height: 20px;
}

.why-item:hover .why-item-icon {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(201, 168, 76, 0.06);
  box-shadow: var(--shadow-gold);
}

/* ============================================================
   PORTFOLIO
============================================================ */
.portfolio {
  padding: var(--pad) 0;
  background: var(--bg-2);
}

.portfolio-filter {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 8px 22px;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-mid);
  background: var(--bg-white);
  transition: all 0.3s var(--ease);
  cursor: auto;
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
}

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

.portfolio-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.portfolio-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  cursor: auto;
  background-size: cover;
  background-position: center;
}

.portfolio-thumb--1 {
  background-image: url('images/portfolio_1_1772768318856.png');
}

.portfolio-thumb--2 {
  background-image: url('images/portfolio_2_1772768343632.png');
}

.portfolio-thumb--3 {
  background-image: url('images/portfolio_3_1772768487807.png');
}

.portfolio-thumb--4 {
  background-image: url('images/portfolio_4_1772768814891.png');
}

.portfolio-thumb--5 {
  background: linear-gradient(135deg, #002040 0%, #004080 100%);
}

/* Placeholder as image failed */
.portfolio-thumb--6 {
  background: linear-gradient(135deg, #2d1500 0%, #5c2e00 50%, #8b4700 100%);
}

/* Placeholder as image failed */
.portfolio-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg,
      rgba(201, 168, 76, 0.04) 0px,
      rgba(201, 168, 76, 0.04) 1px,
      transparent 1px,
      transparent 28px);
}

.portfolio-thumb::after {
  content: 'STATUS\00d7SYMBOL';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  letter-spacing: 0.2em;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 17, 42, 0.93) 0%, rgba(8, 17, 42, 0.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.portfolio-thumb:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-thumb {
  transition: transform 0.5s var(--ease);
}

.portfolio-thumb:hover {
  transform: scale(1.04);
}

.portfolio-label {
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 6px;
}

.portfolio-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

/* ============================================================
   TESTIMONIALS  — THE ONE DARK SECTION
============================================================ */
.testimonials {
  padding: var(--pad) 0;
  background: var(--bg-dark);
  overflow: hidden;
}

.testimonials-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.testimonials-header {
  margin-bottom: 56px;
}

.testimonials-header .section-tag {
  color: var(--gold);
}

.testimonials-header .section-tag::before,
.testimonials-header .section-tag::after {
  background: var(--gold);
}

.testimonials-header .section-title {
  color: var(--cream);
}

.testimonials-header em {
  color: var(--gold-light);
}

.testimonials-stage {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.t-quote-mark {
  display: block;
  text-align: center;
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.25;
  pointer-events: none;
  margin-bottom: 24px;
}

.testimonials-track {
  display: flex;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

.t-text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  flex-shrink: 0;
  border: 1px solid rgba(201, 168, 76, 0.25);
}

.author-avatar--1 {
  background: linear-gradient(135deg, #0c1835, #243660);
  color: var(--cream);
}

.author-avatar--2 {
  background: linear-gradient(135deg, #1a0e35, #2d1b5a);
  color: var(--cream);
}

.author-avatar--3 {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff;
}

.author-avatar--4 {
  background: linear-gradient(135deg, #002040, #004080);
  color: var(--cream);
}

.author-avatar--5 {
  background: linear-gradient(135deg, #1a1a0a, #4a3800);
  color: var(--gold-light);
}

.author-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--cream);
  font-weight: 600;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--cream-muted);
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-top: 4px;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}

.t-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-muted);
  transition: all 0.3s var(--ease);
  cursor: auto;
  flex-shrink: 0;
}

.t-btn svg {
  width: 18px;
  height: 18px;
}

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

.t-dots {
  display: flex;
  gap: 8px;
}

.t-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(237, 232, 220, 0.2);
  transition: all 0.35s var(--ease);
  cursor: auto;
}

.t-dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 3px;
}

/* ============================================================
   CTA
============================================================ */
.cta-section {
  padding: var(--pad) 0;
  background: var(--bg-3);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: 'PRINT';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 200px);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(12, 24, 53, 0.04);
  pointer-events: none;
  white-space: nowrap;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-content .section-tag {
  color: var(--gold-dark);
}

.cta-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-content h2 em {
  color: var(--gold-dark);
}

.cta-content p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 420px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* ============================================================
   CONTACT
============================================================ */
.contact {
  padding: var(--pad) 0;
  background: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: start;
}

.contact-info {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.info-item:last-of-type {
  border-bottom: none;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.info-icon svg {
  width: 18px;
  height: 18px;
}

.info-item strong {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 3px;
  font-weight: 700;
}

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

.social-links {
  display: flex;
  gap: 10px;
  padding-top: 24px;
}

.social-btn {
  width: 40px;
  height: 40px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s var(--ease);
  cursor: auto;
}

.social-btn svg {
  width: 16px;
  height: 16px;
}

.social-btn:hover {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Quote Form */
.contact-form,
.quote-form {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border-mid);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--bg-white);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(12, 24, 53, 0.25);
}

.form-group select {
  cursor: auto;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

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

.form-note {
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 14px;
}

/* Validation */
.field-error {
  border-color: #d94f4f !important;
  box-shadow: 0 0 0 3px rgba(217, 79, 79, 0.1) !important;
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  20%,
  60% {
    transform: translateX(-5px);
  }

  40%,
  80% {
    transform: translateX(5px);
  }
}

.shake {
  animation: shake 0.4s ease;
}

/* Multi-step Quote Form */
.quote-steps {
  display: flex;
  align-items: center;
  margin-bottom: 36px;
}

.quote-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.quote-step span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color 0.3s;
}

.step-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--border-mid);
  background: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.3s var(--ease);
}

.quote-step.active .step-circle {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}

.quote-step.active span {
  color: var(--gold-dark);
}

.quote-step.completed .step-circle {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold);
}

.step-line {
  flex: 1;
  height: 1px;
  background: var(--border-mid);
  margin: 0 8px;
  margin-bottom: 22px;
  transition: background 0.4s;
}

.step-line.done {
  background: var(--navy);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.form-section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
  margin-bottom: 24px;
}

.form-section-label svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.req {
  color: var(--gold-dark);
  margin-left: 2px;
}

.label-hint {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
  text-transform: none;
}

.radio-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.radio-option {
  cursor: auto;
}

.radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1.5px solid var(--border-mid);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-white);
  transition: all 0.3s;
  white-space: nowrap;
  cursor: auto;
  box-shadow: var(--shadow-sm);
}

.radio-box svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.radio-option input:checked+.radio-box {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
  color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.radio-option:hover .radio-box {
  border-color: var(--gold);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 8px;
}

.checkbox-option {
  cursor: auto;
}

.checkbox-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-option span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1.5px solid var(--border-mid);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-white);
  transition: all 0.3s;
  line-height: 1.3;
  cursor: auto;
  box-shadow: var(--shadow-sm);
}

.checkbox-option span::before {
  content: '';
  width: 15px;
  height: 15px;
  border: 1.5px solid var(--border-mid);
  border-radius: 4px;
  flex-shrink: 0;
  background: var(--bg-white);
  transition: all 0.3s;
}

.checkbox-option input:checked+span {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
  color: var(--gold-dark);
}

.checkbox-option input:checked+span::before {
  background: var(--gold);
  border-color: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.info-callout {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(99, 102, 241, 0.05);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 20px;
}

.info-callout--gold {
  background: rgba(201, 168, 76, 0.05);
  border-color: var(--border-gold);
}

.info-callout svg {
  width: 16px;
  height: 16px;
  color: #6366f1;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-callout--gold svg {
  color: var(--gold-dark);
}

.info-callout p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

.form-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  gap: 12px;
}

.form-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-counter {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.btn-outline-navy {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border-mid);
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
  cursor: auto;
}

.btn-outline-navy:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.btn-outline-navy svg {
  width: 15px;
  height: 15px;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--bg-dark);
  padding: 80px 0 0;
  border-top: 2px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.footer-brand p {
  font-size: 0.86rem;
  color: var(--cream-muted);
  line-height: 1.8;
  margin: 16px 0 24px;
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.footer-logo-name {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.1em;
}

.footer-logo-sub {
  display: block;
  font-size: 0.58rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-muted);
  transition: all 0.3s;
  cursor: auto;
}

.footer-social a svg {
  width: 14px;
  height: 14px;
}

.footer-social a:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.footer-col h4 {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--cream-muted);
  transition: color 0.3s, padding-left 0.3s;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--cream-muted);
  margin-bottom: 12px !important;
}

.footer-contact-list li svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(237, 232, 220, 0.25);
}

/* ============================================================
   BACK TO TOP / TOAST
============================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 900;
  pointer-events: none;
  cursor: auto;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--navy);
  color: var(--cream);
  padding: 14px 24px;
  border-radius: 10px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transition: transform 0.4s var(--ease), opacity 0.4s;
  opacity: 0;
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes loaderPulse {

  0%,
  100% {
    filter: drop-shadow(0 4px 12px rgba(201, 168, 76, 0.25));
  }

  50% {
    filter: drop-shadow(0 4px 28px rgba(201, 168, 76, 0.55));
    transform: scale(1.04);
  }
}

@keyframes glowDrift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, 20px) scale(1.1);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatLogo {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-16px) rotate(1deg);
  }
}

@keyframes ringPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.06);
    opacity: 0.3;
  }
}

@keyframes scrollBob {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  75% {
    transform: translateY(8px);
    opacity: 0;
  }
}

/* AOS reveal */
[data-aos] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos-delay="80"] {
  transition-delay: 0.08s;
}

[data-aos-delay="160"] {
  transition-delay: 0.16s;
}

[data-aos-delay="240"] {
  transition-delay: 0.24s;
}

[data-aos="fade-right"] {
  transform: translateX(-32px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(32px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card--wide {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .testimonials-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 900px) {
  :root {
    --pad: 80px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-visual {
    min-height: 280px;
  }

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

  .why-item {
    grid-template-columns: 60px 1px 1fr auto;
    gap: 24px;
  }

  .why-item-num {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(253, 252, 248, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px 28px;
    gap: 4px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }

  .nav-links.open .nav-link {
    padding: 12px 0;
    font-size: 0.9rem;
    color: var(--navy);
  }

  .hamburger {
    display: flex;
  }

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

  .service-card--wide {
    grid-column: span 1;
    flex-direction: column;
  }

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

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

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    padding: 20px 28px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .why-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-item-line,
  .why-item-icon {
    display: none;
  }

  .why-item-num {
    font-size: 2.5rem;
  }

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

  .radio-group {
    flex-direction: column;
  }

  .quote-step span {
    display: none;
  }

  .testimonials-inner {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  :root {
    --pad: 60px;
  }

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

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

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

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

  .quote-form {
    padding: 24px 20px;
  }
}

/* ============================================================
   MOBILE COMPACT — Services carousel + Why Us chip grid
============================================================ */
@media (max-width: 640px) {

  /* ── Services: horizontal swipe carousel ── */
  .services-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  .services-swipe-hint svg {
    color: var(--gold);
  }

  .services .container {
    padding-right: 0;
    /* Right-fade to hint at more cards */
    -webkit-mask-image: linear-gradient(to right, black 88%, transparent 100%);
    mask-image: linear-gradient(to right, black 88%, transparent 100%);
  }

  .services-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 8px;
    /* kill the 1-col grid rule from 768px */
    grid-template-columns: unset;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .services-grid::-webkit-scrollbar {
    display: none;
  }

  /* Re-enable all AOS elements inside carousel instantly */
  .services-grid [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .service-card {
    flex: 0 0 78vw;
    min-width: 0;
    scroll-snap-align: start;
    padding: 22px 18px 20px;
    grid-column: unset !important;
  }

  .service-card--wide {
    flex: 0 0 88vw;
    flex-direction: column;
  }

  .service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
  }

  .service-icon svg {
    width: 22px;
    height: 22px;
  }

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

  .service-card>p {
    font-size: 0.82rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 14px;
  }

  .service-link {
    font-size: 0.75rem;
  }

  /* ── Why Us: compact 2-column chip grid ── */
  .why-header {
    margin-bottom: 36px;
  }

  .why-header .section-title {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
  }

  .why-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .why-item {
    display: flex;
    flex-direction: column;
    padding: 18px 16px;
    border: 1px solid var(--border);
    border-top: 3px solid var(--gold-pale);
    border-radius: var(--radius);
    background: var(--bg-white);
    gap: 8px;
    transition: border-top-color 0.3s, box-shadow 0.3s;
  }

  .why-item:first-child {
    border-top-color: var(--gold);
  }

  .why-item:hover {
    border-top-color: var(--gold);
    box-shadow: var(--shadow-sm);
  }

  /* Hide the old list elements */
  .why-item-line {
    display: none;
  }

  .why-item-num {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--gold-dark);
    opacity: 1;
    -webkit-text-stroke: 0;
    -webkit-text-fill-color: var(--gold-dark);
    transform: none !important;
    align-self: flex-start;
    background: var(--gold-pale);
    padding: 2px 8px;
    border-radius: 20px;
  }

  .why-item-icon {
    display: flex;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    align-self: flex-end;
    margin-top: auto;
  }

  .why-item-icon svg {
    width: 16px;
    height: 16px;
  }

  .why-item-body h3 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
  }

  .why-item-body p {
    font-size: 0.78rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 100%;
  }

  /* ── About mission/vision responsive ── */
  .about-mv {
    grid-template-columns: 1fr;
  }

  /* ── Clients strip ── */
  .clients-grid {
    gap: 24px 36px;
  }

  .client-logo {
    height: 32px;
    max-width: 100px;
  }
}

@media (pointer: coarse) {
  body {
    cursor: auto;
  }

  button {
    cursor: pointer;
  }

  a {
    cursor: pointer;
  }

  #cursor {
    display: none;
  }
}