/* ============================================
   TERRAIN LANDSCAPE CO. — style.css
   Deep forest green · Warm cream · Earth amber
   Cormorant Garamond + DM Sans
   ============================================ */

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

html { scroll-behavior: smooth; }

:root {
    --forest:   #18281A;
    --deep:     #0F1A10;
    --moss:     #3D5C3A;
    --sage:     #7A9B72;
    --cream:    #F6F2EA;
    --sand:     #EDE5D8;
    --earth:    #C4893A;
    --earth-dk: #9E6A22;
    --stone:    #9C8E7E;
    --mid:      #6B7865;
    --text:     #1C1E1A;
    --border:   rgba(255,255,255,0.1);
    --border-c: rgba(24,40,26,0.12);
}

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

img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ── Shared labels & titles ── */
.section-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--earth);
    margin-bottom: 14px;
}
.centered-label { text-align: center; }

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 500;
    line-height: 1.05;
    color: var(--text);
}

.section-title em {
    font-style: italic;
    color: var(--moss);
}

.section-title.light    { color: var(--cream); }
.section-title.light em { color: var(--sage); }

/* ── Buttons ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--earth);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.2px;
    white-space: nowrap;
}
.btn-primary:hover {
    background: var(--earth-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(196,137,58,0.3);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: rgba(255,255,255,0.75);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 13px 24px;
    border-radius: 3px;
    border: 1px solid rgba(255,255,255,0.3);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    white-space: nowrap;
}
.btn-ghost:hover {
    border-color: rgba(255,255,255,0.7);
    color: #fff;
    background: rgba(255,255,255,0.07);
}

.inline-link {
    color: var(--earth);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(196,137,58,0.35);
    padding-bottom: 1px;
    transition: border-color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.inline-link:hover { border-color: var(--earth); }

/* ── Entrance animations ── */
.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   MENU DRAWER (right-sliding panel)
   ============================================ */

.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15,26,16,0.6);
    backdrop-filter: blur(3px);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
}
.drawer-backdrop.open { opacity: 1; pointer-events: all; }

.menu-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(520px, 88vw);
    background: var(--forest);
    z-index: 2000;
    padding: 72px 64px 56px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateX(100%);
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.menu-drawer.open { transform: translateX(0); }

/* Decorative watermark text */
.drawer-deco {
    position: absolute;
    bottom: -40px;
    right: -20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 10rem;
    font-style: italic;
    color: rgba(255,255,255,0.025);
    pointer-events: none;
    line-height: 1;
    white-space: nowrap;
}

.drawer-close {
    position: absolute;
    top: 28px; right: 32px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    color: rgba(255,255,255,0.45);
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
}
.drawer-close:hover { background: rgba(255,255,255,0.1); color: #fff; }

.drawer-top {}

.drawer-eyebrow {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--earth);
    margin-bottom: 32px;
    display: block;
    opacity: 0.8;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.drawer-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-style: italic;
    font-weight: 500;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    line-height: 1.25;
    display: block;
    position: relative;
    transition: color 0.25s, padding-left 0.3s cubic-bezier(0.4,0,0.2,1);
}
.drawer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--earth);
    transition: width 0.3s ease;
}
.drawer-link:hover {
    color: var(--cream);
    padding-left: 28px;
}
.drawer-link:hover::before { width: 18px; }

.drawer-bottom { position: relative; z-index: 1; }

.drawer-divider {
    width: 40px;
    height: 1px;
    background: var(--border);
    margin-bottom: 24px;
}

.drawer-phone {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--cream);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s;
}
.drawer-phone:hover { color: var(--earth); }

.drawer-area {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    margin-bottom: 20px;
    font-weight: 500;
}

.drawer-social {
    display: flex;
    gap: 16px;
}
.drawer-social a {
    color: rgba(255,255,255,0.3);
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
}
.drawer-social a:hover { color: var(--earth); transform: translateY(-2px); }

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 48px;
    transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
    border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    background: var(--cream);
    border-color: var(--border-c);
    box-shadow: 0 1px 20px rgba(24,40,26,0.06);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-style: italic;
    font-weight: 600;
    color: var(--cream);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 9px;
    transition: color 0.3s;
    letter-spacing: 0.3px;
}
.navbar.scrolled .nav-logo { color: var(--forest); }

.nav-leaf {
    color: var(--earth);
    font-size: 0.85rem;
    transition: transform 0.6s ease;
}
.nav-logo:hover .nav-leaf { transform: rotate(20deg) scale(1.15); }

