/*
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.8.2
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;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

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;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    min-width: 0;
    position: relative;
}

main, .site-main, section, header, footer {
    width: 100%;
    max-width: 100%;
}

img, svg, video, iframe {
    max-width: 100%;
    height: auto;
}

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: 4.5rem 0;
}

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

@media (min-width: 1024px) {
    .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;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c8a961;
    margin-bottom: 1.25rem;
    max-width: 100%;
}

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

@media (min-width: 700px) {
    .section__eyebrow {
        font-size: 0.75rem;
        letter-spacing: 0.25em;
        gap: 1rem;
    }
    .section__eyebrow::before,
    .section__eyebrow::after { width: 28px; }
}

.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; }

/* =========================================
   SITE TOPBAR (phone number, hours)
   ========================================= */
.site-topbar {
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.65);
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(200, 169, 97, 0.15);
    padding: 0.625rem 0;
    line-height: 1.4;
}

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

.site-topbar__left {
    display: none;
    align-items: center;
    gap: 0.625rem;
    font-weight: 500;
}

@media (min-width: 700px) {
    .site-topbar__left { display: inline-flex; }
}

.site-topbar__sep { color: #c8a961; }

.site-topbar__phone {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: color 0.2s ease;
    margin-left: auto;
}

.site-topbar__phone:hover {
    color: #c8a961;
}

.site-topbar__phone svg {
    width: 14px;
    height: 14px;
    color: #c8a961;
    flex-shrink: 0;
}

.site-topbar__phone-label {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

.site-topbar__phone-number {
    color: #ffffff;
    font-weight: 600;
}

.site-topbar__phone:hover .site-topbar__phone-number,
.site-topbar__phone:hover .site-topbar__phone-label {
    color: #c8a961;
}

/* =========================================
   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--dark {
    background: rgba(20, 20, 20, 0.96);
    border-bottom-color: rgba(200, 169, 97, 0.12);
}

.site-header--dark .site-title,
.site-header--dark .site-title a {
    color: #ffffff;
}

.site-header--dark .site-title a:hover { color: #c8a961; }

.site-header--dark .main-nav__menu a {
    color: rgba(255, 255, 255, 0.85);
}

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

.site-header--dark .main-nav__toggle span {
    background: #ffffff;
}

@media (max-width: 959px) {
    .site-header--dark .main-nav__menu {
        background: #1a1a1a;
        border-bottom-color: rgba(200, 169, 97, 0.12);
    }
    .site-header--dark .main-nav__menu a {
        border-bottom-color: rgba(255, 255, 255, 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,
.custom-logo-link img {
    max-height: 52px;
    max-width: 220px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

.custom-logo-link {
    display: inline-block;
    line-height: 0;
}

@media (min-width: 700px) {
    .custom-logo,
    .custom-logo-link img {
        max-height: 64px;
        max-width: 260px;
    }
}

/* Footer custom logo */
.footer-brand__logo {
    margin-bottom: 1.25rem;
    line-height: 0;
}

.footer-brand__logo img {
    max-width: 240px;
    max-height: 90px;
    width: auto;
    height: auto;
    display: block;
}

/* 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;
    overflow: hidden;
    background: #1a1a1a;
    width: 100%;
}

.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: 6rem 1.5rem;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    z-index: 1;
    box-sizing: border-box;
}

@media (min-width: 700px) {
    .hero__content { padding: 7rem 1.5rem; }
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c8a961;
    margin-bottom: 1.75rem;
    max-width: 100%;
}

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

@media (min-width: 700px) {
    .hero__eyebrow { font-size: 0.75rem; letter-spacing: 0.3em; gap: 1rem; }
    .hero__eyebrow::before,
    .hero__eyebrow::after { width: 36px; }
}

.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__phone {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    margin: 0 auto 2.5rem;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.3s ease;
    padding: 0.75rem 1.5rem;
}

.hero__phone:hover,
.hero__phone:focus {
    transform: translateY(-2px);
}

.hero__phone-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.hero__phone-label::before,
.hero__phone-label::after {
    content: '';
    display: inline-block;
    width: 22px;
    height: 1px;
    background: rgba(200, 169, 97, 0.5);
}

.hero__phone-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: clamp(2rem, 5.5vw, 3rem);
    font-weight: 700;
    color: #c8a961;
    line-height: 1;
    letter-spacing: -0.01em;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: color 0.3s ease;
}

.hero__phone-icon {
    width: 0.85em;
    height: 0.85em;
    color: #c8a961;
    transition: color 0.3s ease;
}

.hero__phone:hover .hero__phone-number,
.hero__phone:hover .hero__phone-icon,
.hero__phone:focus .hero__phone-number,
.hero__phone:focus .hero__phone-icon {
    color: #ffffff;
}

.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;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c8a961;
    margin-bottom: 1.5rem;
    max-width: 100%;
}

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

@media (min-width: 700px) {
    .page-hero__eyebrow {
        font-size: 0.75rem;
        letter-spacing: 0.3em;
        gap: 1rem;
    }
    .page-hero__eyebrow::before,
    .page-hero__eyebrow::after { width: 28px; }
}

/* =========================================
   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;
}

/* =========================================
   ABOUT TEASER (homepage)
   ========================================= */
.about-teaser {
    background: #1a1a1a;
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

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

.about-teaser__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

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

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

@media (min-width: 900px) {
    .about-teaser__visual { order: 1; aspect-ratio: 4 / 5; }
}

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

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

.about-teaser__visual-label .label-italic {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.about-teaser__visual-label .label-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.about-teaser__content {
    order: 1;
}

@media (min-width: 900px) {
    .about-teaser__content { order: 2; }
}

.about-teaser__content h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.about-teaser__content p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.about-teaser__signature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-teaser__signature-mark {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.5rem;
    color: #c8a961;
    line-height: 1;
}

.about-teaser__signature-text {
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

.about-teaser__cta {
    margin-top: 1.5rem;
}

/* =========================================
   BOOK PAGE
   ========================================= */
.page-hero--tall { padding: 6rem 0 5rem; }

.page-hero__trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
}

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

.book-section {
    background: #f5f5f5;
}

.book-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 1000px) {
    .book-layout {
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
        align-items: start;
    }
}

.book-form {
    background: #ffffff;
    padding: 2.5rem 1.75rem;
    border: 1px solid rgba(26, 26, 26, 0.06);
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 700px) {
    .book-form { padding: 3rem 2.5rem; }
}

.book-section__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    padding: 0;
}

.book-form__group { display: grid; gap: 1.25rem; }

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

.book-form__group .form-field label,
.package-picker legend {
    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;
}

.book-form__group .form-field input,
.book-form__group .form-field select,
.book-form__group .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;
}

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

.book-form__group .form-field textarea { resize: vertical; min-height: 120px; }

.form-field--wide { flex: 2; }

.btn--lg { padding: 1.25rem 2.5rem; font-size: 0.875rem; }

.book-form__note {
    text-align: center;
    font-size: 0.8125rem;
    color: #555555;
    margin: 0;
    font-style: italic;
}

/* Package picker (radio cards) */
.package-picker {
    border: none;
    padding: 0;
    margin: 0;
}

.package-picker > legend {
    margin-bottom: 1.25rem;
    display: block;
}

.package-option {
    display: block;
    margin-bottom: 0.75rem;
    cursor: pointer;
}

.package-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.package-card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(26, 26, 26, 0.12);
    border-radius: 2px;
    background: #ffffff;
    transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

.package-card::before {
    content: '';
    width: 14px;
    height: 14px;
    border: 1px solid rgba(26, 26, 26, 0.25);
    border-radius: 50%;
    flex-shrink: 0;
    grid-column: 1;
    grid-row: 1;
    position: absolute;
    left: 1.5rem;
    top: 1.4rem;
    background: #ffffff;
    transition: border-color 0.25s ease, background-color 0.25s ease;
}

.package-card__index {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 0.8125rem;
    color: #c8a961;
    letter-spacing: 0.05em;
    margin-left: 1.75rem;
    grid-column: 1;
    grid-row: 1;
}

.package-card__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: #1a1a1a;
    grid-column: 1;
    grid-row: 2;
    margin-left: 1.75rem;
    line-height: 1.3;
}

