/* ============================================
   ROYAL GRAPHICS — Design System
   ============================================ */

:root {
    /* Color palette — navy & gold */
    --navy-deep: #0a1628;
    --navy: #0f1e35;
    --navy-mid: #14294a;
    --navy-soft: #1c355e;
    --gold: #d4af37;
    --gold-light: #e6c463;
    --gold-dim: #b8952e;
    --cream: #f5f1e8;
    --cream-soft: #ecdfc4;
    --text: #e8ecf3;
    --text-muted: #a8b3c7;
    --border: rgba(212, 175, 55, 0.18);
    --border-strong: rgba(212, 175, 55, 0.35);

    /* Type */
    --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;

    /* Layout */
    --max: 1280px;
    --gutter: clamp(1.25rem, 4vw, 3rem);
    --section-y: clamp(4rem, 9vw, 7rem);

    /* Motion */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--navy-deep);
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.01em;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

::selection { background: var(--gold); color: var(--navy-deep); }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.005em;
    color: var(--cream);
}
h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.25rem; }

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.2rem;
}
.eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    margin-bottom: 1rem;
}
.section-title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}
.section-lead {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 640px;
    margin-bottom: 3rem;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}
.section { padding: var(--section-y) 0; }
.section-alt { background: var(--navy); }

/* Signature gold ornament */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin: 1.5rem 0;
}
.ornament::before,
.ornament::after {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
}
.ornament-diamond {
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.95rem 2rem;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.btn-primary {
    background: var(--gold);
    color: var(--navy-deep);
    border: 1px solid var(--gold);
}
.btn-primary:hover {
    background: transparent;
    color: var(--gold);
}
.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--navy-deep);
}
.btn i { transition: transform 0.3s var(--ease); }
.btn:hover i { transform: translateX(4px); }

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.35rem 0;
    background: rgba(10, 22, 40, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: all 0.35s var(--ease);
}
.header.scrolled {
    padding: 0.9rem 0;
    background: rgba(10, 22, 40, 0.95);
    border-bottom-color: var(--border);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-display);
    color: var(--cream);
    z-index: 1002;
}
.logo-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gold);
    position: relative;
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    transition: transform 0.4s var(--ease);
}
.logo-mark::before,
.logo-mark::after {
    content: '';
    position: absolute;
    background: var(--gold);
}
.logo-mark::before { top: -3px; left: -3px; width: 8px; height: 1px; }
.logo-mark::after { bottom: -3px; right: -3px; width: 8px; height: 1px; }
.logo:hover .logo-mark { transform: rotate(90deg); }

.logo-text {
    line-height: 1;
    display: flex;
    flex-direction: column;
}
.logo-text .brand {
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.logo-text .tag {
    font-family: var(--font-body);
    font-size: 0.62rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 3px;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.4rem;
}
.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text);
    position: relative;
    padding: 0.5rem 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: all 0.3s var(--ease);
    transform: translateX(-50%);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 24px; }

.nav-cta { display: none; }
@media (min-width: 1024px) { .nav-cta { display: inline-flex; } }

/* Hamburger */
.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1002;
    border: 1px solid var(--border-strong);
    background: rgba(212, 175, 55, 0.05);
    transition: all 0.3s var(--ease);
}
.hamburger:hover { border-color: var(--gold); }
.hamburger span {
    position: absolute;
    left: 12px;
    right: 12px;
    height: 1.5px;
    background: var(--gold);
    transition: all 0.4s var(--ease);
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 21px; width: 14px; right: auto; }
.hamburger span:nth-child(3) { bottom: 14px; }
.hamburger.active span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { bottom: 21px; transform: rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.6s var(--ease);
    padding: 6rem 2.5rem 2.5rem;
    border-left: 1px solid var(--border);
    overflow-y: auto;
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
}
.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.mobile-menu-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.mobile-menu-eyebrow::before {
    content: ''; width: 24px; height: 1px; background: var(--gold);
}
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 1;
}
.mobile-nav-links li {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s var(--ease);
}
.mobile-menu.active .mobile-nav-links li {
    opacity: 1;
    transform: translateX(0);
}
.mobile-menu.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.22s; }
.mobile-menu.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.29s; }
.mobile-menu.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.36s; }
.mobile-menu.active .mobile-nav-links li:nth-child(5) { transition-delay: 0.43s; }
.mobile-menu.active .mobile-nav-links li:nth-child(6) { transition-delay: 0.50s; }

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.1rem 0;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--cream);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s var(--ease);
}
.mobile-nav-links a .num {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    min-width: 30px;
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--gold);
    padding-left: 0.5rem;
}
.mobile-menu-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.mobile-menu-footer .contact-line {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.mobile-menu-footer i { color: var(--gold); width: 16px; }
.mobile-menu-socials {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.2rem;
}
.mobile-menu-socials a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    color: var(--gold);
    transition: all 0.3s var(--ease);
}
.mobile-menu-socials a:hover {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}
.overlay.active { opacity: 1; pointer-events: all; }

