/* style.css - Main stylesheet for Fingal Memorials */

:root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-dim: #8A6E32;
    /*--gold: #338326;*/
    /*--gold-light: #8fd85f;*/
    /*--gold-dim: #1c4507;*/
    --radius: 6px;
    --nav-h: 72px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    --bg: #0E0E0E;
    --bg2: #161616;
    --bg3: #1E1E1E;
    --bg4: #252525;
    --border: rgba(201, 168, 76, 0.18);
    --text: #E8E0D0;
    --text-muted: #8A8278;
    --text-dim: #5A5550;
    --card-bg: #181818;
    --nav-bg: rgba(14, 14, 14, 0.92);
    --hero-overlay: linear-gradient(135deg, rgba(14, 14, 14, 0.4) 0%, rgba(14, 14, 14, 0.2) 60%, rgba(14, 14, 14, 0.1) 100%);
    --section-alt: #121212;
}

[data-theme="light"] {
    --bg: #F9F6F0;
    --bg2: #F2EDE4;
    --bg3: #EAE3D8;
    --bg4: #DDD5C8;
    --border: rgba(139, 110, 50, 0.2);
    --text: #1C1814;
    --text-muted: #6B5E4E;
    --text-dim: #9B8E80;
    --card-bg: #FDFAF5;
    --nav-bg: rgba(249, 246, 240, 0.94);
    --hero-overlay: linear-gradient(135deg, rgba(14, 14, 14, 0.4) 0%, rgba(14, 14, 14, 0.2) 60%, rgba(14, 14, 14, 0.1) 100%);
    --section-alt: #F0EAE0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    transition: background var(--transition), color var(--transition);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 .5rem;
}

.display-serif {
    font-family: 'Cinzel', serif;
    letter-spacing: 0.04em;
    font-weight: 700;
}

.body-serif {
    font-family: 'Cormorant Garamond', serif;
}

.section-eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.75rem;
}

.section-heading {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 1rem;
}

.section-subheading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 580px;
    line-height: 1.8;
}

.gold {
    color: var(--gold);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    background: var(--nav-bg);
    backdrop-filter: blur(16px);
    border-bottom: 0.5px solid transparent;
    z-index: 1000;
    transition: background var(--transition), border-color var(--transition);
}

.navbar .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1;
}

.nav-logo-main {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.08em;
}

.nav-logo-sub {
    font-family: 'Lato', sans-serif;
    font-size: 0.58rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.07);
}

.nav-cta {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.6rem 1.4rem;
    background: var(--gold);
    color: #0E0E0E;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    width: 44px;
    height: 24px;
    background: var(--bg4);
    border: 0.5px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    transition: background var(--transition);
    flex-shrink: 0;
}

.theme-toggle::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    background: var(--gold);
    border-radius: 50%;
    transition: transform var(--transition);
}

[data-theme="light"] .theme-toggle::after {
    transform: translateX(20px);
}

.toggle-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    pointer-events: none;
}

.toggle-icon.moon {
    left: 5px;
}

.toggle-icon.sun {
    right: 5px;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text-muted);
    transition: transform var(--transition), opacity var(--transition);
}

.nav-mobile {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--bg2);
    border-bottom: 0.5px solid var(--border);
    padding: 1.5rem;
    z-index: 999;
}

.nav-mobile.open {
    display: block;
}

.nav-mobile ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-mobile a {
    display: block;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
}

.nav-mobile a:hover {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.07);
}

.nav-mobile .nav-cta {
    display: block;
    text-align: center;
    margin-top: 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 1000px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-overlay);
    z-index: 3;
    pointer-events: none;
}

.hero-ornament {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--bg), transparent);
    z-index: 3;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    width: 32px;
    height: 0.5px;
    background: var(--gold-dim);
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: #F5F0E8;
    margin-bottom: 1rem;
}