.package-card__meta {
    grid-column: 2;
    grid-row: 1 / span 2;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    align-items: flex-end;
}

.package-card__duration {
    font-size: 0.6875rem;
    color: #555555;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
}

.package-card__price {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.package-option input[type="radio"]:checked + .package-card {
    border-color: #c8a961;
    background: rgba(200, 169, 97, 0.04);
    box-shadow: inset 0 0 0 1px #c8a961;
}

.package-option input[type="radio"]:checked + .package-card::before {
    border-color: #c8a961;
    background: #c8a961;
    box-shadow: inset 0 0 0 3px #ffffff, inset 0 0 0 4px #c8a961;
}

.package-option input[type="radio"]:focus-visible + .package-card {
    outline: 2px solid #c8a961;
    outline-offset: 3px;
}

.package-option:hover .package-card {
    border-color: rgba(200, 169, 97, 0.6);
}

/* Booking sidebar */
.book-sidebar { display: grid; gap: 1.25rem; }

@media (min-width: 1000px) {
    .book-sidebar { position: sticky; top: 100px; }
}

.book-sidebar__card {
    background: #ffffff;
    padding: 2rem 1.75rem;
    border: 1px solid rgba(26, 26, 26, 0.06);
}

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

.book-sidebar__eyebrow {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #c8a961;
    margin-bottom: 1rem;
}

.book-sidebar__phone {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.875rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.book-sidebar__phone:hover { color: #c8a961; }

.book-sidebar__phone-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
    line-height: 1.6;
    margin: 0;
}

.book-sidebar__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.25rem;
}

.book-sidebar__steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
}