@media (max-width: 1023px) {
    .nav-links { display: none; }
    .hamburger { display: block; }
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
    margin-top: 0;
}
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s var(--ease);
    z-index: 1;
}
.hero-slide.active {
    opacity: 1;
    z-index: 2;
}
.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}
.hero-slide.active .hero-slide-bg {
    transform: scale(1);
}
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.92) 0%,
        rgba(10, 22, 40, 0.72) 45%,
        rgba(10, 22, 40, 0.55) 100%
    );
    z-index: 1;
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 3;
    padding-top: 6rem;
}
.hero-content .container { width: 100%; }
.hero-inner {
    max-width: 780px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s var(--ease) 0.4s;
}
.hero-slide.active .hero-inner {
    opacity: 1;
    transform: translateY(0);
}
.hero-title {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.hero-title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}
.hero-sub {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Slider controls */
.hero-controls {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 5;
    width: min(100%, var(--max));
    padding: 0 var(--gutter);
    justify-content: space-between;
}
.hero-dots {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.hero-dot {
    width: 44px;
    height: 2px;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}
.hero-dot::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0;
    background: var(--gold);
}
.hero-dot.active::after {
    width: 100%;
    transition: width 6s linear;
}

.hero-arrows { display: flex; gap: 0.5rem; }
.hero-arrow {
    width: 46px;
    height: 46px;
    border: 1px solid var(--border-strong);
    color: var(--gold);
    display: grid;
    place-items: center;
    transition: all 0.3s var(--ease);
    background: rgba(10, 22, 40, 0.3);
}
.hero-arrow:hover {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
}

.hero-counter {
    display: flex;
    gap: 0.4rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--cream);
    letter-spacing: 0.1em;
}
.hero-counter .current { color: var(--gold); font-weight: 600; }
.hero-counter .sep { opacity: 0.4; }

@media (max-width: 640px) {
    .hero-controls { bottom: 1.5rem; }
    .hero-dots { display: none; }
}

/* ============================================
   PAGE HEADER (sub-pages)
   ============================================ */
.page-header {
    position: relative;
    padding: 12rem 0 6rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
}
.page-header-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}
.page-header h1 {
    margin-bottom: 1rem;
}
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb i { color: var(--gold); font-size: 0.6rem; }

