/* ============================================================
   AV PHOTO — GHOST THEME STYLES
   Light / Minimal aesthetic
   ============================================================ */

/* === DESIGN TOKENS ======================================== */
:root {
    --clr-bg:           #FAFAF8;
    --clr-white:        #FFFFFF;
    --clr-text:         #1C1C1C;
    --clr-text-mid:     #4A4A4A;
    --clr-text-light:   #7A7A7A;
    --clr-accent:       #C9A96E;
    --clr-accent-dark:  #A88650;
    --clr-border:       #E8E4DF;
    --clr-border-light: #F0EDE9;

    --ff-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --ff-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --max-width:  1320px;
    --nav-h:      72px;

    --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
}

/* === RESET ================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    background: var(--clr-bg);
    color: var(--clr-text);
    font-family: var(--ff-body);
    font-weight: 300;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
ul { list-style: none; }
select { appearance: none; }

/* === LAYOUT =============================================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 48px;
}

main { padding-top: var(--nav-h); }

/* === NAVIGATION =========================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    background: rgba(250, 250, 248, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--clr-border);
    z-index: 1000;
    transition: box-shadow 0.3s var(--ease);
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
}

.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo img {
    height: 36px;
    width: auto;
}

.logo-text {
    font-family: var(--ff-heading);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--clr-text);
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--clr-text-mid);
    transition: color 0.2s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--clr-accent);
    transform: scaleX(0);
    transition: transform 0.25s var(--ease);
    transform-origin: left;
}

.nav-link:hover,
.nav-link.active { color: var(--clr-text); }

.nav-link:hover::after { transform: scaleX(1); }

.nav-contact {
    background: var(--clr-text);
    color: var(--clr-white) !important;
    padding: 8px 20px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    transition: background 0.2s;
}

.nav-contact:hover { background: var(--clr-accent); }
.nav-contact::after { display: none; }

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 36px;
    height: 36px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--clr-text);
    transition: all 0.3s var(--ease);
    transform-origin: center;
}

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

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--clr-white);
    border-bottom: 1px solid var(--clr-border);
    padding: 28px 48px;
    z-index: 999;
    transform: translateY(-8px);
    opacity: 0;
    transition: all 0.25s var(--ease);
}

.mobile-menu.open {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mobile-menu a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-text);
    transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--clr-accent); }

/* === HERO ================================================= */
.hero {
    position: relative;
    height: calc(100vh - var(--nav-h));
    min-height: 580px;
    max-height: 960px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-color: #2a2a2a;
    background-size: cover;
    background-position: center;
    transition: transform 12s ease;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(0,0,0,0.25) 0%,
        rgba(0,0,0,0.55) 100%
    );
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    padding: 0 24px;
    max-width: 760px;
}

.hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--ff-heading);
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    font-weight: 300;
    opacity: 0.85;
    line-height: 1.8;
    max-width: 520px;
    margin: 0 auto 40px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-line {
    display: block;
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
    animation: scrollPulse 2s infinite;
}

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

/* === BUTTONS ============================================== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: all 0.25s var(--ease);
    cursor: pointer;
    border: none;
    line-height: 1;
}

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

.btn-primary:hover {
    background: var(--clr-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,169,110,0.35);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.65);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.9);
}

.btn-dark {
    background: var(--clr-text);
    color: white;
}

.btn-dark:hover {
    background: #333;
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--clr-text);
    border: 1px solid var(--clr-border);
}

.btn-outline-dark:hover {
    border-color: var(--clr-text);
}

/* === SECTIONS ============================================= */
.section { padding: 104px 0; }
.section-alt { background: var(--clr-white); }

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--ff-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--clr-text);
}

.section-desc {
    margin-top: 18px;
    font-size: 0.95rem;
    color: var(--clr-text-light);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* === FEATURED GRID (Homepage) ============================= */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 4px;
    margin-bottom: 48px;
}

.featured-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
    background: var(--clr-border-light);
}

.featured-item--large {
    grid-column: 1 / span 2;
    aspect-ratio: 16/9;
}

.featured-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.featured-item:hover img { transform: scale(1.04); }

.featured-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.featured-item:hover .featured-item-overlay { opacity: 1; }

.featured-item-title {
    font-family: var(--ff-heading);
    font-size: 1rem;
    color: white;
    line-height: 1.3;
}

/* === PHILOSOPHY (Homepage) ================================ */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
    text-align: center;
}

.philosophy-item {}

.philosophy-icon {
    font-size: 1.6rem;
    color: var(--clr-accent);
    margin-bottom: 20px;
    display: block;
}

