@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&family=Oleo+Script&display=swap');

:root {
    --gold: #c4a35a;
    --gold-light: #e8d5a3;
    --gold-dark: #9a7d3a;
    --ocean: #1a5276;
    --ocean-light: #2980b9;
    --ocean-deep: #0e2f44;
    --teal: #00867a;
    --teal-light: #00a99d;
    --sand: #f5f0e8;
    --sand-dark: #e8dcc8;
    --cream: #faf8f4;
    --charcoal: #1c1c1e;
    --slate: #3a3a3c;
    --mist: #6e7681;
    --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--charcoal);
    line-height: 1.7;
    background: var(--cream);
    overflow-x: hidden;
}

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

/* ══════════════════════════════
   UTILITY
   ══════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px); }

/* ══════════════════════════════
   ANIMATIONS
   ══════════════════════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes wave {
    0% { d: path("M0,64 C200,20 400,100 600,64 C800,28 1000,90 1200,64 L1200,120 L0,120 Z"); }
    50% { d: path("M0,80 C200,40 400,110 600,70 C800,35 1000,100 1200,60 L1200,120 L0,120 Z"); }
    100% { d: path("M0,64 C200,20 400,100 600,64 C800,28 1000,90 1200,64 L1200,120 L0,120 Z"); }
}
@keyframes slideIn {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ══════════════════════════════
   HEADER
   ══════════════════════════════ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(196,163,90,0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.header.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 55px;
    width: auto;
    transition: opacity 0.3s;
}
.logo:hover img { opacity: 0.85; }

.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-links a {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.3s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 14px; right: 14px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: left;
}
.nav-links a:hover { color: var(--ocean); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--ocean); }

.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 6px; padding: 5px; }
.hamburger span {
    width: 28px; height: 2px;
    background: var(--ocean);
    transition: all 0.3s;
    border-radius: 2px;
}

/* ══════════════════════════════
   HERO
   ══════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(14,47,68,0.4) 0%, rgba(14,47,68,0.6) 50%, rgba(14,47,68,0.85) 100%),
        url('/images/home/hero-bg.jpeg') center/cover no-repeat;
    transform: scale(1.05);
    animation: fadeIn 1.5s ease;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 5%;
    animation: fadeUp 1s ease 0.3s both;
}
.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid rgba(196,163,90,0.5);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    background: rgba(196,163,90,0.1);
}
.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.hero h1 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-light));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}
.hero p {
    font-size: 1.15rem;
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-wave {
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    z-index: 3;
    line-height: 0;
}
.hero-wave svg { width: 100%; height: auto; }
.hero-wave path { fill: var(--cream); }

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--ocean-deep);
    box-shadow: 0 4px 20px rgba(196,163,90,0.35);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196,163,90,0.5);
}
.btn-outline-light {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.4);
    color: var(--white);
    backdrop-filter: blur(5px);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
}
.btn-teal {
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0,134,122,0.3);
}
.btn-teal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,134,122,0.4);
}
.btn-ocean {
    background: var(--ocean);
    color: var(--white);
}
.btn-ocean:hover {
    background: var(--ocean-deep);
    transform: translateY(-2px);
}

/* ══════════════════════════════
   SECTION TITLES
   ══════════════════════════════ */
section { padding: clamp(60px, 10vw, 120px) 0; }

.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--ocean);
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}
.section-title p {
    color: var(--mist);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}
.section-title .underline {
    width: 50px; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 20px auto 0;
    border-radius: 2px;
}

/* ══════════════════════════════
   ABOUT
   ══════════════════════════════ */