/* ============================================
   SERVICES GRID (home preview)
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.service-card {
    background: var(--navy);
    border: 1px solid var(--border);
    padding: 2.5rem 2rem;
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
    text-align: left;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}
.service-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-6px);
    background: var(--navy-mid);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1.75rem;
    transition: all 0.4s var(--ease);
    position: relative;
}
.service-icon::after {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(212, 175, 55, 0.25);
}
.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--navy-deep);
}
.service-card h3 {
    margin-bottom: 0.8rem;
    color: var(--cream);
}
.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.service-link i { transition: transform 0.3s var(--ease); }
.service-card:hover .service-link i { transform: translateX(5px); }

/* ============================================
   ABOUT (home preview + about page)
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}
.about-image {
    position: relative;
}
.about-image-main {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}
.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s var(--ease);
}
.about-image:hover .about-image-main img { transform: scale(1.05); }
.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 40px;
    bottom: 40px;
    border: 1px solid var(--gold);
    z-index: -1;
}
.about-badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: var(--gold);
    color: var(--navy-deep);
    padding: 1.5rem 1.75rem;
    text-align: center;
}
.about-badge .num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
    display: block;
}
.about-badge .lbl {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 0.3rem;
    display: block;
}
.about-content p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    font-size: 1.02rem;
}
.about-signature {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.about-signature .sig-name {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--cream);
}
.about-signature .sig-role {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 4px;
}

/* Stats row */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stat {
    text-align: center;
    padding: 0 1rem;
    border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
@media (max-width: 700px) {
    .stat { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 1.5rem; }
    .stat:last-child { border-bottom: none; }
}
.stat-num {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
}
.stat-num .plus { font-size: 1.5rem; vertical-align: super; margin-left: 4px; }
.stat-lbl {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.8rem;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 3rem;
}
.filter-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid transparent;
    transition: all 0.3s var(--ease);
    font-weight: 500;
}
.filter-btn:hover { color: var(--gold); }
.filter-btn.active {
    color: var(--gold);
    border-color: var(--border-strong);
    background: rgba(212, 175, 55, 0.05);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    background: var(--navy);
}
.gallery-item.tall { aspect-ratio: 3/4; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; }
@media (max-width: 640px) { .gallery-item.wide { grid-column: span 1; aspect-ratio: 1; } }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.3) 60%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay .cat {
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
    transform: translateY(10px);
    transition: transform 0.4s var(--ease) 0.1s;
}
.gallery-overlay h4 {
    color: var(--cream);
    font-size: 1.35rem;
    transform: translateY(10px);
    transition: transform 0.4s var(--ease) 0.15s;
}
.gallery-item:hover .gallery-overlay .cat,
.gallery-item:hover .gallery-overlay h4 { transform: translateY(0); }

.gallery-zoom {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--navy-deep);
    display: grid;
    place-items: center;
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.4s var(--ease);
}
.gallery-item:hover .gallery-zoom {
    opacity: 1;
    transform: scale(1);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5, 12, 24, 0.97);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.lightbox.active {
    display: flex;
    animation: fadeIn 0.4s var(--ease);
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lightbox-img-wrap {
    position: relative;
    max-width: 100%;
    max-height: 80vh;
    border: 1px solid var(--border-strong);
    padding: 8px;
    background: var(--navy-deep);
}
.lightbox-img {
    max-width: 100%;
    max-height: calc(80vh - 16px);
    display: block;
    object-fit: contain;
}
.lightbox-info {
    text-align: center;
    margin-top: 1.25rem;
    color: var(--cream);
}
.lightbox-info .cat {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
}
.lightbox-info h4 { font-size: 1.5rem; }
.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    border: 1px solid var(--border-strong);
    color: var(--gold);
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    transition: all 0.3s var(--ease);
    background: rgba(10, 22, 40, 0.5);
}
.lightbox-close:hover {
    background: var(--gold);
    color: var(--navy-deep);
    transform: rotate(90deg);
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: 1px solid var(--border-strong);
    color: var(--gold);
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    background: rgba(10, 22, 40, 0.6);
    transition: all 0.3s var(--ease);
}
.lightbox-nav.prev { left: 2rem; }
.lightbox-nav.next { right: 2rem; }
.lightbox-nav:hover {
    background: var(--gold);
    color: var(--navy-deep);
}
@media (max-width: 640px) {
    .lightbox-nav.prev { left: 0.5rem; }
    .lightbox-nav.next { right: 0.5rem; }
    .lightbox-nav { width: 42px; height: 42px; }
}

.lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
}

/* ============================================
   PROCESS / WHY-US
   ============================================ */
.process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}
.process-step {
    background: var(--navy);
    padding: 2.5rem 2rem;
    transition: background 0.4s var(--ease);
    position: relative;
}
.process-step:hover { background: var(--navy-mid); }
.process-num {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}
.process-step h3 { margin-bottom: 0.8rem; font-size: 1.4rem; }
.process-step p { color: var(--text-muted); font-size: 0.95rem; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}
.testimonial {
    background: var(--navy);
    border: 1px solid var(--border);
    padding: 2.5rem 2rem;
    position: relative;
}
.testimonial::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--gold);
    line-height: 1;
    opacity: 0.6;
}
.testimonial-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1.55;
    color: var(--cream);
    font-style: italic;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--gold);
    padding: 2px;
}
.testimonial-author .name {
    color: var(--cream);
    font-weight: 500;
    font-size: 0.95rem;
}
.testimonial-author .role {
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 3px;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    padding: var(--section-y) 0;
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    z-index: 0;
}
.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.cta-inner h2 { margin-bottom: 1.25rem; }
.cta-inner p { color: var(--text-muted); margin-bottom: 2.5rem; font-size: 1.05rem; }

