/* ─── RESET & BASE ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
    --earth-deep:   #1a1410;
    --earth-dark:   #2c2218;
    --earth-mid:    #5c3d1e;
    --earth-warm:   #8b5e2f;
    --sand-dark:    #c4965a;
    --sand-light:   #e8c78a;
    --amber:        #d4840a;
    --amber-bright: #f0a020;
    --steel:        #4a4035;
    --stone:        #938070;
    --cream:        #f5ede0;
    --white:        #fdf8f2;
    --text-body:    #3d2e1e;

    --font-display: 'Barlow Condensed', sans-serif;
    --font-serif:   'Lora', serif;
    --font-body:    'Barlow', sans-serif;

    --section-pad: clamp(4rem, 8vw, 8rem);
    --container: 1240px;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--text-body);
    overflow-x: hidden;
    line-height: 1.6;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* ─── NAVIGATION ──────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    padding: 0;
    transition: background 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
    background: rgba(26, 20, 16, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(212,132,10,0.25);
}
.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}
.nav-logo {
    width: 42px;
    height: 42px;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid rgba(212,132,10,0.4);
}
.nav-brand-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sand-light);
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
}
.nav-links a {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(232, 199, 138, 0.75);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 2px;
    transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--amber-bright); }
.nav-links .nav-cta {
    background: var(--amber);
    color: var(--earth-deep) !important;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 2px;
}
.nav-links .nav-cta:hover { background: var(--amber-bright); color: var(--earth-deep) !important; }

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(212,132,10,0.4);
    border-radius: 2px;
    padding: 0.4rem;
    cursor: pointer;
    color: var(--sand-light);
}
.nav-toggle svg { display: block; width: 22px; height: 22px; }

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 72px; left: 0; right: 0;
        background: rgba(26, 20, 16, 0.98);
        padding: 1rem 0 1.5rem;
        border-bottom: 1px solid rgba(212,132,10,0.25);
        gap: 0;
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 0.75rem 2rem; display: block; }
}

/* ─── HERO ────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--earth-deep);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(92,61,30,0.6) 0%, transparent 50%),
        linear-gradient(225deg, rgba(212,132,10,0.08) 0%, transparent 60%);
}
.hero::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(160deg, rgba(44,34,24,0.9) 0%, rgba(26,20,16,0.4) 100%);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-lines {
    position: absolute;
    bottom: 0; right: 0;
    width: 55%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.12;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-top: 96px;
    padding-bottom: 4rem;
}

@media (max-width: 900px) {
    .hero .container { grid-template-columns: 1fr; }
    .hero-image-wrap { display: none; }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 2rem;
    height: 2px;
    background: var(--amber);
}

.hero h1 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.95;
    text-transform: uppercase;
    color: var(--cream);
    letter-spacing: -0.01em;
    margin-bottom: 1.75rem;
}
.hero h1 em {
    font-style: normal;
    color: var(--amber-bright);
    display: block;
}

.hero-tagline {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--sand-dark);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}
.hero-desc {
    font-size: 0.95rem;
    color: rgba(196, 150, 90, 0.75);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}
.badge {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber);
    border: 1px solid rgba(212,132,10,0.35);
    padding: 0.35rem 0.8rem;
    border-radius: 2px;
    background: rgba(212,132,10,0.06);
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.btn {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.9rem 1.75rem;
    border-radius: 2px;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: var(--amber);
    color: var(--earth-deep);
}
.btn-primary:hover { background: var(--amber-bright); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,132,10,0.35); }
.btn-whatsapp {
    background: #25a244;
    color: #fff;
}
.btn-whatsapp:hover { background: #1e8a38; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,162,68,0.3); }
.btn-outline {
    background: transparent;
    color: var(--sand-light);
    border: 1px solid rgba(196,150,90,0.4);
}
.btn-outline:hover { border-color: var(--sand-dark); color: var(--cream); }

.hero-image-wrap {
    position: relative;
    z-index: 2;
}
.hero-image-frame {
    position: relative;
}
.hero-image-frame::before {
    content: '';
    position: absolute;
    top: -12px; right: -12px;
    width: 100%; height: 100%;
    border: 2px solid rgba(212,132,10,0.3);
    border-radius: 2px;
    z-index: 0;
}
.hero-image-frame img {
    width: 100%;
    border-radius: 2px;
    position: relative;
    z-index: 1;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
    filter: sepia(15%) brightness(0.9);
}
.hero-stat {
    position: absolute;
    z-index: 2;
    background: var(--earth-deep);
    border: 1px solid rgba(212,132,10,0.4);
    border-radius: 3px;
    padding: 0.75rem 1.25rem;
}
.hero-stat-num {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 2rem;
    line-height: 1;
    color: var(--amber-bright);
}
.hero-stat-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stone);
}
.hero-stat--tl { top: -20px; left: -20px; }
.hero-stat--br { bottom: -20px; right: -20px; }

/* ─── DIVIDER ─────────────────────────────────────────────────────── */
.amber-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--amber) 0%, var(--amber-bright) 40%, var(--sand-dark) 100%);
}

