/*
Theme Name: SGF Detail
Theme URI: https://sgfdetail.com
Author: SGF Detail
Author URI: https://sgfdetail.com
Description: Premium WordPress theme for SGF Detail, a mobile auto detailing business in Springfield, Missouri. Editorial, minimal, luxury design.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sgfdetail
Tags: business, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #555555;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'kern' 1, 'liga' 1;
}

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

a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover,
a:focus {
    color: #c8a961;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.1;
    letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.375rem, 2.2vw, 1.75rem); margin-bottom: 0.875rem; }
h4 { font-size: 1.125rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

em, .italic { font-style: italic; }

ul, ol { list-style: none; }

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

::selection {
    background: #c8a961;
    color: #1a1a1a;
}

/* =========================================
   LAYOUT
   ========================================= */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container--narrow {
    max-width: 880px;
}

.section {
    padding: 5.5rem 0;
}

@media (min-width: 900px) {
    .section { padding: 8rem 0; }
}

.section--alt { background: #f5f5f5; }
.section--dark { background: #1a1a1a; color: #ffffff; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #ffffff; }

.section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4rem;
}

.section__header--left {
    text-align: left;
    margin-left: 0;
}

.section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #c8a961;
    margin-bottom: 1.25rem;
}

.section__eyebrow::before,
.section__eyebrow::after {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: #c8a961;
}

.section__eyebrow--solo::before,
.section__eyebrow--solo::after { display: none; }

.section__title-italic {
    font-style: italic;
    font-weight: 400;
    color: #c8a961;
}

.section__lead {
    font-size: 1.0625rem;
    color: #555555;
    max-width: 600px;
    margin: 0.75rem auto 0;
    line-height: 1.7;
}

.section--dark .section__lead { color: rgba(255, 255, 255, 0.75); }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1.125rem 2.25rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    border: 1px solid transparent;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    cursor: pointer;
    line-height: 1;
}

.btn__arrow {
    display: inline-block;
    transition: transform 0.25s ease;
    font-size: 1em;
}

.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary {
    background: #c8a961;
    color: #1a1a1a;
    border-color: #c8a961;
}