.nav-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-cta {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}
.nav-cta:hover { color: #fff; border-color: rgba(255,255,255,0.6); }
.navbar.scrolled .nav-cta { color: var(--mid); border-color: rgba(107,120,101,0.35); }
.navbar.scrolled .nav-cta:hover { color: var(--text); border-color: var(--mid); }

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    transition: opacity 0.2s;
}
.hamburger:hover { opacity: 0.7; }

.hamburger span {
    display: block;
    background: rgba(255,255,255,0.8);
    border-radius: 1px;
    transition: background 0.3s, width 0.2s;
}
.hamburger span:nth-child(1) { width: 22px; height: 1.5px; }
.hamburger span:nth-child(2) { width: 14px; height: 1.5px; }
.hamburger span:nth-child(3) { width: 22px; height: 1.5px; }
.navbar.scrolled .hamburger span { background: var(--moss); }
.hamburger:hover span:nth-child(2) { width: 22px; }

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

.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.hero-bg {
    position: absolute;
    inset: -10% 0 -10%;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15,26,16,0.92) 0%,
        rgba(15,26,16,0.55) 40%,
        rgba(15,26,16,0.2) 75%,
        rgba(15,26,16,0.05) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 80px 100px;
    max-width: 1300px;
    width: 100%;
}

.hero-pre {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--earth);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.8s ease 1.2s;
}
.loaded .hero-pre { opacity: 0.8; }

.pre-dot {
    width: 5px; height: 5px;
    background: var(--earth);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

/* Line-by-line text reveal */
.hero-heading {
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
}

.hero-line {
    overflow: hidden;
    display: block;
}

.hero-line span {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 9vw, 9rem);
    font-weight: 500;
    line-height: 0.95;
    color: var(--cream);
    letter-spacing: -1px;
    transform: translateY(110%);
    transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-line:nth-child(1) span { transition-delay: 0.2s; }
.hero-line:nth-child(2) span {
    font-style: italic;
    color: rgba(246,242,234,0.65);
    transition-delay: 0.4s;
}

.loaded .hero-line span { transform: translateY(0); }

.hero-sub {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(246,242,234,0.5);
    line-height: 1.75;
    margin-bottom: 40px;
    opacity: 0;
    transition: opacity 0.9s ease 0.9s;
}
.loaded .hero-sub { opacity: 1; }

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s ease 1.1s, transform 0.8s ease 1.1s;
}
.loaded .hero-actions { opacity: 1; transform: translateY(0); }

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    right: 80px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.8s ease 1.4s;
}
.loaded .hero-scroll { opacity: 1; }

.scroll-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.scroll-bar {
    width: 1px;
    height: 56px;
    background: rgba(255,255,255,0.12);
    overflow: hidden;
}

.scroll-bar span {
    display: block;
    width: 100%;
    height: 50%;
    background: var(--earth);
    animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop {
    0%   { transform: translateY(-100%); opacity: 0; }
    30%  { opacity: 1; }
    80%  { transform: translateY(200%); opacity: 0.3; }
    100% { transform: translateY(200%); opacity: 0; }
}

/* ============================================
   STATS STRIP
   ============================================ */

.stats-strip {
    background: var(--deep);
    padding: 32px 80px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
}

.stat-item strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--cream);
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 6px;
}

.stat-star { font-size: 1.1rem; color: var(--earth); }

.stat-item span {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.08);
}

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

.services {
    background: var(--cream);
    padding: 112px 80px;
}

.services-inner { max-width: 1200px; margin: 0 auto; }

.services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: end;
    margin-bottom: 72px;
}

.services-note {
    font-size: 0.95rem;
    color: var(--stone);
    line-height: 1.85;
    padding-bottom: 6px;
}

/* 2x3 service card grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.service-card {
    position: relative;
    height: 340px;
    overflow: hidden;
    background: var(--forest);
    cursor: default;
}

/* Photo layer — revealed on hover */
.service-photo {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.65s ease;
    z-index: 0;
}
.service-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,26,16,0.85) 0%, rgba(15,26,16,0.4) 60%, rgba(15,26,16,0.2) 100%);
}

.service-card:hover .service-photo { opacity: 1; }

/* Card body */
.service-body {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
}

.service-icon {
    font-size: 1.4rem;
    color: var(--earth);
    margin-bottom: 6px;
    transition: transform 0.3s ease;
}
.service-card:hover .service-icon { transform: scale(1.15) translateY(-3px); }

.service-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--cream);
    line-height: 1.1;
}

.service-body p {
    font-size: 0.83rem;
    color: rgba(246,242,234,0.55);
    line-height: 1.65;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease 0.1s;
}