.book-sidebar__step-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.125rem;
    color: #c8a961;
    line-height: 1.4;
}

.book-sidebar__steps strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 0.25rem;
    letter-spacing: 0.02em;
}

.book-sidebar__steps p {
    font-size: 0.8125rem;
    color: #555555;
    margin: 0;
    line-height: 1.6;
}

.book-sidebar__cities {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    color: #1a1a1a;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.book-sidebar__small {
    font-size: 0.8125rem;
    color: #555555;
    margin: 0;
    font-style: italic;
}

/* =========================================
   FORM SUCCESS / ERROR / HONEYPOT
   ========================================= */
.sgf-honeypot {
    position: absolute !important;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-error {
    background: rgba(200, 169, 97, 0.08);
    border: 1px solid rgba(200, 169, 97, 0.3);
    color: #1a1a1a;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 2px;
    font-size: 0.9375rem;
}

.form-error p { margin: 0; }

.book-layout--success {
    grid-template-columns: 1fr !important;
    max-width: 720px;
    margin: 0 auto;
}

.form-success {
    background: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
    border: 1px solid rgba(26, 26, 26, 0.06);
}

@media (min-width: 700px) {
    .form-success { padding: 5rem 3rem; }
}

.form-success__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 1.75rem;
    color: #c8a961;
    border: 1px solid #c8a961;
    border-radius: 50%;
}

.form-success__mark svg { width: 36px; height: 36px; }