.btn--primary:hover,
.btn--primary:focus {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

.btn--outline {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline:hover,
.btn--outline:focus {
    background: #ffffff;
    color: #1a1a1a;
    border-color: #ffffff;
}

.btn--outline-dark {
    background: transparent;
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.btn--outline-dark:hover,
.btn--outline-dark:focus {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

.btn--dark {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

.btn--dark:hover,
.btn--dark:focus {
    background: #c8a961;
    color: #1a1a1a;
    border-color: #c8a961;
}

.btn--block {
    display: flex;
    width: 100%;
    text-align: center;
}

.btn--small {
    padding: 0.75rem 1.5rem;
    font-size: 0.6875rem;
}

.text-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c8a961;
    border-bottom: 1px solid #c8a961;
    padding-bottom: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.text-link:hover { color: #1a1a1a; border-bottom-color: #1a1a1a; }

/* =========================================
   HEADER
   ========================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: saturate(180%) blur(8px);
    -webkit-backdrop-filter: saturate(180%) blur(8px);
    border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    gap: 2rem;
}

.site-branding { display: flex; align-items: center; }

.site-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.625rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.01em;
    margin: 0;
}

.site-title a { color: inherit; text-decoration: none; }
.site-title a:hover { color: #c8a961; }
.site-title__accent { color: #c8a961; font-style: italic; }

.custom-logo { max-height: 50px; width: auto; }

/* Navigation */
.main-nav__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 110;
}

.main-nav__toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: #1a1a1a;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.main-nav__toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.main-nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }

.main-nav__toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.main-nav__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #f5f5f5;
    padding: 1rem 1.5rem 2rem;
}

.main-nav__menu.is-open { display: block; }

.main-nav__menu ul {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.main-nav__menu a {
    display: block;
    padding: 0.875rem 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1a1a1a;
    border-bottom: 1px solid #f5f5f5;
    letter-spacing: 0.02em;
}

.main-nav__menu a:hover,
.main-nav__menu .current-menu-item > a,
.main-nav__menu .current_page_item > a { color: #c8a961; }

.header-cta { display: none; }

@media (min-width: 960px) {
    .main-nav__toggle { display: none; }
    .main-nav__menu {
        display: block;
        position: static;
        background: transparent;
        border: none;
        padding: 0;
    }
    .main-nav__menu ul { flex-direction: row; gap: 2.5rem; }
    .main-nav__menu a {
        padding: 0.5rem 0;
        border: none;
        font-size: 0.8125rem;
        font-weight: 500;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }
    .header-cta { display: inline-block; }
    .header-cta .btn { padding: 0.875rem 1.5rem; font-size: 0.6875rem; }
}

/* =========================================
   HERO
   ========================================= */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #1a1a1a;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top, rgba(200, 169, 97, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at bottom, rgba(26, 26, 26, 1) 0%, rgba(26, 26, 26, 0.85) 100%),
        #1a1a1a;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.5;
}

.hero__content {
    position: relative;
    text-align: center;
    color: #ffffff;
    padding: 7rem 1.5rem;
    max-width: 960px;
    z-index: 1;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #c8a961;
    margin-bottom: 2rem;
}

.hero__eyebrow::before,
.hero__eyebrow::after {
    content: '';
    display: inline-block;
    width: 36px;
    height: 1px;
    background: #c8a961;
}

.hero__title {
    color: #ffffff;
    margin-bottom: 1.75rem;
    line-height: 1.05;
    font-size: clamp(2.75rem, 7vw, 5.5rem);
}

.hero__title-italic {
    display: block;
    font-style: italic;
    font-weight: 400;
    color: #c8a961;
}

.hero__subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 620px;
    margin: 0 auto 2.75rem;
    line-height: 1.65;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3.5rem;
}

.hero__proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

.hero__stars {
    color: #c8a961;
    letter-spacing: 0.25em;
    font-size: 0.875rem;
}

/* =========================================
   STATS BAR
   ========================================= */
.stats-bar {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0;
    border-top: 1px solid rgba(200, 169, 97, 0.15);
    border-bottom: 1px solid rgba(200, 169, 97, 0.15);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1rem;
    text-align: center;
}

@media (min-width: 800px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat__number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #c8a961;
    line-height: 1;
    margin-bottom: 0.625rem;
    font-weight: 700;
}

.stat__label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

/* =========================================
   SERVICES
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 700px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1080px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

.service-card {
    background: #ffffff;
    border: 1px solid rgba(26, 26, 26, 0.08);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.section--alt .service-card { background: #ffffff; }

.service-card:hover {
    border-color: #c8a961;
    transform: translateY(-2px);
}

.service-card__index {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.125rem;
    color: #c8a961;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.service-card__eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #555555;
    margin-bottom: 0.875rem;
}

.service-card__title {
    font-size: clamp(1.5rem, 2vw, 1.875rem);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.service-card__description {
    color: #555555;
    margin-bottom: 1.75rem;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.service-card__features {
    list-style: none;
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(26, 26, 26, 0.08);
    flex-grow: 1;
}

.service-card__features li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.875rem;
    color: #555555;
    margin-bottom: 0.625rem;
    line-height: 1.5;
}

.service-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.625rem;
    width: 12px;
    height: 1px;
    background: #c8a961;
}

.service-card__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(26, 26, 26, 0.08);
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
    margin-bottom: 1.75rem;
}

.service-card__duration {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #555555;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.service-card__price {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1;
}

.service-card__price-italic {
    font-style: italic;
    color: #c8a961;
    font-size: 0.875rem;
    font-weight: 400;
    margin-right: 0.25rem;
}

.service-card .btn { width: 100%; }

/* =========================================
   PROCESS
   ========================================= */
.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    position: relative;
}

@media (min-width: 800px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.process-step {
    position: relative;
    padding-top: 3rem;
}

.process-step__number {
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 2.25rem;
    color: #c8a961;
    line-height: 1;
    font-weight: 400;
}

.process-step__line {
    position: absolute;
    top: 1.25rem;
    left: 4rem;
    right: 0;
    height: 1px;
    background: rgba(200, 169, 97, 0.3);
    display: none;
}

@media (min-width: 800px) {
    .process-step__line { display: block; }
    .process-step:last-child .process-step__line { display: none; }
}

.process-step__title {
    font-size: 1.375rem;
    margin-bottom: 0.625rem;
}

.process-step__description {
    color: #555555;
    font-size: 0.9375rem;
    line-height: 1.65;
}

/* =========================================
   WHY CHOOSE US
   ========================================= */
.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 800px) {
    .trust-grid { grid-template-columns: repeat(3, 1fr); }
}

.trust-item {
    text-align: left;
    padding: 0;
    border-top: 1px solid rgba(26, 26, 26, 0.1);
    padding-top: 2rem;
}

.trust-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
    color: #c8a961;
    border: 1px solid #c8a961;
}

.trust-item__icon svg { width: 26px; height: 26px; }

.trust-item__title {
    font-size: 1.5rem;
    margin-bottom: 0.875rem;
}

.trust-item__description {
    color: #555555;
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* =========================================
   GALLERY
   ========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 600px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}

@media (min-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 200px;
    }
    .gallery-item--lg { grid-column: span 3; grid-row: span 2; }
    .gallery-item--md { grid-column: span 3; grid-row: span 1; }
    .gallery-item--sm { grid-column: span 2; grid-row: span 1; }
}

.gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #1a1a1a;
    overflow: hidden;
    cursor: pointer;
}