.hero-title em {
    font-style: normal;
    color: var(--gold);
    display: block;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    color: rgba(232, 224, 208, 0.8);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-trust {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    display: flex;
    gap: 2rem;
}

.hero-stat {
    text-align: right;
}

.hero-stat-number {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(232, 224, 208, 0.55);
    margin-top: 3px;
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 15;
}

.hero-indicator {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.indicator-dot {
    display: block;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 0.3s;
}

.hero-indicator.active .indicator-dot {
    background: var(--gold);
    transform: scale(1.2);
}

.hero-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 15;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.hero-control:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #0E0E0E;
}

.hero-control-prev {
    left: 20px;
}

.hero-control-next {
    right: 20px;
}

@media (max-width: 768px) {
    .hero-control {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    .hero-control-prev {
        left: 10px;
    }
    .hero-control-next {
        right: 10px;
    }
    .hero-indicators {
        bottom: 20px;
        gap: 8px;
    }
    .indicator-dot {
        width: 8px;
        height: 8px;
    }
    .hero-trust {
        display: none;
    }
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: var(--gold);
    color: #0E0E0E;
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: transparent;
    color: #F5F0E8;
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: 1px solid rgba(245, 240, 232, 0.35);
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.btn-outline:hover {
    background: rgba(245, 240, 232, 0.08);
    border-color: rgba(245, 240, 232, 0.6);
    transform: translateY(-2px);
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: var(--radius);
    padding: 0.7rem 1.5rem;
    transition: background var(--transition), border-color var(--transition);
}

.btn-text:hover {
    background: rgba(201, 168, 76, 0.07);
    border-color: var(--gold);
}

/* Marquee Strip */
.marquee-strip {
    background: var(--gold);
    color: #0E0E0E;
    overflow: hidden;
    height: 44px;
    display: flex;
    align-items: center;
}

.marquee-inner {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee-inner span {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.marquee-inner .dot {
    opacity: 0.5;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section-alt {
    background: var(--section-alt);
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-header.centered {
    text-align: center;
}

.section-header.centered .section-subheading {
    margin: 0 auto;
}

.divider-gold {
    width: 48px;
    height: 1.5px;
    background: var(--gold);
    margin: 1rem 0 0;
}

.divider-gold.centered {
    margin: 1rem auto 0;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5px;
}

.cat-card {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg3);
}

.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cat-card:hover img {
    transform: scale(1.08);
}

.cat-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 8, 6, 0.9) 0%, transparent 55%);
    transition: background var(--transition);
}

.cat-card:hover .cat-card-overlay {
    background: linear-gradient(to top, rgba(10, 8, 6, 0.96) 0%, rgba(10, 8, 6, 0.3) 70%);
}

.cat-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
}

.cat-count {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity var(--transition), transform var(--transition);
}

.cat-card:hover .cat-count {
    opacity: 1;
    transform: translateY(0);
}

.cat-name {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #F5F0E8;
    margin-top: 0.25rem;
    line-height: 1.3;
}

.cat-arrow {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.85rem;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity var(--transition), transform var(--transition);
}

.cat-card:hover .cat-arrow {
    opacity: 1;
    transform: scale(1);
}

.cat-placeholder {
    background: var(--bg3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold-dim);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.prod-card {
    background: var(--card-bg);
    border: 0.5px solid var(--border);
    border-radius: var(--radius);
    overflow: visible;
    transition: border-color var(--transition), transform var(--transition);
    cursor: pointer;
}

.prod-card:hover {
    border-color: var(--gold-dim);
    transform: translateY(-4px);
}


.prod-img {
    overflow: visible;
    background: var(--bg3);
    position: relative;
    /* No aspect-ratio - container adapts to image */
}

.prod-img img {
    width: 100%;
    height: auto;  /* Height auto, maintains image ratio */
    object-fit: contain;
    transition: transform 0.5s ease;
    display: block;
}

.prod-card:hover .prod-img img {
    transform: scale(1.06);
}

.prod-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--gold);
    color: #0E0E0E;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 3px;
}

.prod-body {
    padding: 1.25rem;
}

.prod-title {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.prod-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prod-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 0.5px solid var(--border);
}

.prod-price {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
}

.prod-link {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--transition);
}

.prod-card:hover .prod-link {
    color: var(--gold);
}