.about { background: var(--cream); }
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--ocean);
    margin-bottom: 20px;
    line-height: 1.3;
}
.about-text p {
    margin-bottom: 18px;
    color: var(--slate);
    font-size: 0.95rem;
}
.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}
.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid rgba(196,163,90,0.2);
    pointer-events: none;
}
.about-image img {
    width: 100%; height: 480px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-image:hover img { transform: scale(1.03); }

/* ══════════════════════════════
   VALUES
   ══════════════════════════════ */
.values {
    background: var(--ocean-deep);
    position: relative;
    overflow: hidden;
}
.values::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(196,163,90,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.values .section-title h2 { color: var(--white); }
.values .section-title p { color: rgba(255,255,255,0.5); }
.values .section-title .underline { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.value-card {
    text-align: center;
    padding: 50px 30px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.value-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(196,163,90,0.3);
}
.value-icon {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, rgba(196,163,90,0.2), rgba(196,163,90,0.05));
    border: 1px solid rgba(196,163,90,0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.6rem;
    color: var(--gold-light);
    transition: all 0.4s;
}
.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--ocean-deep);
    border-color: transparent;
}
.value-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--white);
}
.value-card p {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ══════════════════════════════
   HISTORY
   ══════════════════════════════ */
.history {
    background: var(--sand);
    position: relative;
}
.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.history-text p {
    color: var(--slate);
    margin-bottom: 18px;
    font-size: 0.95rem;
}
.history-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.stat {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(196,163,90,0.15);
    transition: all 0.4s;
}
.stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    border-color: var(--gold);
}
.stat .number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.stat .label {
    font-size: 0.78rem;
    color: var(--mist);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ══════════════════════════════
   PRODUCTS
   ══════════════════════════════ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}
.product-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border-color: rgba(196,163,90,0.3);
}
.product-card .card-img {
    position: relative;
    overflow: hidden;
}
.product-card img {
    width: 100%; height: 240px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover img { transform: scale(1.08); }
.product-card .card-body {
    padding: 28px;
    text-align: center;
}
.product-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--ocean);
    margin-bottom: 10px;
}
.product-card p {
    color: var(--mist);
    font-size: 0.88rem;
    margin-bottom: 18px;
    line-height: 1.6;
}

/* ══════════════════════════════
   PAGE HERO (sub pages)
   ══════════════════════════════ */
.page-hero {
    position: relative;
    text-align: center;
    padding: 160px 5% 80px;
    background: var(--ocean-deep);
    color: var(--white);
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(196,163,90,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(41,128,185,0.1) 0%, transparent 50%);
}
.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 400;
    margin-bottom: 12px;
    position: relative;
}
.page-hero p {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    position: relative;
}
.page-hero .wave-bottom {
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    line-height: 0;
}
.page-hero .wave-bottom svg { width: 100%; }
.page-hero .wave-bottom path { fill: var(--cream); }

/* ══════════════════════════════
   CONTENT SECTIONS
   ══════════════════════════════ */
.content-section { padding: 80px 0; }
.content-section:nth-child(even) { background: var(--sand); }
.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}
.content-block.reverse { direction: rtl; }
.content-block.reverse > * { direction: ltr; }
.content-block h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--ocean);
    margin-bottom: 18px;
    line-height: 1.3;
}
.content-block p {
    color: var(--slate);
    margin-bottom: 14px;
    font-size: 0.95rem;
}
.content-block img {
    border-radius: 16px;
    width: 100%; height: 340px;
    object-fit: cover;
    border: 1px solid rgba(196,163,90,0.15);
    transition: all 0.5s;
}
.content-block img:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    transform: scale(1.02);
}

/* ══════════════════════════════
   PROCESS STEPS
   ══════════════════════════════ */
.process-steps { position: relative; padding-left: 40px; }
.process-steps::before {
    content: '';
    position: absolute;
    left: 32px; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold), var(--gold-light), transparent);
}
.step {
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 30px;
    margin-bottom: 48px;
    position: relative;
    align-items: start;
}
.step-number {
    width: 65px; height: 65px;
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold-dark);
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}
.step:hover .step-number {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(196,163,90,0.35);
}
.step-content {
    background: var(--white);
    padding: 28px 32px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s;
}
.step:hover .step-content {
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border-color: rgba(196,163,90,0.2);
}
.step-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ocean);
    margin-bottom: 8px;
}
.step-content p {
    color: var(--slate);
    font-size: 0.92rem;
    line-height: 1.7;
}
.step-img {
    margin-top: 16px;
    border-radius: 10px;
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border: 1px solid rgba(196,163,90,0.15);
}