.philosophy-item h3 {
    font-family: var(--ff-heading);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 14px;
}

.philosophy-item p {
    font-size: 0.88rem;
    color: var(--clr-text-light);
    line-height: 1.8;
}

/* === ABOUT TEASER (Homepage) ============================== */
.about-teaser {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
}

.about-teaser-text .section-eyebrow { text-align: left; }

.about-teaser-text .section-title { text-align: left; }

.about-teaser-body {
    font-size: 0.95rem;
    color: var(--clr-text-light);
    line-height: 1.9;
    margin-top: 20px;
}

.about-teaser-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.about-teaser-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--clr-border-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === PAGE HERO ============================================ */
.page-hero {
    background: var(--clr-white);
    border-bottom: 1px solid var(--clr-border);
}

.page-hero--short {
    padding: 72px 0 64px;
}

.page-hero .section-eyebrow { text-align: left; }

.page-hero-title {
    font-family: var(--ff-heading);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-top: 8px;
}

.page-hero-desc {
    margin-top: 16px;
    font-size: 0.95rem;
    color: var(--clr-text-light);
    max-width: 560px;
    line-height: 1.8;
}

/* === GALLERY PAGE ========================================= */
.gallery-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 8px 22px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid var(--clr-border);
    background: transparent;
    color: var(--clr-text-light);
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--clr-text);
    border-color: var(--clr-text);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 4px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    display: block;
    cursor: pointer;
    background: var(--clr-border-light);
}

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

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item-info {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
}

.gallery-item:hover .gallery-item-info { opacity: 1; }

.gallery-item-title {
    font-family: var(--ff-heading);
    font-size: 1rem;
    color: white;
    line-height: 1.3;
    margin-bottom: 4px;
}

.gallery-item-tag {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
}

/* === SINGLE PHOTO PAGE ==================================== */
.photo-page {
    display: grid;
    grid-template-columns: 1fr 420px;
    min-height: calc(100vh - var(--nav-h));
}

.photo-image-panel {
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: var(--nav-h);
    height: calc(100vh - var(--nav-h));
    overflow: hidden;
}

.photo-full-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.photo-details-panel {
    padding: 56px 48px 80px;
    background: var(--clr-bg);
    overflow-y: auto;
    border-left: 1px solid var(--clr-border);
}

.breadcrumb {
    margin-bottom: 28px;
}

.breadcrumb a {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-text-light);
    transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--clr-accent); }

.photo-title {
    font-family: var(--ff-heading);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 12px;
}

.photo-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.photo-tag {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--clr-accent);
}

.photo-divider {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 32px 0;
}

.price-display {
    font-family: var(--ff-heading);
    font-size: 1.8rem;
    color: var(--clr-text);
    margin-bottom: 28px;
}

.size-selector,
.finish-selector { margin-bottom: 28px; }

.size-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--clr-text);
    margin-bottom: 12px;
}

.size-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.size-btn {
    padding: 9px 16px;
    font-size: 0.78rem;
    font-family: var(--ff-body);
    border: 1px solid var(--clr-border);
    background: transparent;
    color: var(--clr-text-mid);
    cursor: pointer;
    transition: all 0.2s;
}

.size-btn:hover,
.size-btn.active {
    border-color: var(--clr-text);
    background: var(--clr-text);
    color: white;
}

.photo-description {
    font-size: 0.9rem;
    color: var(--clr-text-light);
    line-height: 1.85;
    margin-bottom: 36px;
}

.photo-description p { margin-bottom: 1em; }

.purchase-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-purchase {
    display: block;
    width: 100%;
    padding: 18px 32px;
    background: var(--clr-accent);
    color: white;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.25s var(--ease);
}

.btn-purchase:hover {
    background: var(--clr-accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201,169,110,0.3);
}

.purchase-note {
    font-size: 0.72rem;
    color: var(--clr-text-light);
    text-align: center;
    line-height: 1.7;
}

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

.photo-meta-item {
    font-size: 0.82rem;
    color: var(--clr-text-light);
    line-height: 1.5;
}

.photo-meta-item strong {
    color: var(--clr-text);
    font-weight: 500;
}

/* Related grid */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

/* === SHOP PAGE ============================================ */
.shop-info-bar {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-bottom: 1px solid var(--clr-border);
    margin-bottom: 64px;
    font-size: 0.8rem;
    color: var(--clr-text-light);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--clr-white);
    transition: box-shadow 0.3s var(--ease);
}

.product-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.product-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    display: block;
    background: var(--clr-border-light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s var(--ease);
}

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