@media (min-width: 900px) {
    .gallery-item { aspect-ratio: auto; height: 100%; }
}

.gallery-item__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse at top right, rgba(200, 169, 97, 0.1) 0%, transparent 60%),
        linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    color: #ffffff;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-item__placeholder { transform: scale(1.02); }

.gallery-item__placeholder::before {
    content: '';
    position: absolute;
    inset: 1.25rem;
    border: 1px solid rgba(200, 169, 97, 0.25);
}

.gallery-item__index {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 0.875rem;
    color: #c8a961;
    margin-bottom: 0.75rem;
    letter-spacing: 0.1em;
    z-index: 1;
}

.gallery-item__label {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-style: italic;
    color: #ffffff;
    z-index: 1;
    text-align: center;
    padding: 0 1rem;
}

.gallery-cta {
    text-align: center;
    margin-top: 4rem;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 900px) {
    .testimonial-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.testimonial {
    background: #ffffff;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(26, 26, 26, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial__quotemark {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 4rem;
    line-height: 0.6;
    color: #c8a961;
    margin-bottom: 1rem;
    height: 2rem;
}

.testimonial__stars {
    color: #c8a961;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    margin-bottom: 1.25rem;
}

.testimonial__quote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem;
    color: #1a1a1a;
    line-height: 1.55;
    margin-bottom: 2rem;
    flex-grow: 1;
    font-weight: 400;
}

.testimonial__author {
    border-top: 1px solid rgba(26, 26, 26, 0.08);
    padding-top: 1.25rem;
}

.testimonial__name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.9375rem;
    margin-bottom: 0.125rem;
    letter-spacing: 0.02em;
}

.testimonial__location {
    font-size: 0.75rem;
    color: #555555;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* =========================================
   SERVICE AREA
   ========================================= */
.service-area-block {
    text-align: center;
}

.service-area__cities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 3rem 0 2rem;
}

.service-area__city {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1a1a1a;
    padding: 0.875rem 1.5rem;
    border: 1px solid rgba(26, 26, 26, 0.15);
    border-radius: 2px;
    transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}

.service-area__city:hover {
    border-color: #c8a961;
    color: #c8a961;
}

.service-area__city--accent {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

.service-area__city--accent:hover {
    background: #c8a961;
    border-color: #c8a961;
    color: #1a1a1a;
}

.service-area__note {
    font-size: 0.875rem;
    color: #555555;
    font-style: italic;
    max-width: 500px;
    margin: 0 auto;
}

/* =========================================
   CONTACT CTA
   ========================================= */
.contact-cta {
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(200, 169, 97, 0.06) 0%, transparent 60%);
}

.contact-cta__inner { position: relative; z-index: 1; }

.contact-cta h2 { color: #ffffff; margin-bottom: 1.25rem; }

.contact-cta__lead {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.contact-cta__details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.contact-cta__detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    font-size: 0.9375rem;
}

.contact-cta__detail svg {
    width: 18px;
    height: 18px;
    color: #c8a961;
    flex-shrink: 0;
}

.contact-cta__detail a { color: #ffffff; }
.contact-cta__detail a:hover { color: #c8a961; }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 5rem 0 1.75rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 700px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-col h4 {
    color: #ffffff;
    font-size: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-brand__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-brand__title span {
    color: #c8a961;
    font-style: italic;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    max-width: 380px;
    line-height: 1.7;
}

.footer-col ul li { margin-bottom: 0.75rem; }

.footer-col ul a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    transition: color 0.25s ease;
}

.footer-col ul a:hover { color: #c8a961; }

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.625rem;
    font-size: 0.9375rem;
}

.footer-contact a { color: rgba(255, 255, 255, 0.6); }
.footer-contact a:hover { color: #c8a961; }

.site-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

.site-footer__bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8125rem;
    margin: 0;
    letter-spacing: 0.05em;
}

/* =========================================
   PAGE HERO (interior pages)
   ========================================= */
.page-hero {
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(200, 169, 97, 0.08) 0%, transparent 60%);
}

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

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

.page-hero__lead {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.page-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #c8a961;
    margin-bottom: 1.5rem;
}

.page-hero__eyebrow::before,
.page-hero__eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: #c8a961;
}