/* Why Us Grid */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--bg3);
    border: 0.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.why-item {
    padding: 2.5rem;
    border-right: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    transition: background var(--transition);
}

.why-item:hover {
    background: var(--bg4);
}

.why-item:nth-child(2n) {
    border-right: none;
}

.why-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.why-icon {
    width: 44px;
    height: 44px;
    background: rgba(201, 168, 76, 0.1);
    border: 0.5px solid rgba(201, 168, 76, 0.25);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
}

.why-title {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.why-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Cemetery List */
.cemetery-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.75rem;
}

.cemetery-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: var(--card-bg);
    border: 0.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.82rem;
    color: var(--text-muted);
    transition: border-color var(--transition), color var(--transition), background var(--transition);
    cursor: pointer;
}

.cemetery-item:hover {
    border-color: var(--gold-dim);
    color: var(--text);
    background: var(--bg3);
}

.cemetery-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

/* About Layout */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-main {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius);
}

.about-since {
    position: absolute;
    top: -1rem;
    left: -1rem;
    background: var(--gold);
    color: #0E0E0E;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    text-align: center;
    z-index: 1;
}

.about-since-year {
    font-family: 'Cinzel', serif;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.about-since-label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.7;
    display: block;
    margin-top: 3px;
}

.about-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.6;
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    border-left: 2px solid var(--gold);
}

.about-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 1rem;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dim);
    display: block;
    margin-top: 0.35rem;
}

/* Testimonials */
.testimonial-section {
    background: var(--bg3);
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    padding: 5rem 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--card-bg);
    border: 0.5px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
}

.star {
    color: var(--gold);
    font-size: 0.9rem;
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}

.testimonial-loc {
    font-size: 0.72rem;
    color: var(--text-dim);
    margin-top: 2px;
}

/* CTA Banner */
.cta-banner {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: #0A0A0A;
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    background-image: url('../pics/hero-01.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.75rem, 4vw, 3.25rem);
    font-weight: 700;
    color: #F5F0E8;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.cta-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: rgba(232, 224, 208, 0.7);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--gold);
    margin: 1.5rem 0 0;
    justify-content: center;
}

/* Contact Strip */
.contact-strip {
    background: var(--bg2);
    border-top: 0.5px solid var(--border);
    padding: 2.5rem 0;
}

.contact-strip-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.contact-item-icon {
    width: 36px;
    height: 36px;
    background: rgba(201, 168, 76, 0.1);
    border: 0.5px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.contact-item-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dim);
    display: block;
}

.contact-item-value {
    font-weight: 700;
    color: var(--text);
}

/* Footer */
footer {
    background: #080808;
    border-top: 0.5px solid rgba(201, 168, 76, 0.15);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand-name {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.06em;
    margin-bottom: 0.25rem;
}

.footer-brand-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.88rem;
    font-style: italic;
    color: rgba(232, 224, 208, 0.35);
    margin-bottom: 1.25rem;
}

.footer-brand-desc {
    font-size: 0.8rem;
    color: rgba(232, 224, 208, 0.35);
    line-height: 1.8;
}

.footer-col-title {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(201, 168, 76, 0.7);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.82rem;
    color: rgba(232, 224, 208, 0.35);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: rgba(201, 168, 76, 0.8);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 0.5px solid rgba(201, 168, 76, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    font-size: 0.72rem;
    color: rgba(232, 224, 208, 0.2);
}

/* Scroll Animations */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.view-all-wrap {
    text-align: center;
    margin-top: 2.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-img-wrap {
        max-width: 500px;
        margin: 0 auto;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --nav-h: 64px;
    }
    .nav-links,
    .nav-cta {
        display: none;
    }
    .nav-burger {
        display: flex;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .why-item:nth-child(2n) {
        border-right: 0.5px solid var(--border);
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 4rem 0;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions a,
    .hero-actions button {
        width: 100%;
        justify-content: center;
    }
    .stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

.two-col-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.two-col-video iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
}

/* Mobile */
@media (max-width: 768px) {
    .two-col-section {
        grid-template-columns: 1fr;
    }

    .two-col-video iframe {
        min-height: 250px;
    }
}