/* ============================================
   SERVICES PAGE (detailed)
   ============================================ */
.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.service-row.reverse .service-media { order: 2; }
@media (max-width: 900px) {
    .service-row { grid-template-columns: 1fr; gap: 2.5rem; }
    .service-row.reverse .service-media { order: 0; }
}
.service-media {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border: 1px solid var(--border);
}
.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s var(--ease);
}
.service-row:hover .service-media img { transform: scale(1.06); }
.service-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.15) 0%, rgba(10, 22, 40, 0) 60%);
    pointer-events: none;
}
.service-media .badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--navy-deep);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.5rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
}
.service-info h2 { margin-bottom: 1.25rem; }
.service-info p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.service-features {
    list-style: none;
    margin: 1.5rem 0 2rem;
}
.service-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
    color: var(--cream);
    border-bottom: 1px solid var(--border);
    font-size: 0.98rem;
}
.service-features i { color: var(--gold); }

/* Service detail page */
.service-hero {
    padding: 12rem 0 5rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.service-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}
@media (max-width: 900px) {
    .service-hero-grid { grid-template-columns: 1fr; gap: 3rem; }
}
.service-hero-media {
    aspect-ratio: 4/3;
    overflow: hidden;
    border: 1px solid var(--border);
}
.service-hero-media img { width: 100%; height: 100%; object-fit: cover; }

.deliverables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.deliverable {
    padding: 2rem 1.75rem;
    border: 1px solid var(--border);
    background: var(--navy);
    transition: all 0.3s var(--ease);
}
.deliverable:hover {
    border-color: var(--border-strong);
    background: var(--navy-mid);
}
.deliverable i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}
.deliverable h4 { margin-bottom: 0.5rem; color: var(--cream); }
.deliverable p { color: var(--text-muted); font-size: 0.9rem; }

.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.tier {
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    background: var(--navy);
    text-align: center;
    position: relative;
    transition: all 0.4s var(--ease);
}
.tier.featured {
    border-color: var(--gold);
    background: var(--navy-mid);
}
.tier.featured::before {
    content: 'Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy-deep);
    padding: 4px 14px;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
}
.tier-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 0.5rem;
}
.tier-price {
    font-family: var(--font-display);
    font-size: 2.75rem;
    color: var(--gold);
    margin: 1rem 0;
    font-weight: 500;
}
.tier-price small {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    display: block;
    margin-top: 0.4rem;
}
.tier-features {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0 2rem;
}
.tier-features li {
    padding: 0.6rem 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-bottom: 1px solid var(--border);
}
.tier-features i { color: var(--gold); font-size: 0.8rem; }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3.5rem;
    align-items: flex-start;
}
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}
.contact-info-card {
    padding: 2.5rem 2rem;
    background: var(--navy);
    border: 1px solid var(--border);
    position: sticky;
    top: 100px;
}
.contact-info-card h3 { margin-bottom: 0.8rem; }
.contact-info-card > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.98rem;
}
.contact-item {
    display: flex;
    gap: 1.2rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-item-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gold);
    color: var(--gold);
    flex-shrink: 0;
}
.contact-item-detail h4 {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.35rem;
    font-weight: 500;
}
.contact-item-detail p {
    color: var(--cream);
    font-size: 0.98rem;
    line-height: 1.5;
}

.contact-socials {
    display: flex;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.contact-socials a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    color: var(--gold);
    transition: all 0.3s var(--ease);
}
.contact-socials a:hover {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
}

/* Form */
.contact-form-wrap {
    background: var(--navy);
    padding: 3rem 2.5rem;
    border: 1px solid var(--border);
}
@media (max-width: 640px) {
    .contact-form-wrap { padding: 2rem 1.5rem; }
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}
.form-group label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
    font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    background: var(--navy-deep);
    border: 1px solid var(--border);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--navy-mid);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select { cursor: pointer; }

