/* ============================================================
   THORANAM – MAIN STYLESHEET
   ============================================================ */

/* ── DESIGN TOKENS ── */
:root {
    --cream:          #fdf6ec;
    --warm-white:     #fffaf4;
    --gold:           #c9a84c;
    --gold-light:     #e8c97a;
    --gold-dark:      #9a7530;
    --burgundy:       #7c2d3e;
    --burgundy-light: #a63d52;
    --charcoal:       #1e1612;
    --text-body:      #3d2e24;
    --text-muted:     #8a7060;
    --border:         rgba(201, 168, 76, 0.25);
    --section-pad:    clamp(60px, 10vw, 120px);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text-body);
    overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar       { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── NAVBAR ── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 5%;
    background: rgba(253, 246, 236, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: padding 0.3s;
}
nav.scrolled { padding: 12px 5%; }

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 600;
    color: var(--burgundy);
    letter-spacing: 0.04em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-logo span { color: var(--gold); }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-body);
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}
.nav-links a:hover               { color: var(--gold-dark); }
.nav-links a:hover::after        { width: 100%; }

.nav-cta {
    background: var(--burgundy);
    color: #fff !important;
    padding: 9px 22px;
    border-radius: 2px;
    font-size: 12px !important;
    letter-spacing: 0.1em !important;
    transition: background 0.2s !important;
}
.nav-cta:hover      { background: var(--burgundy-light) !important; }
.nav-cta::after     { display: none !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span {
    width: 24px; height: 1.5px;
    background: var(--charcoal);
    transition: 0.3s;
    display: block;
}

/* ── BUTTONS ── */
.btn-primary {
    background: var(--gold);
    color: var(--charcoal);
    padding: 14px 32px;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
    border-radius: 1px;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
    border: 1px solid rgba(253, 246, 236, 0.3);
    color: var(--cream);
    padding: 14px 32px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, color 0.2s;
    border-radius: 1px;
    background: transparent;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: var(--charcoal);
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}
.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(100px, 12vw, 160px) 5% clamp(80px, 10vw, 120px) clamp(30px, 5vw, 80px);
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    animation: fadeUp 0.7s ease both;
}
.hero-badge::before { content: ''; width: 32px; height: 1px; background: var(--gold); }

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 6vw, 84px);
    font-weight: 300;
    line-height: 1.05;
    color: var(--cream);
    margin-bottom: 8px;
    animation: fadeUp 0.7s ease 0.1s both;
}
.hero-title em { font-style: italic; color: var(--gold-light); font-weight: 400; }

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(16px, 2.2vw, 26px);
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 28px;
    letter-spacing: 0.04em;
    animation: fadeUp 0.7s ease 0.2s both;
}
.hero-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(253, 246, 236, 0.6);
    max-width: 380px;
    margin-bottom: 44px;
    animation: fadeUp 0.7s ease 0.3s both;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp 0.7s ease 0.4s both; }

.hero-right { position: relative; overflow: hidden; }
.hero-right::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(124,45,62,0.4) 0%, rgba(30,22,18,0.2) 60%);
    z-index: 1;
}
.hero-right .gallery-placeholder { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9); }

.hero-stats {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 3;
    display: flex;
    background: rgba(201, 168, 76, 0.12);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    padding: 24px 5%;
    gap: 40px;
}
.stat { text-align: center; flex: 1; }
.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    color: var(--gold-light);
    line-height: 1;
}
.stat-label {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(253, 246, 236, 0.5);
    margin-top: 4px;
}

/* ── TICKER ── */
.ticker { background: var(--burgundy); padding: 12px 0; overflow: hidden; white-space: nowrap; }
.ticker-inner { display: inline-flex; animation: ticker 30s linear infinite; }
.ticker-item {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(253, 246, 236, 0.85);
    padding: 0 40px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
}
.ticker-dot { color: var(--gold-light); font-size: 8px; }

@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── SECTION COMMONS ── */
section { padding: var(--section-pad) 5%; }

/* ── PAGE HEADER ── */
.page-header {
    background: var(--charcoal);
    padding: clamp(140px, 15vw, 180px) 5% clamp(60px, 8vw, 100px);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(124,45,62,0.2) 0%, rgba(30,22,18,0.8) 100%);
    z-index: 1;
}
.page-header > * {
    position: relative;
    z-index: 2;
}
.page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 12px;
}
.page-subtitle {
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 16px;
    font-weight: 500;
}
.section-tag::before, .section-tag::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gold);
    width: 24px;
}
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--charcoal);
}
.section-title em { font-style: italic; color: var(--burgundy); }