/* =========================================
   ABOUT PAGE
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.about-image {
    position: relative;
    aspect-ratio: 4 / 5;
    background:
        radial-gradient(ellipse at top right, rgba(200, 169, 97, 0.1) 0%, transparent 60%),
        linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 1.5rem;
    border: 1px solid rgba(200, 169, 97, 0.25);
}

.about-image__label {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #c8a961;
    text-align: center;
}

.about-image__label .label-italic {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.5rem;
}

.about-image__label .label-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.about-content h2 { margin-bottom: 1.5rem; }

.about-content p {
    margin-bottom: 1.25rem;
    line-height: 1.75;
}

.about-content p:last-child { margin-bottom: 0; }

.about-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 700px) {
    .about-values { grid-template-columns: repeat(3, 1fr); }
}

.about-value {
    border-top: 1px solid rgba(26, 26, 26, 0.1);
    padding-top: 1.5rem;
}

.about-value__title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.about-value__description {
    font-size: 0.9375rem;
    color: #555555;
    line-height: 1.7;
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr 1.25fr;
        gap: 4rem;
    }
}

.contact-info h2 { margin-bottom: 1.25rem; }

.contact-info p {
    line-height: 1.75;
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.contact-detail:last-child { border-bottom: 1px solid rgba(26, 26, 26, 0.08); }

.contact-detail__icon {
    width: 24px;
    height: 24px;
    color: #c8a961;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-detail__label {
    font-size: 0.6875rem;
    color: #555555;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-detail__value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.contact-detail__value a { color: inherit; }
.contact-detail__value a:hover { color: #c8a961; }

.contact-form-wrap {
    background: #f5f5f5;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(26, 26, 26, 0.06);
}

.contact-form { display: grid; gap: 1.25rem; }

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

@media (min-width: 600px) {
    .form-row { grid-template-columns: 1fr 1fr; }
}

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

.form-field label {
    font-size: 0.6875rem;
    color: #1a1a1a;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: inherit;
    font-size: 0.9375rem;
    color: #1a1a1a;
    background: #ffffff;
    border: 1px solid rgba(26, 26, 26, 0.15);
    border-radius: 2px;
    transition: border-color 0.25s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #c8a961;
}

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

/* =========================================
   PAGE / SINGLE / 404
   ========================================= */
.page-content,
.single-content {
    padding: 5rem 0;
    max-width: 760px;
    margin: 0 auto;
}

.page-title,
.entry-title { margin-bottom: 1.5rem; }

.entry-meta {
    color: #555555;
    font-size: 0.8125rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.entry-content p,
.entry-content ul,
.entry-content ol { margin-bottom: 1.5rem; }

.entry-content ul,
.entry-content ol {
    padding-left: 1.5rem;
    list-style: disc;
}

.entry-content ol { list-style: decimal; }

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.entry-content blockquote {
    border-left: 2px solid #c8a961;
    padding: 0.75rem 1.5rem;
    margin: 2rem 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    color: #1a1a1a;
    font-size: 1.125rem;
}

.entry-content a {
    color: #c8a961;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.featured-image { margin-bottom: 2.5rem; }

.error-404 {
    text-align: center;
    padding: 7rem 0;
}

.error-404__code {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: clamp(6rem, 18vw, 11rem);
    color: #c8a961;
    line-height: 1;
    margin-bottom: 1rem;
    font-weight: 400;
}

.error-404 h1 { margin-bottom: 1rem; }

.error-404 p {
    max-width: 500px;
    margin: 0 auto 2rem;
}

.post-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(26, 26, 26, 0.08);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.post-navigation a {
    font-size: 0.875rem;
    color: #1a1a1a;
}

.post-navigation a:hover { color: #c8a961; }

/* =========================================
   ARCHIVE / BLOG INDEX
   ========================================= */
.archive-header {
    text-align: center;
    padding: 5rem 0 2rem;
}

.posts-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2rem 0 5rem;
}

@media (min-width: 800px) {
    .posts-list { grid-template-columns: repeat(2, 1fr); }
}

.post-card {
    border: 1px solid rgba(26, 26, 26, 0.08);
    padding: 2.5rem;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.post-card:hover {
    border-color: #c8a961;
    transform: translateY(-2px);
}

.post-card__title { margin-bottom: 0.75rem; }
.post-card__title a { color: #1a1a1a; }
.post-card__title a:hover { color: #c8a961; }

.post-card__meta {
    font-size: 0.75rem;
    color: #555555;
    margin-bottom: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.post-card__excerpt {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.post-card__more {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c8a961;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem 0;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 0.625rem 1rem;
    border: 1px solid rgba(26, 26, 26, 0.1);
    color: #1a1a1a;
    font-size: 0.875rem;
}

.pagination .page-numbers.current {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

.pagination .page-numbers:hover {
    border-color: #c8a961;
    color: #c8a961;
}

/* =========================================
   ACCESSIBILITY HELPERS
   ========================================= */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 0.75rem 1rem;
    z-index: 200;
    font-size: 0.875rem;
}

.skip-link:focus { top: 0; color: #ffffff; }

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid #c8a961;
    outline-offset: 3px;
}
