/*
Theme Name: Vivere Watches
Theme URI: https://viverewatches.com
Author: Vivere Watches
Description: A custom theme for Vivere Watches — Your Personal Watch Guy. Life is Short. Buy the Watch.
Version: 1.0.0
License: Private
Text Domain: vivere-watches
*/

/* ============================================================
   IMPORTS & VARIABLES
   ============================================================ */

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

:root {
    /* Colors */
    --black:         #0a0908;
    --dark:          #131110;
    --dark-warm:     #1e1b18;
    --mid-dark:      #2c2823;

    --warm-white:    #faf7f0;
    --cream:         #ede8dc;
    --cream-dark:    #e2dbd0;
    --parchment:     #d8d0c4;

    --accent:        #7a6548;    /* warm bronze — natural, not gold */
    --accent-hover:  #8f7858;
    --accent-light:  #a8977e;
    --accent-muted:  #c4b99e;

    --text:          #1c1a17;
    --text-mid:      #5a5550;
    --text-light:    #9a9590;
    --border:        #ddd5c8;
    --border-dark:   #3a3530;

    /* Typography */
    --display:       'Cormorant Garamond', Georgia, serif;
    --body:          'Jost', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs:  0.5rem;
    --space-sm:  1rem;
    --space-md:  2rem;
    --space-lg:  4rem;
    --space-xl:  6rem;
    --space-xxl: 10rem;

    /* Misc */
    --nav-height: 80px;
    --radius:     3px;
    --transition: 0.3s ease;
    --shadow:     0 4px 24px rgba(0,0,0,0.10);
    --shadow-lg:  0 12px 48px rgba(0,0,0,0.16);
}

/* ============================================================
   RESET & BASE
   ============================================================ */

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

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

body {
    font-family: var(--body);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--warm-white);
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font-family: var(--body);
    font-size: inherit;
}

/* ============================================================
   TYPOGRAPHY GLOBALS
   ============================================================ */

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

.display-xl {
    font-family: var(--display);
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -0.01em;
}