.form-note {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 1.25rem;
    text-align: center;
}

/* Map */
.map-embed {
    margin-top: 4rem;
    height: 400px;
    border: 1px solid var(--border);
    overflow: hidden;
    filter: grayscale(0.35) contrast(1.05) brightness(0.8);
    transition: filter 0.4s var(--ease);
}
.map-embed:hover { filter: grayscale(0) contrast(1) brightness(0.9); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy);
    padding: 5rem 0 0;
    border-top: 1px solid var(--border);
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 400px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3.5rem;
}
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand {
    max-width: 340px;
}
.footer-brand .logo { margin-bottom: 1.25rem; }
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}
.footer-socials {
    display: flex;
    gap: 0.5rem;
}
.footer-socials a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    color: var(--gold);
    transition: all 0.3s var(--ease);
}
.footer-socials a:hover {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
}

.footer h4 {
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a {
    color: var(--text-muted);
    font-size: 0.92rem;
    transition: all 0.3s var(--ease);
    display: inline-flex;
    align-items: center;
}
.footer-links a::before {
    content: '›';
    color: var(--gold);
    margin-right: 8px;
    opacity: 0;
    width: 0;
    transition: all 0.3s var(--ease);
}
.footer-links a:hover {
    color: var(--gold);
}
.footer-links a:hover::before {
    opacity: 1;
    width: auto;
    margin-right: 8px;
}

.newsletter-input {
    display: flex;
    margin-top: 1rem;
    border: 1px solid var(--border);
    background: var(--navy-deep);
}
.newsletter-input input {
    flex: 1;
    padding: 0.85rem 1rem;
    background: transparent;
    border: none;
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
}
.newsletter-input button {
    padding: 0 1.25rem;
    background: var(--gold);
    color: var(--navy-deep);
    transition: background 0.3s;
}
.newsletter-input button:hover { background: var(--gold-light); }
.footer-contact-line {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    display: flex;
    gap: 0.6rem;
    align-items: center;
}
.footer-contact-line i { color: var(--gold); width: 14px; }

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}
.footer-bottom p span { color: var(--gold); }
.footer-legal {
    display: flex;
    gap: 1.5rem;
}
.footer-legal a {
    color: var(--text-muted);
    font-size: 0.85rem;
}
.footer-legal a:hover { color: var(--gold); }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px;
    height: 46px;
    background: var(--gold);
    color: var(--navy-deep);
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s var(--ease);
    z-index: 100;
    border-radius: 50%;
}
.scroll-top.visible {
    opacity: 1;
    pointer-events: all;
}
.scroll-top:hover {
    background: var(--gold-light);
    transform: translateY(-4px);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================================
   V2 — PEACOCK TEAL ACCENT · BANNER MEDIA · LIGHT SECTIONS
   Added to lift the palette beyond a single navy tone.
   ============================================================ */

:root {
    /* Second accent — peacock teal */
    --teal-deep:   #06333a;
    --teal:        #0d5c66;
    --teal-mid:    #127d88;
    --teal-bright: #2aa9b3;
    --teal-glow:   rgba(42, 169, 179, 0.16);

    /* Light-section ("paper") scale */
    --paper:        #f6f2e9;
    --paper-2:      #fffdf7;
    --paper-shade:  #ece5d6;
    --ink:          #0a1628;
    --ink-soft:     #4c5c76;
    --ink-line:     rgba(10, 22, 40, 0.10);
    --ink-line-2:   rgba(10, 22, 40, 0.20);
}

/* Small utility that was missing */
.section-head { margin-bottom: 2.75rem; }

/* ============================================
   PAGE BANNERS — image + duotone scrim
   ============================================ */
.page-header,
.service-hero {
    background: linear-gradient(115deg,
        var(--teal-deep) 0%,
        #0a2a3d 32%,
        var(--navy-deep) 70%,
        var(--navy) 100%);
    border-bottom: 1px solid var(--border-strong);
}

.page-header-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.page-header-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.42;
    transform: scale(1.04);
    filter: saturate(0.9) contrast(1.05);
}
.page-header-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg,
            rgba(6, 51, 58, 0.94) 0%,
            rgba(10, 32, 52, 0.82) 42%,
            rgba(10, 22, 40, 0.62) 100%),
        radial-gradient(ellipse at 50% 118%, rgba(212, 175, 55, 0.20), transparent 62%);
}