/* ── ABOUT ── */
.about {
    background: var(--warm-white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}
.about-img-wrap { position: relative; padding: 20px; }
.about-img-wrap::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 65%; height: 65%;
    border: 2px solid var(--gold);
    border-radius: 2px;
    opacity: 0.4;
}
.about-img-wrap::after {
    content: '';
    position: absolute; bottom: 0; right: 0;
    width: 55%; height: 55%;
    background: rgba(124, 45, 62, 0.08);
    border-radius: 2px;
}
.about-img {
    width: 100%; height: 420px;
    object-fit: cover;
    border-radius: 2px;
    position: relative; z-index: 1;
}
.about-content { padding: 20px 0; }
.about-content p { font-size: 15px; line-height: 1.85; color: var(--text-muted); margin-bottom: 20px; }
.about-highlights {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; margin-top: 32px;
}
.highlight-item {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--cream);
}
.highlight-icon { font-size: 22px; margin-bottom: 8px; display: block; }
.highlight-label { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; color: var(--charcoal); }

/* ── FEATURED SERVICES (HOMEPAGE) ── */
.featured-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.featured-service-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}
.featured-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(124, 45, 62, 0.08);
}
.fs-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}
.fs-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.featured-service-card:hover .fs-image img {
    transform: scale(1.08);
}
.fs-content {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}
.fs-icon {
    position: absolute;
    top: -24px;
    right: 28px;
    width: 50px;
    height: 50px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold);
    box-shadow: 0 4px 12px rgba(30,22,18,0.05);
}
.fs-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 12px;
}
.fs-content p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 24px;
    flex: 1;
}
.fs-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--burgundy);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s, gap 0.2s;
}
.fs-link:hover {
    color: var(--gold-dark);
    gap: 12px;
}

/* ── SERVICES ── */
.services { background: var(--cream); }
.services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
    flex-wrap: wrap;
    gap: 20px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 32px 28px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative; overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(124, 45, 62, 0.12);
    border-color: rgba(201, 168, 76, 0.5);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon { display: block; margin-bottom: 16px; font-size: 36px; }
.service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 600;
    color: var(--charcoal); margin-bottom: 10px;
}
.service-desc { font-size: 13px; line-height: 1.7; color: var(--text-muted); }

/* ── GALLERY ── */
.gallery { background: var(--charcoal); padding: var(--section-pad) 5%; }
.gallery .section-title { color: var(--cream); }
.gallery .section-tag   { color: var(--gold-light); }

/* Filter tabs */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
}
.gallery-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: 1px solid rgba(201,168,76,0.3);
    background: rgba(255,255,255,0.04);
    color: rgba(253,246,236,0.6);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.25s ease;
}
.gallery-filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(201,168,76,0.08);
}
.gallery-filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
    font-weight: 700;
}
.filter-count {
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 1px 7px;
    font-size: 10px;
}
.gallery-filter-btn.active .filter-count { background: rgba(30,22,18,0.2); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    grid-auto-flow: dense;
    gap: 12px;
}
.gallery-item {
    border-radius: 4px; overflow: hidden;
    background: rgba(255,255,255,0.05);
    cursor: pointer; position: relative;
    display: block; width: 100%; height: 100%;
}
.gallery-item:nth-child(6n+1) { grid-column: span 2; }
.gallery-item:nth-child(6n+4) { grid-column: span 2; }

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(30,22,18,0.7) 0%, transparent 50%);
    opacity: 0; transition: opacity 0.3s;
    display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: #fff; font-style: italic; }