.display-lg {
    font-family: var(--display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
}

.display-md {
    font-family: var(--display);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
}

.eyebrow {
    font-family: var(--body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
}

.eyebrow-light {
    font-family: var(--body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-light);
}

p {
    max-width: 68ch;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-narrow {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section-pad {
    padding: var(--space-xl) 0;
}

.section-pad-lg {
    padding: var(--space-xxl) 0;
}

.text-center { text-align: center; }
.text-left   { text-align: left; }

.color-accent { color: var(--accent); }
.color-light  { color: var(--text-light); }
.color-white  { color: #fff; }

.bg-dark    { background-color: var(--dark); }
.bg-cream   { background-color: var(--cream); }
.bg-black   { background-color: var(--black); }
.bg-white   { background-color: #fff; }

.italic { font-style: italic; }

/* Fade-in animation trigger */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay helpers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
    display: inline-block;
    font-family: var(--body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.9em 2.2em;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    border-radius: var(--radius);
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
    border-color: #fff;
    color: #fff;
}

.btn-outline-accent {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}
.btn-outline-accent:hover {
    background: var(--accent);
    color: #fff;
}

/* ============================================================
   DIVIDER
   ============================================================ */

.divider {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin: 1.5rem 0;
}
.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}
.divider-dark::before,
.divider-dark::after {
    background: var(--border-dark);
}
.divider span {
    font-family: var(--display);
    font-size: 1.2rem;
    color: var(--accent);
}

/* ============================================================
   NAVIGATION
   ============================================================ */

#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: background var(--transition), box-shadow var(--transition);
    background: transparent;
}

#site-header.scrolled {
    background: var(--dark);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

#site-header.page-header {
    background: var(--dark);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo .logo-icon {
    width: 42px;
    height: 42px;
    filter: invert(1); /* Makes black SVG white */
}

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

.site-logo .logo-name {
    font-family: var(--body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
}

.site-logo .logo-tagline {
    font-family: var(--display);
    font-size: 0.68rem;
    font-style: italic;
    color: var(--accent-light);
    letter-spacing: 0.05em;
    margin-top: 2px;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-family: var(--body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.current-menu-item {
    color: #fff;
}

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

/* Nav CTA */
.nav-cta {
    margin-left: 1rem;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: #fff;
    transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu */
.nav-mobile {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile a {
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    transition: color var(--transition);
}
.nav-mobile a:hover {
    color: var(--accent-light);
}

.nav-mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    font-family: var(--body);
    font-weight: 300;
}

/* ============================================================
   HERO SECTION (Homepage)
   ============================================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-image: url('assets/images/hero-placeholder.jpg');
    transform: scale(1.04);
    transition: transform 8s ease;
}

.hero.loaded .hero-bg {
    transform: scale(1.0);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10,9,8,0.88) 0%,
        rgba(10,9,8,0.65) 50%,
        rgba(10,9,8,0.50) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-md);
    max-width: 900px;
}

.hero-eyebrow {
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.3s forwards;
}

.hero-headline {
    font-family: var(--display);
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 700;
    line-height: 0.95;
    color: #fff;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: fadeUp 1s ease 0.5s forwards;
}

.hero-headline em {
    font-style: italic;
    color: var(--accent-light);
}

.hero-sub {
    font-family: var(--body);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 300;
    color: rgba(255,255,255,0.72);
    max-width: 500px;
    margin: 1.5rem auto 0;
    letter-spacing: 0.04em;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 1s ease 0.7s forwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.9s forwards;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: var(--accent);
    margin: 2rem auto;
    opacity: 0;
    animation: fadeIn 1s ease 0.6s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: var(--body);
    animation: fadeIn 1.5s ease 1.5s both;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.4));
    animation: scrollPulse 2s ease infinite;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50%       { opacity: 0.8; transform: scaleY(1.1); }
}

/* ============================================================
   PHILOSOPHY SECTION (Homepage)
   ============================================================ */

.philosophy {
    padding: var(--space-xxl) 0;
    background: var(--cream);
}

.philosophy-inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.philosophy-latin {
    font-family: var(--display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    font-style: italic;
    color: var(--accent);
    line-height: 1.1;
    margin: 1rem 0;
}

.philosophy-translation {
    font-family: var(--body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.philosophy-body {
    font-family: var(--display);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    line-height: 1.75;
    color: var(--text-mid);
    max-width: 62ch;
    margin: 0 auto;
}

.philosophy-rule {
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin: 2.5rem auto;
}

/* ============================================================
   FEATURED INVENTORY (Homepage)
   ============================================================ */

.featured-inventory {
    padding: var(--space-xl) 0 var(--space-xxl);
    background: var(--dark);
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
    gap: 1rem;
}

.section-header-left {}

.section-title {
    font-family: var(--display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-top: 0.5rem;
}

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

.watch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.watch-card {
    background: var(--mid-dark);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.watch-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.watch-card-image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    background: var(--dark-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.watch-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.watch-card:hover .watch-card-image img {
    transform: scale(1.03);
}

.watch-card-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(145deg, #1e1b18, #2c2823);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.watch-card-placeholder .placeholder-icon {
    width: 48px;
    height: 48px;
    opacity: 0.15;
    filter: invert(1);
}

.watch-card-placeholder p {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
    max-width: none;
    text-align: center;
}

.watch-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.watch-card-brand {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 0.3rem;
}

.watch-card-name {
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.watch-card-ref {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.watch-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-dark);
    padding-top: 1rem;
}

.watch-card-price {
    font-family: var(--display);
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
}

.watch-card-link {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    transition: color var(--transition);
}
.watch-card-link:hover {
    color: var(--accent-hover);
}

.inventory-cta {
    text-align: center;
    margin-top: var(--space-lg);
}

/* ============================================================
   SERVICES SECTION (Homepage)
   ============================================================ */

.services {
    padding: var(--space-xxl) 0;
    background: var(--warm-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: var(--space-lg);
}

.service-card {
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--accent-muted);
    transform: translateY(-2px);
}

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

.service-number {
    font-family: var(--display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--cream-dark);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.service-title {
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.service-body {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 1.75rem;
    max-width: 38ch;
}

/* ============================================================
   ABOUT TEASER (Homepage)
   ============================================================ */

.about-teaser {
    padding: var(--space-xxl) 0;
    background: var(--dark);
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap img,
.about-image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--radius);
}

.about-image-placeholder {
    background: linear-gradient(145deg, #1e1b18, #2c2823);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.15);
}

.about-image-accent {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 120px;
    height: 120px;
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    z-index: -1;
}

.about-text .eyebrow-light {
    margin-bottom: 1rem;
    display: block;
}

.about-headline {
    font-family: var(--display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.75rem;
}

.about-headline em {
    font-style: italic;
    color: var(--accent-light);
}

.about-body {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 50ch;
}

.about-signature {
    font-family: var(--display);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--accent-light);
    margin-top: 1.5rem;
}

/* ============================================================
   BLOG PREVIEW (Homepage)
   ============================================================ */

.blog-preview {
    padding: var(--space-xxl) 0;
    background: var(--cream);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: var(--space-lg);
}

.blog-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
}

.blog-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.blog-card-image {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    overflow: hidden;
    background: var(--cream-dark);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.04);
}

.blog-card-image-placeholder {
    width: 100%;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-card-meta {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.blog-card-title {
    font-family: var(--display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.blog-card-excerpt {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    max-width: none;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap var(--transition);
}

.blog-card-link:hover {
    gap: 0.7rem;
    color: var(--accent-hover);
}

.blog-card-link::after {
    content: '→';
}

/* ============================================================
   PAGE BANNER (Interior Pages)
   ============================================================ */

.page-banner {
    background: var(--dark);
    padding: calc(var(--nav-height) + 4rem) 0 4rem;
    border-bottom: 1px solid var(--border-dark);
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(122,101,72,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.page-banner-inner {
    position: relative;
}

.page-banner-eyebrow {
    display: block;
    margin-bottom: 1rem;
}

.page-banner h1 {
    font-family: var(--display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    max-width: 16ch;
}

.page-banner-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    margin-top: 1rem;
    max-width: 55ch;
    line-height: 1.7;
}

/* ============================================================
   INVENTORY PAGE
   ============================================================ */

.inventory-embed-section {
    padding: var(--space-lg) 0 var(--space-xxl);
    background: var(--warm-white);
}

.watchtrack-embed-wrap {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 600px;
}

.watchtrack-embed-wrap iframe {
    width: 100%;
    border: none;
    min-height: 900px;
    display: block;
}

.embed-placeholder {
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--cream);
    border-radius: var(--radius);
}

.embed-placeholder p {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 0.08em;
    max-width: none;
    text-align: center;
}

/* ============================================================
   SERVICE PAGES (Find a Watch / Consignment / Sell)
   ============================================================ */

.service-page-content {
    padding: var(--space-xl) 0 var(--space-xxl);
}

.service-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--border);
}

.service-intro-text h2 {
    font-family: var(--display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.service-intro-text p {
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-intro-image {
    position: sticky;
    top: calc(var(--nav-height) + 2rem);
}

.service-intro-image img,
.service-intro-img-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius);
}

.service-intro-img-placeholder {
    background: linear-gradient(145deg, var(--cream), var(--cream-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
}

/* How It Works */
.how-it-works {
    padding: var(--space-xl) 0;
    background: var(--cream);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: var(--space-lg);
}

.step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    font-family: var(--display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--parchment);
    line-height: 1;
    margin-bottom: 1rem;
}

.step-title {
    font-family: var(--display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-body {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 28ch;
    margin: 0 auto;
}

/* Contact Form Section */
.contact-section {
    padding: var(--space-xl) 0 var(--space-xxl);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-info p {
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.9rem;
}

.contact-detail-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    min-width: 60px;
    padding-top: 2px;
}

.contact-detail-value {
    color: var(--text-mid);
    line-height: 1.5;
}

.contact-detail-value a:hover {
    color: var(--accent);
}

/* Forms */
.contact-form {
    background: #fff;
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: var(--radius);
}

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

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--warm-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--text);
    transition: border-color var(--transition);
    outline: none;
    line-height: 1.5;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    background: #fff;
}

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

.form-submit {
    margin-top: 0.5rem;
}

.form-note {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 1rem;
    max-width: none;
    line-height: 1.6;
}

/* ============================================================
   OUR SHOP PAGE
   ============================================================ */

.shop-intro {
    padding: var(--space-xl) 0;
    background: var(--warm-white);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: var(--space-lg);
}

.shop-feature {
    padding: 2rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.shop-feature:hover {
    border-color: var(--accent-muted);
    box-shadow: var(--shadow);
}

.shop-feature-icon {
    font-family: var(--display);
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.shop-feature-title {
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.shop-feature-body {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.75;
    max-width: none;
}

.shop-brands {
    padding: var(--space-xl) 0;
    background: var(--cream);
}

.brands-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: var(--space-md);
    justify-content: center;
}

.brand-tag {
    font-family: var(--body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.6em 1.4em;
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-mid);
    background: var(--warm-white);
    transition: all var(--transition);
}

.brand-tag:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-story {
    padding: var(--space-xl) 0 var(--space-xxl);
}

.about-story-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.about-story-image img,
.about-story-img-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius);
    position: sticky;
    top: calc(var(--nav-height) + 2rem);
}

.about-story-img-placeholder {
    background: linear-gradient(145deg, var(--cream), var(--cream-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
}

.about-story-text h2 {
    font-family: var(--display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-story-text p {
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.about-pullquote {
    border-left: 2px solid var(--accent);
    padding: 1rem 0 1rem 1.75rem;
    margin: 2rem 0;
}

.about-pullquote blockquote {
    font-family: var(--display);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.5;
    font-weight: 400;
    max-width: none;
}

.about-philosophy {
    padding: var(--space-xl) 0;
    background: var(--dark);
    text-align: center;
}

.about-philosophy-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.about-philosophy h2 {
    font-family: var(--display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-style: italic;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-philosophy p {
    color: rgba(255,255,255,0.55);
    line-height: 1.85;
    font-size: 1.05rem;
    margin: 0 auto;
    max-width: 58ch;
}

/* ============================================================
   FAQ PAGE
   ============================================================ */

.faq-section {
    padding: var(--space-xl) 0 var(--space-xxl);
}

.faq-categories {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 4rem;
    align-items: start;
}

.faq-nav {
    position: sticky;
    top: calc(var(--nav-height) + 2rem);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.faq-nav-link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.6rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
    transition: color var(--transition);
}

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

.faq-group {
    margin-bottom: 3rem;
}

.faq-group-title {
    font-family: var(--display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    cursor: pointer;
    gap: 1rem;
}

.faq-question h3 {
    font-family: var(--body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.4;
    flex: 1;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--accent);
    font-size: 1rem;
    line-height: 1;
    transition: all var(--transition);
    font-weight: 300;
    font-family: var(--body);
}

.faq-item.open .faq-toggle {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.8;
    max-width: 70ch;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding-bottom: 0;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

/* ============================================================
   BLOG — ARCHIVE
   ============================================================ */

.blog-archive {
    padding: var(--space-xl) 0 var(--space-xxl);
}

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

.blog-archive-meta {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    letter-spacing: 0.08em;
}

/* ============================================================
   BLOG — SINGLE POST
   ============================================================ */

.single-post {
    padding: var(--space-xl) 0 var(--space-xxl);
}

.post-container {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.post-header {
    margin-bottom: var(--space-md);
}

.post-header .eyebrow {
    display: block;
    margin-bottom: 1rem;
}

.post-title {
    font-family: var(--display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.post-meta {
    font-size: 0.78rem;
    color: var(--text-light);
    letter-spacing: 0.08em;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
}

.post-featured-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 2.5rem;
}

.post-content {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-mid);
}

.post-content h2 {
    font-family: var(--display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text);
    margin: 2rem 0 1rem;
}

.post-content h3 {
    font-family: var(--display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
    margin: 1.75rem 0 0.75rem;
}

.post-content p {
    max-width: none;
    margin-bottom: 1.4rem;
}

.post-content blockquote {
    border-left: 2px solid var(--accent);
    padding: 0.5rem 0 0.5rem 1.75rem;
    margin: 2rem 0;
    font-family: var(--display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text);
}

.post-content a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: var(--accent-muted);
}

.post-content ul, .post-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }

.post-content li { margin-bottom: 0.4rem; }

.post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: var(--space-xl);
}

.post-nav-item {
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.post-nav-item:hover {
    border-color: var(--accent-muted);
    box-shadow: var(--shadow);
}

.post-nav-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    display: block;
}

.post-nav-title {
    font-family: var(--display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

/* ============================================================
   404 PAGE
   ============================================================ */

.page-404 {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: var(--space-xl) 0;
}

.page-404-inner {
    text-align: center;
}

.page-404-number {
    font-family: var(--display);
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 700;
    color: var(--cream-dark);
    line-height: 1;
    margin-bottom: 1rem;
}

.page-404-title {
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.page-404-body {
    color: var(--text-mid);
    font-size: 1rem;
    margin: 0 auto 2rem;
    max-width: 45ch;
    text-align: center;
}

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
    padding: var(--space-xl) 0;
    background: var(--dark-warm);
    text-align: center;
}

.cta-banner h2 {
    font-family: var(--display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-style: italic;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255,255,255,0.55);
    max-width: 45ch;
    margin: 0 auto 2rem;
    line-height: 1.7;
    text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */

#site-footer {
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer-brand .footer-logo img {
    width: 36px;
    height: 36px;
    filter: invert(1);
}

.footer-brand .footer-logo-text {
    font-family: var(--body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
}

.footer-tagline {
    font-family: var(--display);
    font-size: 1rem;
    font-style: italic;
    color: var(--accent-light);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    max-width: 28ch;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-social a {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    padding: 0.5em 1em;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    transition: all var(--transition);
}

.footer-social a:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}

.footer-col h4 {
    font-family: var(--body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col ul li a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
    letter-spacing: 0.02em;
}

.footer-col ul li a:hover {
    color: var(--accent-light);
}

.footer-col p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    max-width: 28ch;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.05em;
}

.footer-memento {
    font-family: var(--display);
    font-size: 0.85rem;
    font-style: italic;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.05em;
}

/* ============================================================
   COMPARISON GRID (Sell vs. Consign)
   ============================================================ */

.compare-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    max-width: 860px;
    margin: 0 auto;
    background: #fff;
}

.compare-header {
    padding: 1.25rem 1.5rem;
    background: var(--dark);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-right: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.compare-header:last-child {
    border-right: none;
}

.compare-label-col {
    background: var(--mid-dark);
    color: rgba(255,255,255,0.5);
    font-style: italic;
    letter-spacing: 0.05em;
    text-transform: none;
}

.compare-row-label {
    padding: 1rem 1.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    background: var(--cream);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
}

.compare-cell {
    padding: 1rem 1.5rem;
    font-size: 0.87rem;
    color: var(--text-mid);
    line-height: 1.5;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
}

.compare-cell:last-child,
.compare-row-label:last-child {
    border-right: none;
}

.compare-highlight {
    color: var(--text);
    font-weight: 500;
}

/* ============================================================
   BRAND TAG (light-background variant)
   ============================================================ */

.brand-tag {
    display: inline-block;
    padding: 0.5em 1.25em;
    border: 1px solid var(--border);
    border-radius: 50px;
    background: #fff;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--text-mid);
    transition: all var(--transition);
}

.brand-tag:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.brands-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: var(--space-md);
}

/* ============================================================
   FAQ NAV COUNT BADGE
   ============================================================ */

.faq-nav-count {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(122,101,72,0.12);
    border-radius: 50px;
    padding: 0.1em 0.5em;
    margin-left: 0.3em;
    vertical-align: middle;
}

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */

@media (max-width: 1024px) {

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

    .nav-toggle {
        display: flex;
    }

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

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

    .about-split,
    .service-intro,
    .about-story-inner,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-split .about-image-wrap {
        max-width: 500px;
    }

    .service-intro-image {
        position: static;
    }

    .about-story-image img,
    .about-story-img-placeholder {
        position: static;
    }

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

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

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

    .faq-categories {
        grid-template-columns: 1fr;
    }

    .faq-nav {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .faq-nav-link {
        border: 1px solid var(--border);
        padding: 0.4em 1em;
        border-radius: 50px;
    }

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

/* ============================================================
   RESPONSIVE — MOBILE (≤640px)
   ============================================================ */

@media (max-width: 640px) {

    :root {
        --space-xl: 4rem;
        --space-xxl: 6rem;
    }

    .watch-grid,
    .services-grid,
    .steps-grid,
    .blog-grid,
    .blog-archive-grid,
    .shop-grid {
        grid-template-columns: 1fr;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

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

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

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

    .post-nav {
        grid-template-columns: 1fr;
    }

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

    .compare-header,
    .compare-row-label {
        display: none;
    }

    .compare-cell {
        border-right: none;
        padding: 0.75rem 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .about-image-accent {
        display: none;
    }
}
