/* ============================================================
   WOOD CABIN STUDIOS | style.css
   ============================================================ */

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

:root {
    --bg-primary:     #000000;
    --bg-secondary:   #0F0D0B;
    --bg-card:        #181410;
    --bg-section-alt: #111009;
    --accent:         #C8762A;
    --accent-hover:   #DA8730;
    --text-primary:   #F0EDE8;
    --text-secondary: #6E6A65;
    --border:         #252220;
    --nav-height:     80px;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

/* --- Containers --- */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
}

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

/* --- Typography --- */
.section__label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

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

.section__heading {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.05;
    color: var(--text-primary);
    margin-bottom: 32px;
}

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

/* --- Buttons --- */
.btn {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 15px 40px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
    line-height: 1;
}

.btn--primary {
    background-color: var(--accent);
    color: #000;
}

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

.btn--full {
    width: 100%;
    text-align: center;
    display: block;
    padding: 18px 40px;
}

.btn--spaced {
    margin-top: 8px;
}

/* --- Sections --- */
.section {
    padding: 96px 0;
}

/* --- Placeholder Images --- */
.placeholder-img {
    width: 100%;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-img--tall {
    aspect-ratio: 4 / 5;
}

.placeholder-img--strip {
    aspect-ratio: 1 / 1;
    flex: 1;
    border: none;
    border-right: 1px solid var(--border);
}

.placeholder-img--strip:last-child {
    border-right: none;
}

.placeholder-img span {
    font-family: 'Oswald', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
    opacity: 0.35;
}

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

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background-color: var(--bg-primary);
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s ease;
}

.nav.scrolled {
    border-bottom-color: var(--border);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
}

.nav__logo {
    height: 56px;
    width: auto;
    filter: invert(1);
    transition: opacity 0.2s ease;
}

.nav__logo-link:hover .nav__logo {
    opacity: 0.75;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav__links a {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.nav__links a:hover {
    color: var(--text-primary);
}

.nav__cta {
    color: var(--accent) !important;
    border: 1px solid rgba(200, 118, 42, 0.45);
    padding: 9px 22px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease !important;
}

.nav__cta:hover {
    background: var(--accent);
    color: #000 !important;
    border-color: var(--accent);
}

/* ============================================================
   HAMBURGER BUTTON (hidden on desktop, shown on mobile)
   ============================================================ */

.nav__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-right: -8px;
}

.nav__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-secondary);
    transition: transform 0.25s ease, opacity 0.2s ease, background-color 0.2s ease;
    transform-origin: center;
}

.nav__hamburger:hover span {
    background: var(--text-primary);
}

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

/* ============================================================
   HERO
   ============================================================ */

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

/* Swap this for a background-image when studio photo is ready:
   .hero__bg { background-image: url('hero-photo.jpg'); } */
.hero__bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 50% 25%, #1E1208 0%, #000 65%);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 55%, rgba(0,0,0,0.85) 100%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 0 24px;
    padding-top: var(--nav-height);
}

.hero__logo {
    width: clamp(160px, 55vw, 380px);
    height: auto;
    filter: invert(1);
}

.hero__tagline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.75rem, 1.6vw, 0.9rem);
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-secondary);
    max-width: 480px;
}

.hero__scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero__scroll-hint span {
    display: block;
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, var(--accent));
    margin: 0 auto;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
    50%       { opacity: 1;   transform: scaleY(1);   transform-origin: top; }
}

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

.about {
    background-color: var(--bg-section-alt);
}

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

.about__text .section__heading {
    margin-bottom: 24px;
}

.about__text p {
    color: var(--text-secondary);
    font-size: 0.975rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about__text p:last-of-type {
    margin-bottom: 28px;
}

/* ============================================================
   SERVICES
   ============================================================ */

.services {
    background-color: var(--bg-primary);
}

.services__header {
    text-align: center;
    margin-bottom: 8px;
}

.services__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background-color: var(--border);
    border: 1px solid var(--border);
}

.service-card {
    background-color: var(--bg-card);
    padding: 56px 48px;
    transition: background-color 0.25s ease;
}

.service-card:hover {
    background-color: #1E1A14;
}

.service-card__icon {
    width: 36px;
    height: 36px;
    color: var(--accent);
    margin-bottom: 28px;
}

