/* ===================================================================
   Guyva Brickwork — styles
   Red / charcoal industrial theme
   =================================================================== */

:root {
    --red: #c8202e;
    --red-dark: #a0141f;
    --ink: #181a1e;
    --ink-2: #23262d;
    --ink-3: #2e323b;
    --gray: #6c727c;
    --gray-light: #9aa0a8;
    --line: rgba(20,22,26,0.10);
    --bg: #ffffff;
    --bg-2: #f4f5f7;
    --bg-3: #eceef1;
    --white: #ffffff;
    --radius: 6px;
    --shadow: 0 10px 30px rgba(20,22,26,0.10);
    --shadow-lg: 0 24px 60px rgba(20,22,26,0.18);
    --max: 1180px;
    --t: 0.25s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 22px; }

h1, h2, h3, h4 { font-family: 'Zilla Slab', Georgia, serif; font-weight: 700; line-height: 1.12; letter-spacing: 0.2px; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); text-transform: uppercase; }
.section { padding: 72px 0; }
.section-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.kicker {
    display: inline-block; font-family: 'Zilla Slab', Georgia, serif; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2.5px; font-size: 0.82rem;
    color: var(--red); margin-bottom: 10px; position: relative; padding-left: 26px;
}
.kicker::before { content: ''; position: absolute; left: 0; top: 50%; width: 18px; height: 2px; background: var(--red); transform: translateY(-50%); }
.section-head .kicker { padding-left: 0; }
.section-head .kicker::before { display: none; }
.section-lead { color: var(--gray); margin-top: 14px; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: 'Zilla Slab', Georgia, serif; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1px; font-size: 0.95rem;
    padding: 14px 30px; border-radius: var(--radius); cursor: pointer; border: 2px solid transparent;
    transition: transform var(--t), background var(--t), color var(--t), box-shadow var(--t);
}
.btn-primary { background: var(--red); color: #fff; border-color: var(--red); box-shadow: 0 8px 22px rgba(200,32,46,0.30); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-dark:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Brand ---------- */
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { display: inline-flex; gap: 3px; }
.brand-mark span { width: 9px; height: 22px; background: var(--red); border-radius: 1px; display: block; }
.brand-mark span:nth-child(2) { background: #fff; box-shadow: inset 0 0 0 1.5px var(--red); }
.brand-mark span:nth-child(3) { background: var(--ink); }
.brand-text { font-family: 'Zilla Slab', Georgia, serif; font-weight: 500; font-size: 1.32rem; letter-spacing: 1.5px; color: var(--ink); }
.brand-text strong { font-weight: 700; color: var(--red); }

/* ---------- Nav ---------- */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.0); transition: background var(--t), box-shadow var(--t), padding var(--t);
    padding: 18px 0;
}
.nav.scrolled { background: #fff; box-shadow: 0 4px 20px rgba(20,22,26,0.10); padding: 10px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav .brand-text { color: #fff; transition: color var(--t); }
.nav.scrolled .brand-text { color: var(--ink); }
.nav .brand-mark span:nth-child(2) { background: rgba(255,255,255,0.15); }
.nav.scrolled .brand-mark span:nth-child(2) { background: #fff; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-family: 'Zilla Slab', Georgia, serif; font-weight: 500; text-transform: uppercase; letter-spacing: 0.8px; font-size: 0.92rem; color: rgba(255,255,255,0.92); transition: color var(--t); }
.nav.scrolled .nav-links a { color: var(--ink); }
.nav-links a:not(.nav-cta):hover { color: var(--red); }
.nav-cta { background: var(--red); color: #fff !important; padding: 9px 20px; border-radius: var(--radius); }
.nav-cta:hover { background: var(--red-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.hamburger span { width: 26px; height: 3px; background: #fff; border-radius: 2px; transition: var(--t); }
.nav.scrolled .hamburger span { background: var(--ink); }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
    position: fixed; top: 0; right: -100%; width: min(82vw, 340px); height: 100vh; z-index: 99;
    background: var(--ink); padding: 96px 28px 28px; display: flex; flex-direction: column; gap: 4px;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1); box-shadow: -20px 0 50px rgba(0,0,0,0.4);
}
.mobile-menu.open { right: 0; }
.m-link { font-family: 'Zilla Slab', Georgia, serif; text-transform: uppercase; letter-spacing: 1px; color: #fff; padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.m-link:hover { color: var(--red); }
.m-cta { background: var(--red); border: 0; border-radius: var(--radius); text-align: center; margin-top: 14px; }
.m-cta:hover { background: #fff; color: var(--red); }
.m-call { background: transparent; border: 2px solid rgba(255,255,255,0.3); border-radius: var(--radius); text-align: center; margin-top: 8px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 85vh; display: flex; align-items: center; padding: 120px 0 72px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(105deg, rgba(15,16,19,0.92) 0%, rgba(15,16,19,0.78) 42%, rgba(15,16,19,0.45) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 720px; color: #fff; }
.hero-eyebrow { font-family: 'Zilla Slab', Georgia, serif; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; color: #fff; margin-bottom: 18px; }
.hero-eyebrow .tick { color: var(--red); }
.hero h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.hero h1 .accent { color: var(--red); }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.85); margin: 22px 0 32px; max-width: 600px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust { display: flex; gap: 38px; margin-top: 46px; flex-wrap: wrap; }
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust strong { font-family: 'Zilla Slab', Georgia, serif; font-size: 2.2rem; font-weight: 700; color: #fff; line-height: 1; }
.hero-trust span { font-size: 0.85rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ---------- Services ---------- */
.services { background: var(--bg); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
    background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 36px 30px; transition: transform var(--t), box-shadow var(--t), border-color var(--t);
    position: relative; overflow: hidden;
}
.svc-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--red); transform: scaleY(0); transform-origin: top; transition: transform var(--t); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card:hover::before { transform: scaleY(1); }
.svc-ico { font-size: 2.2rem; margin-bottom: 16px; }
.svc-card h3 { font-size: 1.3rem; text-transform: uppercase; margin-bottom: 10px; }
.svc-card p { color: var(--gray); font-size: 0.97rem; }

/* ---------- About ---------- */
.about { background: var(--bg-2); }
.about-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: 56px; align-items: center; }
.about-media { position: relative; }
.about-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; }
.about-badge { position: absolute; bottom: -18px; right: -10px; background: var(--red); color: #fff; padding: 16px 22px; border-radius: var(--radius); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; box-shadow: var(--shadow); max-width: 160px; line-height: 1.3; }
.about-badge strong { font-family: 'Zilla Slab', Georgia, serif; font-size: 1.6rem; display: block; }
.about-body h2 { margin: 6px 0 16px; }
.about-body p { color: var(--gray); margin-bottom: 14px; }
.about-list { list-style: none; margin: 22px 0 28px; display: grid; gap: 12px; }
.about-list li { position: relative; padding-left: 32px; font-weight: 500; }
.about-list li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 22px; height: 22px; background: var(--red); color: #fff; border-radius: 50%; font-size: 0.72rem; display: flex; align-items: center; justify-content: center; }

/* ---------- Work / gallery ---------- */
.work { background: var(--bg); }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px; }
.g-item { overflow: hidden; border-radius: var(--radius); position: relative; background: var(--bg-3); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.g-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(200,32,46,0.0)); transition: background var(--t); }
.g-item:hover img { transform: scale(1.07); }
.g-item:hover::after { background: linear-gradient(180deg, transparent 40%, rgba(200,32,46,0.35)); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ---------- Banner ---------- */
.banner { position: relative; padding: 100px 0; text-align: center; color: #fff; overflow: hidden; }
.banner-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.banner-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(15,16,19,0.82), rgba(15,16,19,0.74)); }
.banner-content { position: relative; z-index: 2; max-width: 640px; }
.banner-content h2 { font-size: clamp(2rem, 4vw, 3rem); }
.banner-content p { color: rgba(255,255,255,0.86); margin: 14px 0 28px; font-size: 1.1rem; }
.banner-content .hero-btns { justify-content: center; }

/* ---------- Reviews ---------- */
.reviews { background: var(--bg-2); }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rev-card { background: #fff; border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow); border-top: 3px solid var(--red); }
.rev-card .stars { color: var(--red); letter-spacing: 3px; margin-bottom: 14px; }
.rev-card blockquote { font-size: 1rem; color: var(--ink); line-height: 1.7; }
.rev-card figcaption { margin-top: 16px; font-family: 'Zilla Slab', Georgia, serif; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; color: var(--gray); }
.rev-controls { display: none; }

/* ---------- Areas ---------- */
.areas { background: var(--bg); }
.areas-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: stretch; }
.areas-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 380px; }
.areas-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: grayscale(0.15); }
.areas-info { align-self: center; }
.areas-info h3 { font-size: 1.35rem; text-transform: uppercase; margin-bottom: 18px; }
.areas-note { color: var(--gray); font-size: 0.95rem; margin-top: 8px; }
.areas-note a { color: var(--red); font-weight: 600; }
.area-list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 18px; }
.area-list li { background: var(--bg-2); border: 1px solid var(--line); border-radius: 50px; padding: 8px 18px; font-family: 'Zilla Slab', Georgia, serif; text-transform: uppercase; letter-spacing: 0.5px; font-size: 0.85rem; transition: background var(--t), color var(--t); }
.area-list li:hover { background: var(--red); color: #fff; border-color: var(--red); }
@media (max-width: 980px) { .areas-grid { grid-template-columns: 1fr; gap: 28px; } .areas-map { min-height: 300px; } .areas-map iframe { min-height: 300px; } }

/* ---------- Contact ---------- */
.contact { background: var(--bg-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: start; }
.contact-info h2 { margin: 6px 0 14px; }
.contact-info > p { color: var(--gray); margin-bottom: 28px; }
.contact-list { list-style: none; display: grid; gap: 18px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.ci-ico { width: 46px; height: 46px; flex-shrink: 0; background: var(--red); color: #fff; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.ci-label { display: block; font-family: 'Zilla Slab', Georgia, serif; text-transform: uppercase; letter-spacing: 1px; font-size: 0.78rem; color: var(--gray); }
.contact-list a { font-weight: 600; }
.contact-list a:hover { color: var(--red); }

.contact-form-wrap { background: #fff; padding: 36px; border-radius: var(--radius); box-shadow: var(--shadow); }
.fg { margin-bottom: 16px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg label { display: block; font-family: 'Zilla Slab', Georgia, serif; text-transform: uppercase; letter-spacing: 0.8px; font-size: 0.8rem; margin-bottom: 6px; color: var(--ink); }
.fg input, .fg select, .fg textarea {
    width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius);
    font-family: inherit; font-size: 0.96rem; background: var(--bg-2); transition: border-color var(--t), background var(--t);
}
.fg input:focus, .fg select:focus, .fg textarea:focus { outline: none; border-color: var(--red); background: #fff; }
.fg textarea { min-height: 120px; resize: vertical; }
.form-note { padding: 22px; border-radius: var(--radius); margin-top: 4px; }
.form-note.success { background: #eafaf0; border: 1px solid #b6e6c8; }
.form-note.success h3 { color: #1c8a4c; text-transform: none; margin-bottom: 6px; }
.form-note.error { background: #fdecec; border: 1px solid #f3b8b8; color: #a0141f; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; }
.footer .brand-text { color: #fff; }
.footer-brand p { margin-top: 16px; font-size: 0.92rem; max-width: 320px; }
.footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; color: #fff; margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; font-size: 0.92rem; margin-bottom: 9px; color: rgba(255,255,255,0.62); transition: color var(--t); }
.footer-col a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.84rem; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: var(--red); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .svc-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-media { max-width: 440px; }
    .rev-grid {
        display: flex; grid-template-columns: none; max-width: none; margin: 0;
        gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch; scrollbar-width: none;
        padding-bottom: 4px;
    }
    .rev-grid::-webkit-scrollbar { display: none; }
    .rev-card { flex: 0 0 86%; scroll-snap-align: center; }
    .rev-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 22px; }
    .rev-arrow {
        width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--line);
        background: #fff; color: var(--ink); font-size: 1.4rem; line-height: 1; cursor: pointer;
        display: flex; align-items: center; justify-content: center; transition: var(--t);
    }
    .rev-arrow:hover { background: var(--red); color: #fff; border-color: var(--red); }
    .rev-dots { display: flex; gap: 8px; }
    .rev-dots button {
        width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; cursor: pointer;
        background: var(--gray-light); transition: var(--t);
    }
    .rev-dots button.active { background: var(--red); transform: scale(1.25); }
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 760px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .section { padding: 64px 0; }
    .hero { min-height: 88vh; padding: 120px 0 64px; }
    .hero-overlay { background: linear-gradient(180deg, rgba(15,16,19,0.86) 0%, rgba(15,16,19,0.72) 100%); }
    .hero-trust { gap: 26px; }
    .cta-strip-inner { flex-direction: column; text-align: center; align-items: center; }
    .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
    .g-wide { grid-column: span 2; }
    .g-tall { grid-row: span 1; }
    .fg-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { margin-left: auto; margin-right: auto; }
    .footer-bottom .container { justify-content: center; text-align: center; }
    .about-badge { right: 10px; }
}
@media (max-width: 460px) {
    .svc-grid { grid-template-columns: 1fr; }
    .hero-trust { gap: 18px; }
    .hero-trust strong { font-size: 1.8rem; }
    .btn { width: 100%; }
    .hero-btns { width: 100%; }
    .area-list { gap: 8px; }
}

/* ---- brand logo (nav + footer) ---- */
.brand{display:inline-flex;align-items:center;gap:10px}
.brand-logo{height:50px;width:auto;display:block;flex:none;background:#fff;border-radius:10px;padding:6px 8px;box-shadow:0 4px 14px rgba(0,0,0,.18)}
.brand-logo-footer{height:66px}

/* ========== COOKIE NOTICE ========== */
.cookie-banner {
    position: fixed; left: 16px; right: 16px; bottom: 16px;
    max-width: 540px; margin: 0 auto;
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 15px 18px; display: flex; align-items: center; gap: 16px;
    box-shadow: var(--shadow); z-index: 2000;
    opacity: 0; transform: translateY(16px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.cookie-banner.show { opacity: 1; transform: translateY(0); }
.cookie-banner p { font-size: 13.5px; color: var(--gray); margin: 0; line-height: 1.5; }
.cookie-accept {
    flex: 0 0 auto; background: var(--red); color: #fff; border: none; border-radius: var(--radius);
    padding: 10px 20px; font-weight: 700; font-size: 13px; cursor: pointer; font-family: inherit;
    transition: filter 0.2s;
}
.cookie-accept:hover { filter: brightness(1.06); }
@media (max-width: 480px) {
    .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; gap: 12px; }
    .cookie-accept { width: 100%; }
}