.product-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-image-overlay span {
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.7);
    padding: 10px 20px;
}

.product-card:hover .product-image-overlay { opacity: 1; }

.product-info { padding: 24px; }

.product-name {
    font-family: var(--ff-heading);
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 6px;
}

.product-name a { transition: color 0.2s; }
.product-name a:hover { color: var(--clr-accent); }

.product-category {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 12px;
}

.product-desc {
    font-size: 0.84rem;
    color: var(--clr-text-light);
    line-height: 1.65;
    margin-bottom: 20px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--clr-border-light);
}

.product-price {
    font-family: var(--ff-heading);
    font-size: 1.3rem;
    color: var(--clr-text);
}

.btn-buy {
    display: inline-block;
    padding: 10px 22px;
    background: var(--clr-text);
    color: white;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-buy:hover { background: var(--clr-accent); }

/* Info grid on shop page */
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.info-card { text-align: center; }

.info-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 16px;
}

.info-card h3 {
    font-family: var(--ff-heading);
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 0.83rem;
    color: var(--clr-text-light);
    line-height: 1.75;
}

.info-card a {
    color: var(--clr-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

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

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

.about-image-frame img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.about-img-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--clr-border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    font-size: 0.8rem;
    color: var(--clr-text-light);
    line-height: 1.7;
}

.about-image-frame::before {
    content: '';
    position: absolute;
    top: -14px;
    left: -14px;
    right: 14px;
    bottom: 14px;
    border: 1px solid var(--clr-accent);
    pointer-events: none;
    z-index: -1;
}

.about-image-caption {
    margin-top: 14px;
    font-size: 0.75rem;
    color: var(--clr-text-light);
    font-style: italic;
    text-align: center;
}

.about-title {
    font-family: var(--ff-heading);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 28px;
    margin-top: 12px;
}

.about-bio {
    font-size: 0.95rem;
    line-height: 1.95;
    color: var(--clr-text-light);
    margin-bottom: 40px;
}

.about-bio p { margin-bottom: 1.2em; }

.credentials {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
    padding: 32px;
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
}

.credential-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.credential-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    width: 32px;
    text-align: center;
    padding-top: 2px;
}

.credential-text h4 {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
    color: var(--clr-text);
}

.credential-text p {
    font-size: 0.82rem;
    color: var(--clr-text-light);
    line-height: 1.65;
}

.about-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.site-quote {
    max-width: 700px;
    margin: 0 auto;
    font-family: var(--ff-heading);
    font-style: italic;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    line-height: 1.65;
    color: var(--clr-text-mid);
    position: relative;
    padding: 0 32px;
}

.site-quote::before,
.site-quote::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--clr-accent);
    margin: 24px auto;
}

/* === CONTACT PAGE ========================================= */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: start;
}

.contact-heading {
    font-family: var(--ff-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 0.95rem;
    color: var(--clr-text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 28px;
    padding-top: 2px;
}

.contact-detail-text h4 {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--clr-text);
    margin-bottom: 4px;
}

.contact-detail-text p {
    font-size: 0.85rem;
    color: var(--clr-text-light);
    line-height: 1.65;
}

.contact-detail-text a {
    color: var(--clr-accent);
    transition: opacity 0.2s;
}

.contact-detail-text a:hover { opacity: 0.75; }

/* Contact form */
.contact-form-wrap {
    background: var(--clr-white);
    padding: 48px;
    border: 1px solid var(--clr-border);
}

.form-group { margin-bottom: 24px; }

.form-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--clr-text);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 13px 16px;
    font-size: 0.9rem;
    font-family: var(--ff-body);
    font-weight: 300;
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    transition: border-color 0.2s;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--clr-accent);
}

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

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--clr-text);
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.25s;
    font-family: var(--ff-body);
}