.service-card__icon svg {
    width: 100%;
    height: 100%;
}

.service-card__title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    margin-bottom: 18px;
    line-height: 1;
}

.service-card__text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================================
   WHY WOOD CABIN
   ============================================================ */

.why {
    background-color: var(--bg-section-alt);
}

.why .section__heading {
    margin-bottom: 56px;
}

.why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-left: 1px solid var(--border);
    width: 100%;
}

.why-item {
    padding: 36px 32px;
    border-right: 1px solid var(--border);
    border-top: 2px solid var(--accent);
}

.why-item__number {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--accent);
    opacity: 0.6;
    margin-bottom: 16px;
}

.why-item__title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    margin-bottom: 14px;
    line-height: 1.2;
}

.why-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ============================================================
   PHOTO STRIP
   ============================================================ */

.photo-strip {
    display: flex;
    height: 280px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* When adding real photos, replace placeholder divs with:
   <img src="photo.jpg" alt="..." style="object-fit:cover;width:100%;height:100%"> */

/* ============================================================
   PRICING
   ============================================================ */

.pricing {
    background-color: var(--bg-primary);
}

.pricing__header {
    margin-bottom: 48px;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-bottom: 64px;
}

.price-card {
    background: var(--bg-card);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: background-color 0.2s ease;
}

.price-card:hover {
    background: #1E1A14;
}

.price-card__label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
}

.price-card__title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 4px;
}

.price-card__price {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1;
}

.price-card__price sup {
    font-size: 1rem;
    font-weight: 400;
    vertical-align: super;
    margin-right: 2px;
    color: var(--text-secondary);
}

.price-card__price-note {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.price-card__divider {
    width: 24px;
    height: 1px;
    background: var(--border);
    margin: 8px 0;
}

.price-card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-card__features li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    padding-left: 14px;
    position: relative;
}

.price-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 1px;
    background: var(--accent);
    opacity: 0.6;
}

.pricing__note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.6;
    margin-top: -48px;
    margin-bottom: 64px;
}

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

.faq {
    background-color: var(--bg-section-alt);
}

.faq__header {
    margin-bottom: 48px;
}

.faq__list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: start;
}

.faq-item__q {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-primary);
    line-height: 1.3;
    padding-top: 2px;
}

.faq-item__a {
    font-size: 0.925rem;
    color: var(--text-secondary);
    line-height: 1.8;
}


@media (max-width: 680px) {
    .pricing__grid {
        grid-template-columns: 1fr;
    }

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

/* ============================================================
   SUBMIT CTA (landing page block)
   ============================================================ */

.submit-cta {
    background-color: var(--bg-primary);
    text-align: center;
}

.submit-cta__inner {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.submit-cta__inner .section__heading {
    margin-bottom: 20px;
}

.submit-cta__text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 36px;
}

.submit-cta__btn {
    padding: 20px 64px;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
}

/* ============================================================
   PAGE HERO (first section on non-index pages)
   ============================================================ */

.page-hero {
    background-color: var(--bg-section-alt);
    border-bottom: 1px solid var(--border);
    padding: calc(var(--nav-height) + 72px) 0 72px;
    text-align: center;
}

/* ============================================================
   WARNING BANNER (submit.html top section)
   ============================================================ */

.warning-banner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 32px;
}

.warning-banner__icon {
    width: 56px;
    height: 56px;
    color: var(--accent);
    margin: 0 auto 28px;
}

.warning-banner__icon svg {
    width: 100%;
    height: 100%;
}

.warning-banner__heading {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.0;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.warning-banner__text {
    color: var(--text-secondary);
    font-size: 0.975rem;
    line-height: 1.85;
    max-width: 580px;
    margin: 0 auto;
}

/* ============================================================
   INSTRUCTIONS SECTION
   ============================================================ */

.instructions {
    background-color: var(--bg-primary);
    padding: 80px 0 96px;
}

.step {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 0 40px;
    padding: 52px 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
}

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

.step__number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1;
    color: var(--accent);
    opacity: 0.22;
    padding-top: 6px;
    user-select: none;
}

.step__content {
    min-width: 0;
}

.step__title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.45rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    margin-bottom: 18px;
    line-height: 1.1;
}