/* ─── SECTION LABELS ──────────────────────────────────────────────── */
.sec-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--amber);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}
.sec-label::before {
    content: '';
    width: 2rem;
    height: 2px;
    background: var(--amber);
    flex-shrink: 0;
}
.sec-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: -0.01em;
    color: var(--earth-dark);
}
.sec-title--light { color: var(--cream); }
.sec-subtitle {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--stone);
    margin-top: 1rem;
    max-width: 560px;
    line-height: 1.7;
}
.sec-subtitle--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ─── ABOUT ───────────────────────────────────────────────────────── */
.about-section {
    padding: var(--section-pad) 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}
.about-section::before {
    content: 'EL CERRATEÑO';
    position: absolute;
    bottom: -0.5rem; right: -1rem;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(4rem, 12vw, 10rem);
    color: rgba(92,61,30,0.05);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }

.about-text p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-top: 1.25rem;
}
.about-img-wrap {
    position: relative;
}
.about-img-wrap::after {
    content: '';
    position: absolute;
    bottom: -16px; left: -16px;
    width: 60%;
    height: 60%;
    background: var(--amber);
    z-index: 0;
    border-radius: 2px;
    opacity: 0.15;
}
.about-img-wrap img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 2px;
    object-fit: cover;
    aspect-ratio: 1;
    display: block;
    filter: sepia(10%);
}

/* ─── SERVICES ────────────────────────────────────────────────────── */
.services-section {
    padding: var(--section-pad) 0;
    background: var(--earth-dark);
    position: relative;
    overflow: hidden;
}
.services-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--amber) 0%, transparent 100%);
}
.services-header {
    margin-bottom: 3.5rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(212,132,10,0.1);
    border: 1px solid rgba(212,132,10,0.1);
    border-radius: 3px;
    overflow: hidden;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
    background: rgba(26,20,16,0.8);
    padding: 2.25rem 2rem;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--amber);
    transition: width 0.4s ease;
}
.service-card:hover { background: rgba(44,34,24,0.95); }
.service-card:hover::before { width: 100%; }

.service-icon {
    width: 48px; height: 48px;
    margin-bottom: 1.25rem;
    opacity: 0.85;
}
.service-card h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--sand-light);
    margin-bottom: 0.75rem;
}
.service-card p {
    font-size: 0.9rem;
    color: var(--stone);
    line-height: 1.75;
}
.service-num {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 3.5rem;
    color: rgba(212,132,10,0.1);
    position: absolute;
    top: 1rem; right: 1.25rem;
    line-height: 1;
}

/* ─── WHY US ──────────────────────────────────────────────────────── */
.why-section {
    padding: var(--section-pad) 0;
    background: var(--cream);
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}
@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; gap: 2rem; } }
.why-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}
.why-num {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 3rem;
    line-height: 1;
    color: var(--amber);
    flex-shrink: 0;
    width: 3rem;
    text-align: right;
}
.why-item h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--earth-dark);
    margin-bottom: 0.6rem;
}
.why-item p {
    font-size: 0.92rem;
    color: var(--steel);
    line-height: 1.75;
}

/* ─── MACHINERY ───────────────────────────────────────────────────── */
.machinery-section {
    padding: var(--section-pad) 0;
    background: var(--earth-deep);
}
.machinery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}
@media (max-width: 900px) { .machinery-grid { grid-template-columns: 1fr; gap: 1rem; } }
.machine-card {
    border: 1px solid rgba(212,132,10,0.15);
    border-radius: 3px;
    overflow: hidden;
    background: var(--earth-dark);
    transition: border-color 0.3s, transform 0.3s;
}
.machine-card:hover {
    border-color: rgba(212,132,10,0.5);
    transform: translateY(-4px);
}
.machine-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    filter: sepia(20%) brightness(0.85);
    transition: filter 0.3s;
}
.machine-card:hover .machine-img { filter: sepia(10%) brightness(0.95); }
.machine-body {
    padding: 1.5rem;
}
.machine-body h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--sand-light);
    margin-bottom: 0.5rem;
}
.machine-body p {
    font-size: 0.88rem;
    color: var(--stone);
    line-height: 1.7;
}
.machine-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    border: 1px solid rgba(212,132,10,0.3);
    padding: 0.25rem 0.6rem;
    border-radius: 2px;
    margin-bottom: 0.75rem;
}