.form-success__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.form-success__lead {
    font-size: 1.0625rem;
    color: #555555;
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.form-success__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* =========================================
   SERVICE NAV (top of each service detail page)
   ========================================= */
.service-nav {
    background: #f5f5f5;
    border-bottom: 1px solid rgba(26, 26, 26, 0.06);
    padding: 0.75rem 0;
}

.service-nav ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 1.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.service-nav a {
    color: #555555;
    transition: color 0.2s ease;
    display: inline-block;
    padding: 0.375rem 0;
    border-bottom: 1px solid transparent;
}

.service-nav a:hover {
    color: #c8a961;
}

.service-nav__item--active a {
    color: #1a1a1a;
    border-bottom-color: #c8a961;
    font-weight: 600;
}

.service-nav__item--all a {
    color: #c8a961;
    font-weight: 600;
}

/* =========================================
   SERVICE DETAIL PAGES (interior, exterior, full, mobile)
   ========================================= */
.service-detail__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 900px) {
    .service-detail__layout {
        grid-template-columns: 1.6fr 1fr;
        gap: 4rem;
        align-items: start;
    }
}

.service-detail__main p {
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.service-detail__main p:first-of-type {
    font-size: 1.0625rem;
}

/* Pricing card sidebar */
.service-pricing-card {
    background: #1a1a1a;
    color: #ffffff;
    padding: 2.5rem 2rem;
    border: 1px solid #1a1a1a;
}

@media (min-width: 900px) {
    .service-pricing-card {
        position: sticky;
        top: 100px;
    }
}

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

.service-pricing-card__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.625rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.service-pricing-card__price {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #c8a961;
    line-height: 1;
    margin-bottom: 0.375rem;
}

.service-pricing-card__price-italic {
    font-style: italic;
    font-size: 0.9375rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    margin-right: 0.4rem;
}

.service-pricing-card__duration {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.75rem;
}

.service-pricing-card__features {
    list-style: none;
    padding: 1.25rem 0;
    margin: 0 0 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-pricing-card__features li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.625rem;
    line-height: 1.5;
}

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

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

.service-pricing-card__phone {
    text-align: center;
    margin: 1rem 0 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
}

.service-pricing-card__phone a {
    color: #ffffff;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.service-pricing-card__phone a:hover {
    color: #c8a961;
    border-bottom-color: #c8a961;
}

/* Two-column checklist */
.service-checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem 2.5rem;
    max-width: 880px;
    margin: 0 auto;
}

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

.service-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-checklist li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #1a1a1a;
    font-size: 0.9375rem;
}

.service-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 18px;
    height: 9px;
    border-left: 2px solid #c8a961;
    border-bottom: 2px solid #c8a961;
    transform: rotate(-45deg);
}

.service-checklist__group-title {
    font-size: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #c8a961;
    margin-bottom: 1.5rem;
}

.service-checklist__bonus {
    font-size: 0.9375rem;
    color: #555555;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Service-cards two-button action layout (overrides single button) */
.service-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
}

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

.service-card__actions .btn--block {
    grid-column: 1 / -1;
}

/* Prose typography for service-detail "why" section */
.prose h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.prose h3:first-child { margin-top: 0; }

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

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

/* Service FAQ items */
.service-faq__item {
    border-top: 1px solid rgba(26, 26, 26, 0.08);
    padding: 1.75rem 0;
}

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

.service-faq__item h3 {
    font-size: 1.125rem;
    margin-top: 0;
    margin-bottom: 0.625rem;
    line-height: 1.4;
}

.service-faq__item p {
    color: #555555;
    line-height: 1.75;
    margin: 0;
}

/* =========================================
   BREADCRUMBS
   ========================================= */