.step__body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 18px;
}

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

.step__body strong {
    color: var(--text-primary);
    font-weight: 600;
}

.step__sub {
    font-family: 'Oswald', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 24px 0 10px;
    display: block;
}

.file-tree {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.825rem;
    color: var(--text-primary);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--border);
    padding: 20px 24px;
    line-height: 1.75;
    overflow-x: auto;
    margin: 12px 0 20px;
    white-space: pre;
}

.step__notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    margin: 16px 0;
    font-size: 0.875rem;
    line-height: 1.65;
}

.step__notice--info {
    background: rgba(200, 118, 42, 0.06);
    border: 1px solid rgba(200, 118, 42, 0.2);
    color: var(--text-secondary);
}

.step__notice--warn {
    background: rgba(180, 50, 50, 0.07);
    border: 1px solid rgba(180, 50, 50, 0.25);
    color: #D48A8A;
}

.step__notice-icon {
    flex-shrink: 0;
    margin-top: 1px;
    opacity: 0.8;
}

.step__figure {
    margin: 20px 0;
    padding: 0;
}

.step__img {
    display: block;
    max-width: 100%;
    width: auto;
    border: 1px solid var(--border);
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.step__caption {
    display: block;
    margin-top: 8px;
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.5;
}

.step__placeholder {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--border);
    aspect-ratio: 16 / 6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px 0;
}

.step__placeholder span {
    font-family: 'Oswald', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
    opacity: 0.3;
}

.os-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin: 16px 0;
}

.os-block {
    background: var(--bg-card);
    padding: 28px 28px;
}

.os-block__label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
    display: block;
}

.os-block ol {
    list-style: none;
    counter-reset: os-list;
    padding: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
}

.os-block ol li {
    counter-increment: os-list;
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.os-block ol li::before {
    content: counter(os-list) ".";
    color: var(--accent);
    font-weight: 600;
    flex-shrink: 0;
    font-size: 0.8rem;
    padding-top: 1px;
}

.os-block ol li:last-child {
    margin-bottom: 0;
}

.os-block code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.82rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    padding: 1px 6px;
    color: var(--text-primary);
}

.limits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin: 20px 0;
}

.limit-item {
    background: var(--bg-card);
    padding: 24px 28px;
}

.limit-item__type {
    font-family: 'Oswald', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: block;
}

.limit-item__value {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1;
    color: var(--accent);
}

.info-file-example {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.825rem;
    color: var(--text-primary);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    padding: 20px 24px;
    line-height: 1.75;
    margin: 12px 0 20px;
    white-space: pre;
}

.info-file-example .comment {
    color: var(--text-secondary);
    opacity: 0.45;
}

@media (max-width: 680px) {
    .page-hero {
        padding-top: calc(var(--nav-height) + 48px);
        padding-bottom: 56px;
    }

    .warning-banner {
        padding: 0 20px;
    }

    .step {
        grid-template-columns: 1fr;
        gap: 12px 0;
        padding: 40px 0;
    }

    .step__number {
        font-size: 1.8rem;
        opacity: 0.3;
    }

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

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

/* ============================================================
   SUBMIT FORM
   ============================================================ */

.submit {
    background-color: var(--bg-primary);
}

.submit__intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 52px;
    margin-top: -16px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form__row {
    display: flex;
    flex-direction: column;
}

.form__row--two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form__label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.form__optional {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--text-secondary);
    opacity: 0.5;
}

.form__input {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    padding: 15px 18px;
    width: 100%;
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}

.form__input:focus {
    border-color: var(--accent);
    background-color: #1A1610;
}

.form__input::placeholder {
    color: var(--text-secondary);
    opacity: 0.4;
}

.form__select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236E6A65' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
}

.form__select option {
    background-color: #1A1610;
    color: var(--text-primary);
}

.custom-ts-wrap {
    display: none;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
}

.custom-ts-wrap.visible {
    display: flex;
}

.char-counter {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    color: var(--text-secondary);
    opacity: 0.5;
    text-align: right;
    letter-spacing: 0.04em;
}

.char-counter.warning {
    color: var(--accent);
    opacity: 1;
}

.form__textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.form__success {
    display: none;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 20px;
    border: 1px solid rgba(200, 118, 42, 0.25);
    background: rgba(200, 118, 42, 0.05);
}