.service-card:hover .service-body p {
    max-height: 100px;
    opacity: 1;
}

.service-from {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--earth);
    opacity: 0;
    transition: opacity 0.4s ease 0.15s;
}
.service-card:hover .service-from { opacity: 1; }

/* Subtle shine line on hover */
.service-card::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255,255,255,0.04) 50%,
        transparent 100%
    );
    transition: left 0.7s ease;
    z-index: 2;
    pointer-events: none;
}
.service-card:hover::after { left: 140%; }

/* ============================================
   QUOTE / PARALLAX SECTION
   ============================================ */

.quote-section {
    position: relative;
    height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-bg {
    position: absolute;
    inset: -15% 0;
    z-index: 0;
}

.quote-img {
    width: 100%;
    height: 130%;
    object-fit: cover;
    filter: brightness(0.35) saturate(0.7);
    will-change: transform;
}

.quote-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,26,16,0.55);
    z-index: 1;
}

.quote-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 80px;
    max-width: 900px;
}

.quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 7rem;
    color: var(--earth);
    line-height: 0.5;
    margin-bottom: 20px;
    opacity: 0.6;
}

.quote-content blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-style: italic;
    font-weight: 400;
    color: var(--cream);
    line-height: 1.35;
    letter-spacing: 0.2px;
}

.quote-attr {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(246,242,234,0.35);
    margin-top: 28px;
}

/* ============================================
   PROCESS
   ============================================ */

.process {
    background: var(--sand);
    padding: 112px 80px;
    border-top: 1px solid var(--border-c);
    border-bottom: 1px solid var(--border-c);
}

.process-inner { max-width: 1200px; margin: 0 auto; }

.process-header { margin-bottom: 72px; }

.process-track { position: relative; }

/* Animated connecting line */
.process-line-bg {
    position: absolute;
    top: 64px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 1px;
    background: var(--border-c);
    overflow: hidden;
}

.process-line-fill {
    height: 100%;
    background: var(--earth);
    width: 0%;
    transition: width 0.15s linear;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--earth);
    margin-bottom: 16px;
}

.step-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--cream);
    border: 1px solid var(--border-c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--moss);
    margin-bottom: 24px;
    transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
}

.process-step:hover .step-icon {
    background: var(--earth);
    border-color: var(--earth);
    color: #fff;
    transform: scale(1.1);
}

.process-step h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--stone);
    line-height: 1.75;
}

/* ============================================
   GALLERY
   ============================================ */

.gallery {
    background: var(--forest);
    padding: 88px 0 0;
}

.gallery-header {
    padding: 0 80px;
    margin-bottom: 52px;
}

.gallery-header .section-label { color: var(--earth); }
.gallery-header .section-title { color: var(--cream); }
.gallery-header .section-title em { color: var(--sage); }

/* Masonry-style grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 280px 280px;
    gap: 3px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--moss);
}

.gallery-item img {
    transition: transform 0.75s ease, filter 0.5s ease;
    filter: brightness(0.72) saturate(0.9);
}
.gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(0.55) saturate(1.1);
}

.g-tall  { grid-row: span 2; }
.g-wide  { grid-column: span 2; }

/* Hover overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    background: linear-gradient(to top, rgba(15,26,16,0.85) 0%, rgba(15,26,16,0.2) 55%, transparent 100%);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; transform: translateY(0); }

.g-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--cream);
    font-weight: 500;
    margin-bottom: 5px;
}

.g-loc {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--earth);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.g-type {
    font-size: 0.72rem;
    color: rgba(246,242,234,0.45);
    font-weight: 500;
}

.gallery-footer {
    padding: 28px 80px;
    border-top: 1px solid var(--border);
    margin-top: 3px;
}

.gallery-footer p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
    background: var(--cream);
    padding: 100px 80px;
    border-top: 1px solid var(--border-c);
}

.testimonials-inner {
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-slider {
    position: relative;
    min-height: 260px;
    margin: 48px 0 40px;
}

.testimonial-slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease;
}
.testimonial-slide.active {
    opacity: 1;
    pointer-events: all;
    position: relative;
}

.big-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: var(--earth);
    line-height: 0.6;
    margin-bottom: 20px;
    opacity: 0.45;
}

.testimonial-slide blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.85rem);
    font-style: italic;
    font-weight: 400;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 28px;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.testimonial-meta strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
}

.testimonial-meta span {
    font-size: 0.75rem;
    color: var(--stone);
    font-weight: 500;
}

.testimonial-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.t-dot {
    width: 6px; height: 6px;
    background: var(--border-c);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
}
.t-dot.active {
    background: var(--earth);
    transform: scale(1.4);
}
.t-dot:hover { background: var(--stone); }

/* ============================================
   CONTACT / QUOTE FORM
   ============================================ */