/* Gallery colour placeholders */
.g1 { background: linear-gradient(135deg, #7c2d3e 0%, #4a1828 100%); }
.g2 { background: linear-gradient(135deg, #c9a84c 0%, #8a6020 100%); }
.g3 { background: linear-gradient(135deg, #4a3020 0%, #2a1810 100%); }
.g4 { background: linear-gradient(135deg, #3e2d7c 0%, #1e1048 100%); }
.g5 { background: linear-gradient(135deg, #2d7c3e 0%, #10481e 100%); }
.g6 { background: linear-gradient(135deg, #c94c4c 0%, #7c2020 100%); }

.gallery-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 48px;
}

/* ── MINI GALLERY (HOMEPAGE PREVIEW) ── */
.mini-gallery-section {
    background: var(--charcoal);
    padding: var(--section-pad) 5%;
}
.mini-gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}
.mini-gallery-header .section-title { color: var(--cream); }
.mini-gallery-header .section-tag   { color: var(--gold-light); }

.mini-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 240px 240px;
    grid-auto-flow: dense;
    gap: 12px;
}
/* Make first image span 2 rows for visual interest */
.mini-gallery-item:first-child {
    grid-row: span 2;
}
.mini-gallery-item {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    display: block;
    cursor: pointer;
}
.mini-gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.mini-gallery-item:hover img { transform: scale(1.06); }
.mini-gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ── PROCESS ── */
.process { background: var(--warm-white); }
.process-steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 32px; margin-top: 56px; position: relative;
}
.process-steps::before {
    content: '';
    position: absolute; top: 28px;
    left: calc(12.5% + 8px); right: calc(12.5% + 8px);
    height: 1px; background: var(--border);
}
.step { text-align: center; padding: 0 10px; }
.step-num {
    width: 56px; height: 56px;
    border: 2px solid var(--gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 600;
    color: var(--gold-dark);
    background: var(--cream); position: relative; z-index: 1;
}
.step-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--charcoal); margin-bottom: 10px; }
.step-desc  { font-size: 13px; line-height: 1.7; color: var(--text-muted); }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--cream); }
.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px; margin-top: 56px;
}
.testimonial {
    background: var(--warm-white);
    padding: 32px 28px; border-radius: 4px;
    border: 1px solid var(--border); position: relative;
}
.testimonial::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px; line-height: 0.8;
    color: var(--gold); opacity: 0.3;
    position: absolute; top: 20px; left: 22px; font-weight: 600;
}
.testimonial-text {
    font-size: 14px; line-height: 1.8;
    color: var(--text-muted); margin-bottom: 24px;
    padding-top: 30px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--burgundy), var(--gold));
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 600; color: #fff;
    font-family: 'Cormorant Garamond', serif; flex-shrink: 0;
}
.author-name  { font-size: 14px; font-weight: 600; color: var(--charcoal); }
.author-event { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.stars        { color: var(--gold); font-size: 13px; margin-bottom: 10px; }

/* ── CTA BANNER ── */
.cta-banner {
    background: linear-gradient(135deg, var(--burgundy) 0%, #4a1828 100%);
    padding: clamp(60px, 8vw, 100px) 5%;
    text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
    content: '🌸'; position: absolute;
    left: 5%; top: 50%; transform: translateY(-50%);
    font-size: clamp(60px, 10vw, 120px); opacity: 0.1;
}
.cta-banner::after {
    content: '🌺'; position: absolute;
    right: 5%; top: 50%; transform: translateY(-50%);
    font-size: clamp(60px, 10vw, 120px); opacity: 0.1;
}
.cta-banner .section-title { color: #fff; margin-bottom: 16px; }
.cta-banner p {
    color: rgba(255,255,255,0.7); font-size: 15px;
    margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto;
}
.cta-banner .btn-primary { background: var(--gold-light); font-size: 13px; padding: 16px 40px; }

/* ── CONTACT ── */
.contact {
    background: var(--warm-white);
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px); align-items: start;
}
.contact-info { padding: 20px 0; }
.contact-info p { font-size: 15px; line-height: 1.8; color: var(--text-muted); margin-bottom: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.contact-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--cream); border: 1px solid var(--border); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.contact-detail-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--charcoal); margin-bottom: 2px; }
.contact-detail-text span   { font-size: 14px; color: var(--text-muted); }
.contact-detail-text a      { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.contact-detail-text a:hover{ color: var(--gold-dark); }

.contact-form {
    padding: 40px 36px; background: var(--cream);
    border-radius: 4px; border: 1px solid var(--border);
}
.contact-form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; font-weight: 600; color: var(--charcoal); margin-bottom: 24px;
}
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block; font-size: 12px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 12px 16px;
    border: 1px solid var(--border);
    background: var(--warm-white); color: var(--text-body);
    font-family: 'DM Sans', sans-serif; font-size: 14px;
    border-radius: 2px; outline: none; transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { height: 110px; resize: vertical; }
.form-submit { width: 100%; }

/* ── FOOTER ── */
footer { background: var(--charcoal); padding: clamp(48px, 6vw, 80px) 5% 40px; }
.footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px; margin-bottom: 48px;
}
.footer-brand .nav-logo { font-size: 28px; margin-bottom: 16px; display: block; color: var(--cream); }
.footer-brand .nav-logo span { color: var(--gold); }
.footer-brand p {
    font-size: 13px; line-height: 1.8;
    color: rgba(253,246,236,0.5); max-width: 240px; margin-bottom: 24px;
}
.footer-social { display: flex; gap: 12px; }
.social-icon {
    width: 38px; height: 38px;
    background: rgba(124, 45, 62, 0.15);
    border: 1px solid var(--burgundy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--gold-light);
}
.social-icon:hover {
    background: var(--burgundy);
    border-color: var(--gold);
    color: var(--cream);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 12px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 20px; font-weight: 600;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 13px; color: rgba(253,246,236,0.5);
    text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
    border-top: 1px solid rgba(201,168,76,0.12);
    padding-top: 28px; display: flex;
    align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(253,246,236,0.3); }