.breadcrumbs {
    background: #ffffff;
    border-bottom: 1px solid rgba(26, 26, 26, 0.06);
    padding: 0.875rem 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #555555;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumbs a {
    color: #555555;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover { color: #c8a961; }

.breadcrumbs span[aria-current="page"] {
    color: #1a1a1a;
    font-weight: 600;
}

.breadcrumbs__sep {
    color: #c8a961;
    font-size: 0.875rem;
    font-weight: 700;
}

/* When breadcrumbs sit above a page-hero or post-hero, give them an alt look */
.site-header--dark + main .breadcrumbs {
    background: #ffffff;
}

/* =========================================
   JOURNAL TEASER (homepage)
   ========================================= */
.journal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.journal-card {
    background: #ffffff;
    padding: 2.25rem 2rem;
    border: 1px solid rgba(26, 26, 26, 0.08);
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

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

.journal-card__meta {
    font-size: 0.6875rem;
    color: #555555;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 500;
}

.journal-card__title {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.journal-card__title a { color: #1a1a1a; }
.journal-card__title a:hover { color: #c8a961; }

.journal-card__excerpt {
    color: #555555;
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

.journal-teaser__cta {
    text-align: center;
    margin-top: 3rem;
}

/* =========================================
   POST HERO (single post)
   ========================================= */
.post-hero { padding: 5rem 0 3.5rem; }

.post-hero__title {
    color: #ffffff;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.15;
    margin: 0 0 1.5rem;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.post-hero__meta {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
}

.post-hero__dot { color: #c8a961; }

.post-featured {
    margin: -2rem auto 0;
    padding-bottom: 2rem;
}

.post-featured img {
    width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   POST CONTENT TYPOGRAPHY (single post)
   ========================================= */
.single-content {
    padding: 3rem 0 5rem;
    max-width: none;
    margin: 0;
}

.post-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #2a2a2a;
}

.post-content > p:first-of-type {
    font-size: 1.1875rem;
    line-height: 1.7;
    color: #1a1a1a;
}

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

.post-content h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    line-height: 1.25;
    padding-top: 1rem;
    border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.post-content h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.875rem;
    line-height: 1.3;
}

.post-content ul,
.post-content ol {
    padding-left: 1.5rem;
}

.post-content ul { list-style: none; padding-left: 0; }

.post-content ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.875rem;
    line-height: 1.7;
}

.post-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 14px;
    height: 1px;
    background: #c8a961;
}

.post-content ol { list-style: decimal; }
.post-content ol li { margin-bottom: 0.75rem; line-height: 1.7; }

.post-content a {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #c8a961;
    transition: color 0.2s ease, background-color 0.2s ease;
    padding-bottom: 1px;
}

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

.post-content strong { color: #1a1a1a; font-weight: 600; }

.post-content blockquote {
    border-left: 2px solid #c8a961;
    padding: 1rem 1.75rem;
    margin: 2.5rem 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    color: #1a1a1a;
    font-size: 1.25rem;
    line-height: 1.5;
}

.post-content blockquote p { margin: 0; }

.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.9375rem;
}

.post-content table th,
.post-content table td {
    text-align: left;
    padding: 0.875rem 1rem;
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
    vertical-align: top;
}

.post-content table th {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1a1a1a;
    background: #f5f5f5;
    border-bottom-color: rgba(26, 26, 26, 0.2);
}

.post-content table tr:last-child td { border-bottom: none; }

/* =========================================
   POST CTA (end of single post)
   ========================================= */
.post-cta {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3.5rem 2rem;
    margin: 4rem 0 0;
    text-align: center;
    border: 1px solid #1a1a1a;
}

.post-cta__eyebrow {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #c8a961;
    margin-bottom: 1rem;
}

.post-cta__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.post-cta__lead {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.post-cta .btn--dark {
    background: #c8a961;
    color: #1a1a1a;
    border-color: #c8a961;
}

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

/* =========================================
   RELATED POSTS SECTION
   ========================================= */
.related-posts .posts-list {
    padding: 0;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

/* Mobile-specific tightening for hero typography */
@media (max-width: 480px) {
    .hero__title { font-size: clamp(2.25rem, 11vw, 3rem); line-height: 1.08; }
    .hero__subtitle { font-size: 1rem; }
    h2 { font-size: clamp(1.75rem, 7vw, 2.25rem); }
    .stats-bar { padding: 3rem 0; }
    .stat__number { font-size: clamp(2rem, 9vw, 2.75rem); }
    .stat__label { font-size: 0.6875rem; letter-spacing: 0.15em; }
    .service-card { padding: 2rem 1.5rem; }
    .testimonial { padding: 2rem 1.5rem; }
    .contact-form-wrap { padding: 2rem 1.5rem; }
}
