/* ============================================
   Casa Rinnovata - Main Stylesheet
   Dark Navy + Gold Accent Design
   ============================================ */

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

:root {
    --primary: #0a1628;
    --primary-mid: #162440;
    --accent: #c9a84c;
    --accent-light: #e8c97a;
    --accent-dark: #a8883a;
    --light-bg: #f9f8f5;
    --white: #ffffff;
    --text-dark: #1a1a2e;
    --text-mid: #4a5568;
    --text-light: #718096;
    --border: #e8e4dc;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

.section-title { text-align: center; margin-bottom: 16px; }
.section-subtitle {
    text-align: center;
    color: var(--text-mid);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.accent-text { color: var(--accent); }

.label-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 15px 36px;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-gold {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.btn-gold:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn-outline-gold {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline-gold:hover {
    background: var(--accent);
    color: var(--primary);
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--primary);
    transition: var(--transition);
}

.header-top {
    background: var(--accent);
    padding: 8px 0;
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.header-top-inner a {
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-top-inner a:hover { opacity: 0.75; }

.header-top-inner svg {
    width: 13px;
    height: 13px;
    fill: var(--primary);
}

.header-main {
    padding: 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-emblem {
    width: 46px;
    height: 46px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-emblem svg {
    width: 22px;
    height: 22px;
    fill: var(--accent);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
}

.logo-text span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
}

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

.main-nav a {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: var(--transition);
}

.main-nav a:hover, .main-nav a.active {
    color: var(--accent);
}

.main-nav a:hover::after, .main-nav a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    transition: var(--transition);
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-home.jpg');
    background-size: cover;
    background-position: center top;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.6) 60%, rgba(10,22,40,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding-top: 100px;
}

.hero-content .label-tag {
    color: var(--accent);
}

.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
    font-style: italic;
}

.hero h1 em {
    color: var(--accent);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 44px;
    max-width: 520px;
    line-height: 1.9;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-divider {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 48px 0 32px;
}

.hero-features {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    letter-spacing: 0.5px;
}

.hero-feature svg {
    width: 16px;
    height: 16px;
    fill: var(--accent);
    flex-shrink: 0;
}

/* ============================================
   INTRO STRIP
   ============================================ */

.intro-strip {
    background: var(--accent);
    padding: 0;
}

.intro-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.intro-strip-item {
    padding: 32px 28px;
    text-align: center;
    border-right: 1px solid rgba(10,22,40,0.15);
    transition: var(--transition);
}

.intro-strip-item:last-child { border-right: none; }

.intro-strip-item:hover { background: rgba(10,22,40,0.08); }

.intro-strip-item h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.intro-strip-item p {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(10,22,40,0.7);
}

/* ============================================
   ABOUT
   ============================================ */

.about-section { background: var(--white); }

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -32px;
    width: 220px;
    height: 180px;
    object-fit: cover;
    border: 5px solid var(--white);
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}

.about-content { padding-bottom: 40px; }

.about-content h2 { margin-bottom: 20px; }

.about-content p {
    color: var(--text-mid);
    margin-bottom: 20px;
    line-height: 1.9;
}

.about-signature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.signature-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
}

.signature-info strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-dark);
}

.signature-info span {
    font-size: 0.82rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

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

.services-section { background: var(--light-bg); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
}

.service-item {
    background: var(--white);
    padding: 48px 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-item:hover::before { transform: scaleX(1); }

.service-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(201,168,76,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-item:hover .service-icon { background: var(--accent); }

.service-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--accent);
    transition: var(--transition);
}

.service-item:hover .service-icon svg { fill: var(--primary); }

.service-item h3 {
    margin-bottom: 14px;
    font-size: 1.2rem;
}

.service-item p {
    color: var(--text-mid);
    font-size: 0.92rem;
    line-height: 1.8;
}

/* ============================================
   PROCESS / HOW WE WORK
   ============================================ */

.process-section { background: var(--primary); }

.process-section .section-title { color: var(--white); }
.process-section .section-subtitle { color: rgba(255,255,255,0.65); }

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: rgba(201,168,76,0.3);
}

.timeline-step {
    padding: 0 20px;
    text-align: center;
    position: relative;
}

.timeline-dot {
    width: 88px;
    height: 88px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    background: var(--primary);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.timeline-step:hover .timeline-dot {
    background: var(--accent);
}

.timeline-dot svg {
    width: 32px;
    height: 32px;
    fill: var(--accent);
    transition: var(--transition);
}

.timeline-step:hover .timeline-dot svg { fill: var(--primary); }

.timeline-step h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 12px;
}

.timeline-step p {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    line-height: 1.7;
}

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

.gallery-section { background: var(--white); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.gallery-item:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 5; }
.gallery-item:nth-child(3) { grid-column: span 5; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 4; }
.gallery-item:nth-child(6) { grid-column: span 4; }

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, transparent 55%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

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

.gallery-info span {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 6px;
}

.gallery-info h4 {
    color: white;
    font-family: var(--font-heading);
    font-size: 1rem;
}

/* ============================================
   WHY US
   ============================================ */

.why-section { background: var(--light-bg); }

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}

.why-content h2 { margin-bottom: 20px; }
.why-content > p { color: var(--text-mid); margin-bottom: 40px; line-height: 1.9; }

.why-list { display: flex; flex-direction: column; gap: 0; }

.why-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}

.why-item:last-child { border-bottom: none; }

.why-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: rgba(201,168,76,0.3);
    line-height: 1;
    min-width: 40px;
    flex-shrink: 0;
}