/* soft fade into the page below */
.page-header::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 140px;
    background: linear-gradient(to top, var(--navy-deep) 5%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}
.page-header::before { z-index: 1; }
.page-header-inner { z-index: 3; }

/* thin gold + teal rule under every banner */
.page-header,
.service-hero { position: relative; }
.page-header > .banner-rule,
.service-hero > .banner-rule {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--gold) 22%,
        var(--teal-bright) 50%,
        var(--gold) 78%,
        transparent 100%);
    opacity: 0.85;
    z-index: 4;
}

/* Service detail hero uses a quieter wash so the split layout stays readable */
.service-hero .page-header-media img { opacity: 0.24; }
.service-hero .page-header-media::after {
    background: linear-gradient(100deg,
        rgba(6, 51, 58, 0.95) 0%,
        rgba(10, 22, 40, 0.90) 55%,
        rgba(10, 22, 40, 0.78) 100%);
}
.service-hero-grid { position: relative; z-index: 3; }

/* ============================================
   DARK SECTIONS — teal-tinted so they differ
   ============================================ */
.section-alt {
    background: linear-gradient(160deg, #0c2233 0%, var(--navy) 55%, #0d2430 100%);
}
.cta-banner {
    background: linear-gradient(135deg, var(--teal-deep) 0%, var(--navy-mid) 45%, var(--navy) 100%);
}
.cta-banner::after {
    content: '';
    position: absolute;
    left: -10%; bottom: -40%;
    width: 55%; height: 120%;
    background: radial-gradient(circle, var(--teal-glow) 0%, transparent 65%);
    z-index: 0;
    pointer-events: none;
}

/* Teal on interactive accents */
.service-card:hover .service-icon { border-color: var(--teal-bright); color: var(--teal-bright); }
.filter-btn:hover { border-color: var(--teal-bright); color: var(--teal-bright); }
.gallery-zoom { background: rgba(13, 92, 102, 0.85); }

/* ============================================
   LIGHT SECTIONS — cream "paper" bands
   ============================================ */
.section-light {
    position: relative;
    background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 45%, var(--paper-shade) 100%);
    color: var(--ink-soft);
}
.section-light::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--teal-mid) 50%, var(--gold) 100%);
    opacity: 0.75;
}
.section-light::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: var(--ink-line-2);
}

.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4 { color: var(--ink); }
.section-light p,
.section-light li,
.section-light .section-lead { color: var(--ink-soft); }
.section-light .section-title em { color: var(--teal); font-style: italic; }
.section-light .eyebrow { color: var(--teal); }
.section-light .eyebrow::before { background: var(--teal); }
.section-light .ornament::before,
.section-light .ornament::after { background: var(--teal); opacity: 0.5; }
.section-light .ornament-diamond { background: var(--gold-dim); }

/* Buttons on light */
.section-light .btn-outline {
    border-color: var(--ink-line-2);
    color: var(--ink);
}
.section-light .btn-outline:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: #fdfcf8;
}

/* Cards on light */
.section-light .service-card,
.section-light .deliverable,
.section-light .testimonial,
.section-light .tier {
    background: var(--paper-2);
    border-color: var(--ink-line);
    box-shadow: 0 1px 2px rgba(10, 22, 40, 0.04);
}
.section-light .service-card:hover,
.section-light .deliverable:hover {
    background: #fff;
    border-color: var(--teal-mid);
    box-shadow: 0 18px 40px -22px rgba(10, 22, 40, 0.35);
}
.section-light .service-card::before { background: var(--teal-mid); }
.section-light .service-card p,
.section-light .deliverable p { color: var(--ink-soft); }
.section-light .service-icon {
    border-color: var(--teal-mid);
    color: var(--teal);
    background: rgba(18, 125, 136, 0.06);
}
.section-light .deliverable i { color: var(--teal); }
.section-light .service-features li {
    color: var(--ink);
    border-bottom-color: var(--ink-line);
}
.section-light .service-features i { color: var(--teal); }