/* ══════════════════════════════
   MARCHES TABLE
   ══════════════════════════════ */
.marches-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.marches-table th,
.marches-table td {
    padding: 18px 28px;
    text-align: left;
}
.marches-table th {
    background: var(--ocean-deep);
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.marches-table td {
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    font-size: 0.95rem;
    color: var(--slate);
    transition: all 0.3s;
}
.marches-table tr:last-child td { border-bottom: none; }
.marches-table tbody tr:hover td {
    background: var(--sand);
    color: var(--ocean);
}

/* ══════════════════════════════
   CONTACT
   ══════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.contact-info-card {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.contact-info-card:hover {
    border-color: rgba(196,163,90,0.3);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transform: translateX(4px);
}
.contact-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--ocean), var(--ocean-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-info-card strong {
    color: var(--ocean);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}
.form-group { margin-bottom: 22px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--ocean);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    transition: all 0.3s;
    background: var(--cream);
    color: var(--charcoal);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(196,163,90,0.1);
    background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.alert {
    padding: 16px 22px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 0.92rem;
}
.alert-success {
    background: rgba(0,134,122,0.08);
    color: var(--teal);
    border: 1px solid rgba(0,134,122,0.2);
}
.alert-error {
    background: rgba(179,38,30,0.07);
    color: #b3261e;
    border: 1px solid rgba(179,38,30,0.22);
}
.alert-error p { margin: 2px 0; }

/* ══════════════════════════════
   FOOTER
   ══════════════════════════════ */
.footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.6);
    padding: 70px 0 30px;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}
.footer h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--white);
    margin-bottom: 18px;
    font-size: 1.3rem;
    font-weight: 500;
}
.footer p, .footer a {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    line-height: 1.9;
}
.footer a:hover { color: var(--gold-light); }
.footer-links a {
    display: block;
    padding: 3px 0;
    transition: all 0.3s;
}
.footer-links a:hover { padding-left: 8px; color: var(--gold-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 500;
    margin-top: 12px;
    padding: 8px 0;
}

/* ══════════════════════════════
   CTA BAND
   ══════════════════════════════ */
.cta-band {
    background: linear-gradient(135deg, var(--ocean), var(--ocean-deep));
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    top: -50%; left: -30%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(196,163,90,0.1) 0%, transparent 60%);
    border-radius: 50%;
}
.cta-band h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--white);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 8px;
    position: relative;
}
.cta-band p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 28px;
    position: relative;
}

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */
@media (max-width: 1024px) {
    .nav-links { gap: 4px; }
    .nav-links a { font-size: 0.72rem; padding: 6px 10px; letter-spacing: 1px; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px 24px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        border-top: 1px solid rgba(196,163,90,0.15);
        gap: 0;
    }
    .nav-links.active { display: flex; }
    .nav-links a {
        font-size: 0.85rem;
        padding: 14px 0;
        border-bottom: 1px solid rgba(0,0,0,0.04);
    }
    .nav-links a::after { display: none; }

    .hero { min-height: 90vh; }
    .hero h1 { font-size: 2.2rem; }

    .about-content,
    .history-content,
    .content-block,
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .values-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .content-block.reverse { direction: ltr; }
    .process-steps { padding-left: 0; }
    .process-steps::before { left: 32px; }
    .step { grid-template-columns: 55px 1fr; gap: 20px; }
    .step-number { width: 55px; height: 55px; font-size: 1.2rem; }
    .step-content { padding: 22px; }
}