/* ─── GALLERY ─────────────────────────────────────────────────────── */
.gallery-section {
    padding: var(--section-pad) 0;
    background: var(--cream);
}
.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.75rem;
}
@media (max-width: 768px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    background: var(--steel);
}
.gallery-item:first-child {
    grid-row: span 2;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.4s;
    filter: sepia(15%);
}
.gallery-item:hover img { transform: scale(1.05); filter: sepia(0%); }
.gallery-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 0.75rem 1rem;
    background: linear-gradient(to top, rgba(26,20,16,0.9) 0%, transparent 100%);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sand-light);
}

/* ─── ZONE BAND ───────────────────────────────────────────────────── */
.zone-band {
    background: var(--earth-mid);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}
.zone-band::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212,132,10,0.12) 0%, transparent 60%);
}
.zone-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
}
@media (max-width: 640px) { .zone-inner { grid-template-columns: 1fr; gap: 1.5rem; } }
.zone-big-text {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    text-transform: uppercase;
    color: var(--cream);
    line-height: 1.05;
    letter-spacing: -0.01em;
}
.zone-big-text span { color: var(--amber-bright); display: block; }
.zone-desc p {
    font-size: 0.95rem;
    color: rgba(232,199,138,0.8);
    line-height: 1.75;
    margin-top: 0.75rem;
}
.zone-desc p:first-child { margin-top: 0; }

/* ─── CONTACT ─────────────────────────────────────────────────────── */
.contact-section {
    padding: var(--section-pad) 0;
    background: var(--earth-deep);
    position: relative;
    overflow: hidden;
}
.contact-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 50%, rgba(212,132,10,0.08) 0%, transparent 70%);
}
.contact-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.contact-inner .sec-label {
    justify-content: center;
}
.contact-inner .sec-label::before { display: none; }
.contact-inner .sec-label::after {
    content: '';
    width: 2rem;
    height: 2px;
    background: var(--amber);
}
.contact-sub {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--stone);
    margin-top: 1rem;
    margin-bottom: 3rem;
    font-size: 1rem;
    line-height: 1.7;
}
.contact-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.contact-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2.5rem 0;
    color: rgba(196,150,90,0.4);
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
}
.contact-divider::before, .contact-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(196,150,90,0.2);
}
.contact-info {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--stone);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.contact-info a {
    color: var(--sand-dark);
    text-decoration: none;
    transition: color 0.2s;
}
.contact-info a:hover { color: var(--amber-bright); }

/* ─── FOOTER ──────────────────────────────────────────────────────── */
footer {
    background: #0e0c09;
    border-top: 1px solid rgba(212,132,10,0.12);
    padding: 1.75rem 0;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-copy {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: rgba(147,128,112,0.6);
    text-transform: uppercase;
}
.footer-brand {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.12em;
    color: var(--amber);
    text-transform: uppercase;
}

/* ─── SCROLL ANIMATIONS ───────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── HERO INNER ANIMATIONS ───────────────────────────────────────── */
.hero-content > * {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s forwards;
}
.hero-content > *:nth-child(1) { animation-delay: 0.2s; }
.hero-content > *:nth-child(2) { animation-delay: 0.35s; }
.hero-content > *:nth-child(3) { animation-delay: 0.5s; }
.hero-content > *:nth-child(4) { animation-delay: 0.6s; }
.hero-content > *:nth-child(5) { animation-delay: 0.7s; }
.hero-image-wrap { animation: fadeIn 1.2s 0.8s forwards; opacity: 0; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }
@keyframes fadeIn { to { opacity: 1; } }

/* ─── UTILITY ─────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-sm { margin-top: 0.75rem; }

.rule {
    width: 3rem;
    height: 2px;
    background: var(--amber);
    border: none;
    margin: 1.25rem 0;
}
.rule--center { margin-left: auto; margin-right: auto; }