/* ── GO TO TOP ── */
.go-to-top {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 150;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    color: var(--charcoal);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(201,168,76,0.35);
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.go-to-top.gtt-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.go-to-top:hover {
    background: var(--gold-dark);
    box-shadow: 0 6px 24px rgba(201,168,76,0.5);
}

/* ── MOBILE BOTTOM CTA BAR ── */
.mobile-cta {
    display: none; position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 200; background: #fff;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
}
.mobile-cta-inner {
    display: grid; grid-template-columns: 1fr 1.6fr 1fr; align-items: center;
}
.mcta-btn {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 4px; padding: 6px 0;
    cursor: pointer; text-decoration: none;
    border: none; background: transparent;
    font-family: 'DM Sans', sans-serif; transition: opacity 0.2s;
}
.mcta-btn:active { opacity: 0.7; }
.mcta-icon  { font-size: 22px; line-height: 1; margin-bottom: 2px; }
.mcta-call .mcta-icon { color: var(--gold-dark); }
.mcta-map .mcta-icon { color: var(--gold-dark); }
.mcta-label { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-body); }
.mcta-whatsapp  { background: #25D366; border-radius: 4px; margin: 0 8px; padding: 10px 8px; box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3); }
.mcta-whatsapp .mcta-icon  { font-size: 24px; color: #fff; }
.mcta-whatsapp .mcta-label { color: #fff; }

/* ── MOBILE NAV OVERLAY ── */
.mobile-nav {
    display: none; position: fixed; inset: 0; z-index: 99;
    background: var(--charcoal);
    flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px; color: var(--cream);
    text-decoration: none; font-weight: 300; transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold-light); }
.mobile-nav-close {
    position: absolute; top: 20px; right: 24px;
    font-size: 28px; color: var(--cream); cursor: pointer;
    background: none; border: none;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
    .gallery-grid          { grid-template-columns: repeat(3,1fr); grid-auto-rows: 220px; }
    .gallery-item:nth-child(6n+1) { grid-column: span 2; }
    .gallery-item:nth-child(6n+4) { grid-column: span 2; }
    .footer-top            { grid-template-columns: 1fr 1fr; gap: 32px; }
    .process-steps         { grid-template-columns: repeat(2,1fr); }
    .process-steps::before { display: none; }
    .testimonials-grid     { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    body       { padding-bottom: 72px; }
    .mobile-cta    { display: block; }
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .hero                  { grid-template-columns: 1fr; min-height: 100svh; }
    .hero-right            { position: absolute; inset: 0; opacity: 0.25; }
    .hero-right::before    { opacity: 0.7; }
    .hero-left             { padding: 100px 6% 160px; }
    .hero-stats            { gap: 20px; flex-wrap: wrap; }

    .about                 { grid-template-columns: 1fr; }
    .about-img             { height: 300px; }
    .contact               { grid-template-columns: 1fr; }
    .contact-form          { padding: 28px 20px; }
    .form-row              { grid-template-columns: 1fr; }

    .gallery-grid          { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
    .gallery-item:nth-child(6n+1) { grid-column: span 2; }
    .gallery-item:nth-child(6n+4) { grid-column: span 2; }

    .featured-services     { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

    .mini-gallery-grid     { grid-template-columns: 1fr 1fr; grid-template-rows: unset; grid-auto-rows: 160px; }
    .mini-gallery-item:first-child { grid-row: span 1; }

    .process-steps         { grid-template-columns: 1fr 1fr; }
    .testimonials-grid     { grid-template-columns: 1fr; }
    .footer-top            { grid-template-columns: 1fr 1fr; gap: 24px; }

    .go-to-top { bottom: calc(72px + 16px + env(safe-area-inset-bottom, 0px)); right: 16px; width: 40px; height: 40px; font-size: 18px; }
}

@media (max-width: 480px) {
    .services-grid         { grid-template-columns: 1fr; }
    .footer-top            { grid-template-columns: 1fr; }
    .hero-stats            { justify-content: space-around; }
    .about-highlights      { grid-template-columns: 1fr; }
    .gallery-grid          { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
    .gallery-item:nth-child(6n+1) { grid-column: span 2; }
    .gallery-item:nth-child(6n+4) { grid-column: span 2; }
}