/* Process on light */
.section-light .process {
    background: var(--ink-line);
    border-color: var(--ink-line);
}
.section-light .process-step { background: var(--paper-2); }
.section-light .process-step:hover { background: #fff; }
.section-light .process-num { color: var(--teal); }
.section-light .process-step p { color: var(--ink-soft); }

/* Testimonials on light */
.section-light .testimonial::before { color: var(--gold-dim); opacity: 0.55; }
.section-light .testimonial-text { color: var(--ink); }
.section-light .testimonial-author { border-top-color: var(--ink-line); }
.section-light .testimonial-author .name { color: var(--ink); }
.section-light .testimonial-author .role { color: var(--teal); }
.section-light .testimonial-author img { border-color: var(--teal-mid); }

/* Stats + pricing on light */
.section-light .stat { border-color: var(--ink-line); }
.section-light .stat-num { color: var(--teal); }
.section-light .stat-lbl { color: var(--ink-soft); }
.section-light .tier-name { color: var(--ink); }
.section-light .tier-price { color: var(--teal); }
.section-light .tier-features li { color: var(--ink-soft); border-bottom-color: var(--ink-line); }
.section-light .tier-features i { color: var(--teal); }

/* Links on light */
.section-light .service-link { color: var(--teal); }
.section-light .service-link:hover { color: var(--ink); }
.section-light a:not(.btn):hover { color: var(--teal-mid); }

/* Text selection inside light bands */
.section-light ::selection { background: var(--teal-mid); color: #fff; }

/* Gallery band on light paper */
.section-light .filter-btn { color: var(--ink-soft); }
.section-light .filter-btn:hover { color: var(--teal); border-color: var(--teal-mid); }
.section-light .filter-btn.active {
    color: var(--teal);
    border-color: var(--teal-mid);
    background: rgba(18, 125, 136, 0.07);
}
.section-light .gallery-item {
    background: var(--paper-shade);
    box-shadow: 0 2px 6px rgba(10, 22, 40, 0.06);
}
.section-light .gallery-item:hover { box-shadow: 0 22px 46px -24px rgba(10, 22, 40, 0.45); }

/* Contact card + form on light paper */
.section-light .contact-info-card,
.section-light .contact-form-wrap {
    background: var(--paper-2);
    border-color: var(--ink-line);
    box-shadow: 0 1px 2px rgba(10, 22, 40, 0.04);
}
.section-light .contact-item { border-bottom-color: var(--ink-line); }
.section-light .contact-item-icon { border-color: var(--teal-mid); color: var(--teal); }
.section-light .contact-item-detail h4 { color: var(--ink); }
.section-light .contact-item-detail p { color: var(--ink-soft); }
.section-light .contact-socials a { border-color: var(--ink-line-2); color: var(--ink); }
.section-light .contact-socials a:hover { background: var(--teal); border-color: var(--teal); color: #fff; }
.section-light .form-group label { color: var(--ink); }
.section-light .form-group input,
.section-light .form-group select,
.section-light .form-group textarea {
    background: #fff;
    border-color: var(--ink-line-2);
    color: var(--ink);
}
.section-light .form-group input::placeholder,
.section-light .form-group textarea::placeholder { color: #97a3b6; }
.section-light .form-group input:focus,
.section-light .form-group select:focus,
.section-light .form-group textarea:focus { border-color: var(--teal-mid); }
.section-light .form-note { color: var(--ink-soft); }
.section-light .form-note i { color: var(--teal); }
.section-light .map-embed { border-color: var(--ink-line-2); }

/* About / team blocks on light paper */
.section-light .about-content p { color: var(--ink-soft); }
.section-light .about-signature .sig-role { color: var(--teal); }

/* Re-map the dark-theme text tokens inside light bands so any inline
   color:var(--text-muted) / var(--cream) also flips to ink automatically. */
.section-light {
    --text-muted: var(--ink-soft);
    --cream: var(--ink);
    --text: var(--ink);
    --border: var(--ink-line);
    --border-strong: var(--ink-line-2);
    --navy: var(--paper-2);
    --navy-mid: #fff;
}

/* A little more room now that banners carry imagery */
.page-header { padding: 13rem 0 7rem; }
@media (max-width: 768px) { .page-header { padding: 10rem 0 5rem; } }