.contact {
    background: var(--forest);
    padding: 112px 80px;
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 96px;
    align-items: start;
}

.contact-text .section-label { color: var(--earth); opacity: 0.8; }
.contact-text .section-title { color: var(--cream); margin-bottom: 24px; }
.contact-text .section-title em { color: var(--sage); }

.contact-desc {
    font-size: 0.92rem;
    color: rgba(246,242,234,0.5);
    line-height: 1.85;
    margin-bottom: 40px;
}

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

.contact-line {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9rem;
    color: rgba(246,242,234,0.6);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 400;
}
.contact-line:hover { color: var(--cream); }
.contact-line i {
    width: 18px;
    color: var(--earth);
    opacity: 0.7;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(246,242,234,0.35);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 13px 16px;
    border-radius: 3px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
    resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--earth);
    background: rgba(255,255,255,0.07);
}
.form-group select option { background: var(--forest); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-submit {
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    align-self: flex-start;
}

.form-note {
    font-size: 0.75rem;
    color: rgba(246,242,234,0.25);
    line-height: 1.6;
}

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

.footer {
    background: var(--deep);
    border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 52px 80px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--cream);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-logo i { color: var(--earth); font-size: 0.85rem; }

.footer-left p:not(.footer-logo) {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.28);
    line-height: 1.7;
    font-weight: 400;
}

.footer-center p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.28);
    line-height: 1.85;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.footer-social {
    display: flex;
    gap: 16px;
}
.footer-social a {
    color: rgba(255,255,255,0.25);
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
}
.footer-social a:hover { color: var(--earth); transform: translateY(-2px); }

.footer-credit {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.2);
}
.footer-credit a {
    color: var(--earth);
    opacity: 0.6;
    text-decoration: none;
    transition: opacity 0.2s;
}
.footer-credit a:hover { opacity: 1; }

.footer-base {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 18px 80px;
    text-align: center;
}
.footer-base p {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.18);
    letter-spacing: 0.3px;
}

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

@media (max-width: 1100px) {
    .hero-content    { padding: 0 48px 80px; }
    .hero-scroll     { right: 48px; }
    .stats-strip     { padding: 28px 48px; }
    .services        { padding: 80px 48px; }
    .services-header { grid-template-columns: 1fr; gap: 24px; }
    .services-grid   { grid-template-columns: repeat(2, 1fr); }
    .process         { padding: 80px 48px; }
    .gallery-header  { padding: 0 48px; }
    .gallery-footer  { padding: 24px 48px; }
    .testimonials    { padding: 80px 48px; }
    .contact         { padding: 80px 48px; }
    .contact-inner   { grid-template-columns: 1fr; gap: 56px; }
    .footer-inner    { padding: 44px 48px; grid-template-columns: 1fr 1fr; }
    .footer-center   { display: none; }
    .footer-base     { padding: 18px 48px; }
    .gallery-grid    { grid-template-rows: 240px 240px; }
}

@media (max-width: 768px) {
    .navbar          { padding: 0 24px; }
    .nav-cta         { display: none; }
    .hero-content    { padding: 0 24px 72px; }
    .hero-scroll     { display: none; }
    .stats-strip     { padding: 24px; }
    .stats-inner     { gap: 28px; }
    .stat-divider    { display: none; }
    .services        { padding: 64px 24px; }
    .services-grid   { grid-template-columns: 1fr; }
    .service-card    { height: 280px; }
    .service-body p,
    .service-from    { max-height: 100px !important; opacity: 1 !important; }
    .quote-content   { padding: 0 32px; }
    .process         { padding: 64px 24px; }
    .process-steps   { grid-template-columns: 1fr 1fr; }
    .process-line-bg { display: none; }
    .gallery         { padding-top: 64px; }
    .gallery-header  { padding: 0 24px; }
    .gallery-grid    { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .g-tall          { grid-row: span 1; }
    .g-wide          { grid-column: span 2; }
    .gallery-footer  { padding: 20px 24px; }
    .testimonials    { padding: 64px 24px; }
    .contact         { padding: 64px 24px; }
    .form-row        { grid-template-columns: 1fr; }
    .footer-inner    { padding: 40px 24px; grid-template-columns: 1fr; }
    .footer-right    { align-items: flex-start; }
    .footer-base     { padding: 16px 24px; }
    .menu-drawer     { padding: 72px 36px 48px; }
    .drawer-link     { font-size: 2.4rem; }
}