.form__success.visible {
    display: block;
}

.form__success.error {
    color: #C84242;
    border-color: rgba(200, 66, 66, 0.25);
    background: rgba(200, 66, 66, 0.05);
}

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

.footer {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border);
    padding: 64px 0 40px;
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer__logo {
    height: 80px;
    width: auto;
    filter: invert(1);
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.footer__logo:hover {
    opacity: 1;
}

.footer__tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.footer__social {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.footer__social-link {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.footer__social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.footer__copy {
    font-size: 0.7rem;
    color: var(--text-secondary);
    opacity: 0.4;
    margin-top: 12px;
    letter-spacing: 0.06em;
}

/* ============================================================
   CONFIRMATION MODAL
   ============================================================ */

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.modal-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--bg-card);
    border: 1px solid var(--border);
    width: 100%;
    max-width: 560px;
    padding: 48px;
    transform: translateY(16px);
    transition: transform 0.25s ease;
}

.modal-overlay.visible .modal {
    transform: translateY(0);
}

.modal__title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.modal__subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.modal__fields {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border);
    margin-bottom: 36px;
}

.modal__field {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.modal__field-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-secondary);
    white-space: nowrap;
    flex-shrink: 0;
}

.modal__field-value {
    font-size: 0.9rem;
    color: var(--text-primary);
    text-align: right;
    word-break: break-word;
}

.modal__field-value.empty {
    color: var(--text-secondary);
    opacity: 0.4;
    font-style: italic;
}

.modal__actions {
    display: flex;
    gap: 12px;
}

.btn--ghost {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: border-color 0.2s ease, color 0.2s ease;
    flex: 1;
    text-align: center;
    padding: 15px 20px;
}

.btn--ghost:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

.modal__actions .btn--primary {
    flex: 1;
    text-align: center;
}

@media (max-width: 680px) {
    .modal-overlay {
        padding: 16px;
        align-items: flex-end;
    }

    .modal {
        padding: 28px 20px;
        max-height: 85vh;
        overflow-y: auto;
    }

    .modal__field {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }

    .modal__field-value {
        text-align: left;
    }

    .modal__actions {
        flex-direction: column;
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__image {
        order: -1;
    }

    .placeholder-img--tall {
        aspect-ratio: 16 / 9;
    }

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

    .why-item:nth-child(3),
    .why-item:nth-child(4) {
        border-top: 1px solid var(--border);
        margin-top: -1px;
    }
}

@media (max-width: 680px) {
    :root {
        --nav-height: 72px;
    }

    .section {
        padding: 72px 0;
    }

    .container {
        padding: 0 20px;
    }

    .nav__logo {
        height: 44px;
    }

    /* Show hamburger, hide links by default */
    .nav__hamburger {
        display: flex;
    }

    .nav__links {
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--bg-primary);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-6px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .nav--open .nav__links {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        transform: translateY(0);
    }

    .nav__links li {
        display: block;
    }

    .nav__links a {
        display: block;
        padding: 16px 24px;
        border-bottom: 1px solid var(--border);
        font-size: 0.85rem;
        color: var(--text-secondary);
    }

    .nav__links a:hover {
        color: var(--text-primary);
        background: rgba(255, 255, 255, 0.02);
    }

    .nav__links li:last-child a {
        border-bottom: none;
    }

    .nav__cta {
        border: none !important;
        padding: 16px 24px !important;
        color: var(--accent) !important;
    }

    .nav__cta:hover {
        background: rgba(200, 118, 42, 0.06) !important;
        color: var(--accent) !important;
    }

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

    .service-card {
        padding: 40px 28px;
    }

    .why__grid {
        grid-template-columns: 1fr;
        border-left: none;
    }

    .why-item {
        border-top: 1px solid var(--border);
        border-right: none;
        border-left: 2px solid var(--accent);
        padding: 28px 24px;
        width: 100%;
    }

    .why-item:first-child {
        border-top: 2px solid var(--accent);
        border-left: none;
    }

    .form__row--two {
        grid-template-columns: 1fr;
    }

    .photo-strip {
        height: 160px;
    }

    .footer__logo {
        height: 60px;
    }
}