.why-text h4 { margin-bottom: 6px; font-size: 1rem; }
.why-text p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.7; }

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

.testimonials-section { background: var(--primary-mid); }

.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-subtitle { color: rgba(255,255,255,0.6); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 4px;
    padding: 36px;
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 28px;
    font-family: var(--font-heading);
    font-size: 5rem;
    color: rgba(201,168,76,0.15);
    line-height: 1;
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(201,168,76,0.4);
}

.stars { display: flex; gap: 3px; margin-bottom: 20px; }
.stars svg { width: 16px; height: 16px; fill: var(--accent); }

.testimonial-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.93rem;
    line-height: 1.85;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    flex-shrink: 0;
}

.author-info strong { display: block; color: white; font-size: 0.92rem; }
.author-info span { color: rgba(255,255,255,0.45); font-size: 0.8rem; }

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: var(--accent);
    padding: 80px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-text h2 { color: var(--primary); margin-bottom: 10px; }
.cta-text p { color: rgba(10,22,40,0.75); font-size: 1.05rem; max-width: 500px; }

.cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================
   CONTACT
   ============================================ */

.contact-section { background: var(--white); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
}

.contact-info h2 { margin-bottom: 20px; }
.contact-info > p { color: var(--text-mid); margin-bottom: 40px; line-height: 1.9; }

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

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

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: rgba(201,168,76,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg { width: 18px; height: 18px; fill: var(--accent); }

.contact-detail strong {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 4px;
    font-weight: 700;
}

.contact-detail p { color: var(--text-dark); font-size: 0.95rem; }

.contact-form {
    background: var(--primary);
    padding: 52px;
    border-radius: 4px;
}

.contact-form h3 {
    color: var(--white);
    margin-bottom: 8px;
}

.contact-form > p {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    margin-bottom: 32px;
}

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.93rem;
    color: var(--white);
    background: rgba(255,255,255,0.07);
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,0.1);
}

.form-group select option { background: var(--primary); color: var(--white); }

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

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

.site-footer {
    background: var(--primary);
    color: rgba(255,255,255,0.6);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.9;
    margin: 20px 0 28px;
    color: rgba(255,255,255,0.55);
}

.footer-social { display: flex; gap: 10px; }

.social-link {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover { border-color: var(--accent); background: var(--accent); }
.social-link svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.6); }
.social-link:hover svg { fill: var(--primary); }

.footer-col h4 {
    color: var(--accent);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 24px;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--accent); }

.footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
}

.footer-contact-item svg { width: 14px; height: 14px; fill: var(--accent); flex-shrink: 0; margin-top: 4px; }

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.82rem; }

.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-legal a:hover { color: var(--accent); }

/* ============================================
   COOKIE POPUP
   ============================================ */

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--primary);
    border-top: 2px solid var(--accent);
    padding: 28px 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 40px rgba(0,0,0,0.4);
}

.cookie-popup.visible { transform: translateY(0); }

.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.cookie-text { flex: 1; min-width: 280px; }

.cookie-text h4 {
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 6px;
}

.cookie-text p { color: rgba(255,255,255,0.6); font-size: 0.86rem; line-height: 1.6; }
.cookie-text a { color: var(--accent); text-decoration: underline; }

.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-cookie-accept {
    background: var(--accent);
    color: var(--primary);
    border: 2px solid var(--accent);
    padding: 10px 24px;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cookie-accept:hover { background: var(--accent-light); border-color: var(--accent-light); }

.btn-cookie-decline {
    background: transparent;
    color: rgba(255,255,255,0.55);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 24px;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cookie-decline:hover { border-color: rgba(255,255,255,0.4); color: white; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */

.page-hero {
    background: var(--primary);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
}

.page-hero h1 { color: white; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.82rem;
}

.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.25); }
.breadcrumb .current { color: var(--accent); }

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-content { max-width: 860px; margin: 0 auto; }

.legal-content h2 {
    font-size: 1.4rem;
    margin-top: 48px;
    margin-bottom: 16px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    color: var(--text-dark);
}

.legal-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }

.legal-content p { color: var(--text-mid); margin-bottom: 16px; line-height: 1.9; }

.legal-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.legal-content ul li { color: var(--text-mid); margin-bottom: 8px; line-height: 1.7; }

.legal-meta {
    background: rgba(201,168,76,0.08);
    border-left: 3px solid var(--accent);
    padding: 20px 24px;
    border-radius: 0 4px 4px 0;
    margin-bottom: 40px;
}

.legal-meta p { margin: 0; font-size: 0.88rem; color: var(--text-mid); }

/* ============================================
   FAQ
   ============================================ */

.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    gap: 16px;
}

.faq-question svg { width: 18px; height: 18px; fill: var(--accent); flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-item.open .faq-question { color: var(--accent); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { color: var(--text-mid); padding-bottom: 24px; line-height: 1.85; }

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

@media (max-width: 1024px) {
    .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-img-main { height: 400px; }
    .about-img-secondary { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .process-timeline::before { display: none; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .intro-strip-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section-pad { padding: 60px 0; }
    .header-top { display: none; }
    .main-nav {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    .main-nav.open { display: flex; }
    .hamburger { display: flex; }
    .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .process-timeline { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; text-align: center; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 32px; }
    .intro-strip-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; }
    .intro-strip-inner { grid-template-columns: 1fr 1fr; }
    .cookie-inner { flex-direction: column; }
}