.form-submit:hover { background: var(--clr-accent); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-status {
    margin-top: 16px;
    font-size: 0.85rem;
    text-align: center;
    min-height: 24px;
    line-height: 1.5;
}

.form-status.success { color: #3a7a3a; }
.form-status.error   { color: #c0392b; }

/* === FOOTER =============================================== */
.site-footer {
    background: var(--clr-text);
    color: rgba(255,255,255,0.55);
    padding: 72px 0 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 56px;
}

.footer-logo {
    display: block;
    font-family: var(--ff-heading);
    font-size: 1.3rem;
    color: white;
    margin-bottom: 18px;
}

.footer-brand p {
    font-size: 0.83rem;
    line-height: 1.75;
    max-width: 290px;
}

.footer-social {
    display: inline-block;
    margin-top: 20px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-accent);
    transition: opacity 0.2s;
}

.footer-social:hover { opacity: 0.75; }

.footer-nav h4 {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-nav a:hover { color: var(--clr-accent); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
}

/* === UTILITIES ============================================ */
.text-center { text-align: center; }
.placeholder-img {
    width: 100%;
    height: 100%;
    background: var(--clr-border-light);
}
.placeholder-img--dark { background: #2a2a2a; }

.empty-state {
    text-align: center;
    padding: 80px 0;
    color: var(--clr-text-light);
    font-size: 0.9rem;
}

.page-content {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.85;
    color: var(--clr-text-light);
}

.page-content h1, .page-content h2, .page-content h3 {
    font-family: var(--ff-heading);
    font-weight: 400;
    color: var(--clr-text);
    margin-bottom: 20px;
    margin-top: 40px;
}

.page-content p { margin-bottom: 1.4em; }

.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }

/* Fade-in animation */
.js-fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.js-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.page-feature-image {
    width: 100%;
    max-height: 520px;
    overflow: hidden;
}

.page-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

 ========================= */
/* Required classes for Ghost's block editor (wide/full images,
   galleries, bookmarks, etc.) */

.kg-width-wide {
    margin-left: calc(50% - 50vw + 48px);
    margin-right: calc(50% - 50vw + 48px);
    max-width: none;
}

.kg-width-full {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: none;
    width: 100vw;
}

.kg-image { max-width: 100%; }

.kg-image-card { margin: 0 0 2em; }

.kg-image-card figcaption,
.kg-embed-card figcaption,
.kg-video-card figcaption {
    font-size: 0.78rem;
    color: var(--clr-text-light);
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}

.kg-gallery-container {
    display: flex;
    flex-direction: column;
    max-width: 100%;
}

.kg-gallery-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 4px;
    margin-bottom: 4px;
}

.kg-gallery-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kg-bookmark-card {
    border: 1px solid var(--clr-border);
    display: flex;
    margin-bottom: 1.5em;
}

.kg-bookmark-content {
    flex: 1;
    padding: 20px;
}

.kg-bookmark-title {
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.kg-bookmark-description {
    font-size: 0.82rem;
    color: var(--clr-text-light);
    margin-bottom: 10px;
}

.kg-bookmark-metadata {
    font-size: 0.72rem;
    color: var(--clr-text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.kg-bookmark-icon {
    width: 16px;
    height: 16px;
}

.kg-bookmark-thumbnail {
    width: 160px;
    flex-shrink: 0;
}

.kg-bookmark-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kg-callout-card {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-left: 4px solid var(--clr-accent);
    margin-bottom: 1.5em;
}

.kg-callout-emoji { font-size: 1.2rem; flex-shrink: 0; }

.kg-callout-text { font-size: 0.92rem; line-height: 1.7; }

.kg-video-card { margin-bottom: 1.5em; }
.kg-video-card video { width: 100%; display: block; }

.kg-toggle-card {
    border: 1px solid var(--clr-border);
    padding: 16px 20px;
    margin-bottom: 1em;
}

.kg-toggle-heading-text {
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
}

.kg-toggle-content {
    font-size: 0.88rem;
    color: var(--clr-text-light);
    margin-top: 12px;
    line-height: 1.75;
}

@media (max-width: 768px) {
    .kg-width-wide {
        margin-left: calc(50% - 50vw + 24px);
        margin-right: calc(50% - 50vw + 24px);
    }
    .kg-bookmark-thumbnail { display: none; }
}


@media (max-width: 1100px) {
    .photo-page {
        grid-template-columns: 1fr;
    }
    .photo-image-panel {
        position: relative;
        top: 0;
        height: 65vw;
        min-height: 340px;
        max-height: 600px;
    }
    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .about-image-frame::before { display: none; }
    .info-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .section { padding: 72px 0; }

    .site-nav { display: none; }
    .nav-toggle { display: flex; }

    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 0.9rem; }

    .featured-grid {
        grid-template-columns: 1fr;
    }
    .featured-item--large {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }

    .philosophy-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-teaser     { grid-template-columns: 1fr; gap: 40px; }

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

    .shop-grid { grid-template-columns: 1fr; gap: 28px; }
    .shop-info-bar { gap: 16px; }
    .info-grid { grid-template-columns: 1fr; gap: 32px; }

    .contact-form-wrap { padding: 32px 24px; }

    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

    .page-hero--short { padding: 48px 0 40px; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-cta { flex-direction: column; align-items: center; }
    .btn { padding: 14px 28px; }
}
