/* ================================================================
   bada.coffee - Graffiti Coffee Roastery Aesthetic
   Colors: #f5efe2 #d4c5b2 #8b7355 #d4a853 #1c1208 #4a6b6e #a34432 #f0d68a #c4561a #2a1a12
   Fonts: Cormorant Garamond, EB Garamond, Permanent Marker, Fira Code
   ================================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: #1c1208;
    color: #f5efe2;
    font-family: 'EB Garamond', Georgia, serif;
    font-weight: 400;
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ---- Scroll Progress Bar ---- */
.scroll-progress {
    position: fixed;
    right: 12px;
    top: 0;
    width: 3px;
    height: 0%;
    background: #d4a853;
    z-index: 1000;
    transition: height 0.1s linear;
    border-radius: 0 0 2px 2px;
}

/* ---- Section Label ---- */
.section-label {
    position: fixed;
    top: 24px;
    left: 24px;
    font-family: 'Permanent Marker', cursive;
    font-size: clamp(0.75rem, 1.5vw, 1.1rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d4a853;
    opacity: 0;
    z-index: 999;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: translateY(-8px);
    pointer-events: none;
}

.section-label.visible {
    opacity: 0.4;
    transform: translateY(0);
}

/* ---- Foreground Candle Flames ---- */
.foreground-flames {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 900;
}

.candle-flame {
    position: absolute;
    width: 12px;
    height: 28px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    background: radial-gradient(ellipse at 50% 60%, #f0d68a, #d4a853 40%, #c4561a 70%, transparent 100%);
    opacity: 0;
    filter: blur(1px);
    animation: flicker calc(0.8s + var(--flicker-seed) * 0.4s) ease-in-out infinite;
    transition: opacity 1.5s ease;
}

.candle-flame.active {
    opacity: 0.85;
}

.flame-1 { top: 15%; right: 40px; }
.flame-2 { top: 45%; right: 60px; }
.flame-3 { top: 70%; left: 30px; }
.flame-4 { top: 85%; right: 80px; }

@keyframes flicker {
    0%, 100% { transform: scaleY(1) scaleX(1); opacity: 0.9; }
    25% { transform: scaleY(1.1) scaleX(0.95); opacity: 1; }
    50% { transform: scaleY(0.95) scaleX(1.05); opacity: 0.85; }
    75% { transform: scaleY(1.05) scaleX(0.98); opacity: 0.95; }
}

/* ---- Lens Flare Layer ---- */
.lens-flare-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 800;
    overflow: hidden;
}

.flare-cluster {
    position: absolute;
    opacity: 0;
    transition: opacity 2s ease;
}

.flare-cluster.active {
    opacity: 1;
}

.flare-cluster-1 { top: 8%; right: 15%; }
.flare-cluster-2 { top: 35%; left: 10%; }
.flare-cluster-3 { top: 65%; right: 20%; }

.flare-disc {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f0d68a;
    opacity: 0.8;
    filter: blur(8px);
    position: absolute;
    top: 0;
    left: 0;
}

.flare-halo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,168,83,0.1) 0%, transparent 70%);
    position: absolute;
    top: -18px;
    left: -18px;
}

.flare-satellite {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 0.6;
    filter: blur(3px);
    position: absolute;
}

.sat-1 { background: #f0d68a; top: -12px; left: 20px; }
.sat-2 { background: #d4a853; top: 15px; left: -15px; }
.sat-3 { background: #c4561a; top: -8px; left: -20px; }

.flare-streak {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(240,214,138,0.3), transparent);
    position: absolute;
    top: 11px;
    left: -88px;
}

/* ---- Perspective Container ---- */
.perspective-container {
    perspective: 1200px;
    transform-style: preserve-3d;
    position: relative;
}

/* ---- Background Plane ---- */
.bg-plane {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #d4c5b2;
    z-index: -3;
    /* CSS noise grain texture */
    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)' opacity='0.06'/%3E%3C/svg%3E");
    background-size: 256px 256px;
}

/* ---- Mid-ground Plane ---- */
.mid-plane {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    transform: translateZ(-100px);
}

.coffee-ring {
    position: absolute;
    opacity: 0.5;
}

.ring-1 { top: 20%; left: 15%; transform: rotate(12deg); }
.ring-2 { top: 55%; right: 20%; transform: rotate(-8deg); }
.ring-3 { top: 78%; left: 40%; transform: rotate(25deg); }

.torn-paper {
    position: absolute;
    background: rgba(245,239,226,0.06);
    clip-path: polygon(5% 0%, 95% 2%, 100% 15%, 92% 100%, 8% 98%, 0% 12%);
}

.torn-1 { width: 200px; height: 120px; top: 30%; left: 8%; transform: rotate(-3deg); }
.torn-2 { width: 160px; height: 90px; top: 60%; right: 12%; transform: rotate(5deg); }
.torn-3 { width: 240px; height: 80px; top: 85%; left: 25%; transform: rotate(-1deg); }

/* ---- Content Sections ---- */
.content-section {
    position: relative;
    transform-style: preserve-3d;
}

/* ---- SECTION 1: THE APPROACH ---- */
.section-approach {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.approach-darkness {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1c1208;
    z-index: 1;
    transition: opacity 2s ease;
}

.candle-light-source {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.candle-body {
    position: relative;
    width: 60px;
    height: 80px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.candle-glow {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240,214,138,0.25) 0%, rgba(212,168,83,0.1) 30%, transparent 70%);
    opacity: 0;
    transition: opacity 2s ease 0.5s;
}

.candle-glow.lit {
    opacity: 1;
}

.candle-flame-intro {
    width: 16px;
    height: 36px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    background: radial-gradient(ellipse at 50% 60%, #f0d68a, #d4a853 40%, #c4561a 70%, transparent 100%);
    opacity: 0;
    transform: scale(0);
    transition: opacity 1.5s ease, transform 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: blur(0.5px);
}

.candle-flame-intro.lit {
    opacity: 1;
    transform: scale(1);
    animation: flicker 1.2s ease-in-out infinite;
}

.site-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 700;
    font-style: italic;
    font-size: clamp(5rem, 14vw, 12rem);
    color: #f5efe2;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 5;
    text-align: center;
    line-height: 1;
    opacity: 0;
    transition: opacity 1.5s ease 1s;
}

.site-title.revealed {
    opacity: 1;
}

.site-title .letter {
    display: inline-block;
    transform: rotate(var(--rot, 0deg)) translateY(var(--lift, 0px));
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    animation: none;
}

.site-title.revealed .letter {
    animation: letterReveal 0.8s ease forwards;
}

@keyframes letterReveal {
    0% { opacity: 0; transform: rotate(0deg) translateY(12px); }
    100% { opacity: 1; transform: rotate(var(--rot, 0deg)) translateY(var(--lift, 0px)); }
}

.peel-the-wall {
    font-family: 'Permanent Marker', cursive;
    font-size: clamp(0.9rem, 2vw, 1.3rem);
    letter-spacing: 0.12em;
    color: #c4561a;
    margin-top: 30px;
    position: relative;
    z-index: 5;
    opacity: 0;
    transition: opacity 1s ease 2.5s;
}

.peel-the-wall.visible {
    opacity: 1;
}

.scroll-arrow {
    position: relative;
    z-index: 5;
    margin-top: 40px;
    opacity: 0;
    transition: opacity 1s ease 3s;
    animation: pulse 2s ease-in-out infinite 3.5s;
}

.scroll-arrow.visible {
    opacity: 0.7;
}

@keyframes pulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ---- Wax Drip Dividers ---- */
.wax-drip-divider {
    position: relative;
    width: 100%;
    height: 60px;
    overflow: hidden;
    z-index: 5;
}

.wax-drip-divider svg {
    width: 100%;
    height: 100%;
}

/* ---- Asymmetric Grid ---- */
.asymmetric-grid {
    display: grid;
    grid-template-columns: 1fr 5fr 4fr 3fr 1fr;
    gap: 20px;
    padding: 60px 0;
    position: relative;
}

.grid-block {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.grid-block.in-view {
    opacity: 1;
    transform: translateY(0);
}

.grid-block[data-anim="spray-in"].in-view {
    animation: sprayIn 0.7s ease forwards;
}

@keyframes sprayIn {
    0% { opacity: 0; transform: scale(0.8) translateX(-20px); filter: blur(4px); }
    100% { opacity: 1; transform: scale(1) translateX(0); filter: blur(0); }
}

.block-left { grid-column: 2 / 3; }
.block-center { grid-column: 3 / 4; }
.block-right { grid-column: 4 / 5; align-self: start; }
.block-wide { grid-column: 2 / 4; }
.block-accent { grid-column: 4 / 5; align-self: center; text-align: center; }
.block-intimate { grid-column: 2 / 4; }
.block-side-note { grid-column: 4 / 5; }
.block-sensory { grid-column: 2 / 5; max-width: 38ch; }

.grid-offset { margin-top: -20px; }
.grid-offset-2 { margin-top: 40px; }

/* ---- SECTION 2: THE FIRST LAYER ---- */
.section-first-layer {
    position: relative;
    z-index: 8;
    padding: 80px 0 60px;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(240,214,138,0.15) 0%, transparent 60%),
        linear-gradient(180deg, transparent 0%, rgba(28,18,8,0.3) 100%);
}

/* ---- Typography ---- */
.spray-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 700;
    font-style: italic;
    font-size: clamp(3.5rem, 10vw, 9rem);
    color: #c4561a;
    line-height: 1;
    position: relative;
}

.spray-heading .letter {
    display: inline-block;
    transform: rotate(var(--rot, 0deg)) translateY(var(--lift, 0px));
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.heading-small {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

.body-text {
    font-family: 'EB Garamond', Georgia, serif;
    font-weight: 400;
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    line-height: 1.75;
    color: #f5efe2;
    max-width: 38ch;
    margin-bottom: 1.5em;
}

.intimate-text {
    font-size: clamp(0.95rem, 1.1vw, 1.15rem);
    color: rgba(245,239,226,0.9);
}

.tag-label {
    font-family: 'Permanent Marker', cursive;
    font-size: clamp(0.75rem, 1.5vw, 1.1rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c4561a;
    display: block;
    margin-bottom: 12px;
}

.fira {
    font-family: 'Fira Code', monospace;
    font-weight: 400;
    font-size: 0.85rem;
    color: #8b7355;
}

.mono-detail {
    display: block;
    margin-top: 8px;
}

.stencil-text {
    font-family: 'Permanent Marker', cursive;
    font-size: clamp(2rem, 5vw, 4rem);
    color: #f5efe2;
    background: #c4561a;
    padding: 8px 24px;
    display: inline-block;
    letter-spacing: 0.15em;
    position: relative;
}

/* Stencil bridge effect */
.stencil-text::before {
    content: '';
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(90deg, transparent 0%, transparent 15%, #c4561a 15%, #c4561a 18%);
}

/* ---- Spatter Overlay ---- */
.spatter-overlay {
    position: absolute;
    top: -20px;
    left: -30px;
    right: -30px;
    bottom: -20px;
    pointer-events: none;
    background-image:
        radial-gradient(circle 2px at 10% 20%, rgba(196,86,26,0.3) 0%, transparent 100%),
        radial-gradient(circle 1px at 25% 45%, rgba(196,86,26,0.2) 0%, transparent 100%),
        radial-gradient(circle 3px at 80% 15%, rgba(196,86,26,0.25) 0%, transparent 100%),
        radial-gradient(circle 1.5px at 60% 70%, rgba(196,86,26,0.15) 0%, transparent 100%),
        radial-gradient(circle 2px at 45% 90%, rgba(196,86,26,0.2) 0%, transparent 100%),
        radial-gradient(circle 1px at 90% 55%, rgba(196,86,26,0.3) 0%, transparent 100%),
        radial-gradient(circle 2.5px at 15% 75%, rgba(196,86,26,0.1) 0%, transparent 100%),
        radial-gradient(circle 1px at 70% 30%, rgba(196,86,26,0.2) 0%, transparent 100%);
}

/* ---- Smoke Wisps ---- */
.smoke-wisp-container {
    position: relative;
    height: 200px;
    display: flex;
    justify-content: center;
}

.smoke-wisp .smoke-path {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: smokeRise 8s ease-in-out infinite;
}

@keyframes smokeRise {
    0% { stroke-dashoffset: 400; opacity: 0; }
    20% { opacity: 0.08; }
    80% { opacity: 0.03; }
    100% { stroke-dashoffset: 0; opacity: 0; }
}

/* ---- Candle Glow Overlays ---- */
.candle-glow-overlay {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.glow-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: -5%;
    background: radial-gradient(ellipse at 50% 50%, rgba(240,214,138,0.12) 0%, transparent 70%);
}

.glow-2 {
    width: 350px;
    height: 350px;
    top: 15%;
    left: -3%;
    background: radial-gradient(ellipse at 50% 50%, rgba(240,214,138,0.1) 0%, transparent 65%);
}

.glow-3 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    right: 10%;
    background: radial-gradient(ellipse at 50% 50%, rgba(212,168,83,0.08) 0%, transparent 60%);
}

.glow-4 {
    width: 250px;
    height: 250px;
    top: 5%;
    left: 15%;
    background: radial-gradient(ellipse at 50% 50%, rgba(240,214,138,0.1) 0%, transparent 65%);
}

.glow-5 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 5%;
    background: radial-gradient(ellipse at 50% 50%, rgba(212,168,83,0.12) 0%, transparent 60%);
}

.glow-6 {
    width: 350px;
    height: 350px;
    bottom: 5%;
    left: 30%;
    background: radial-gradient(ellipse at 50% 50%, rgba(240,214,138,0.08) 0%, transparent 70%);
}

/* ---- SECTION 3: THE EXCAVATION ---- */
.section-excavation {
    position: relative;
    z-index: 7;
    padding: 80px 0 60px;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(240,214,138,0.1) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 70%, rgba(212,168,83,0.08) 0%, transparent 50%),
        linear-gradient(180deg, #2a1a12 0%, #1c1208 100%);
}

.peel-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #d4c5b2;
    z-index: 2;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transform-origin: bottom right;
    transition: clip-path 1.5s cubic-bezier(0.65, 0, 0.35, 1), transform 1.5s cubic-bezier(0.65, 0, 0.35, 1);
    pointer-events: none;
}

.peel-layer.peeled {
    clip-path: polygon(100% 0%, 100% 0%, 100% 0%, 100% 0%);
    transform: perspective(600px) rotateY(-15deg);
}

.peel-content {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle 2px at 20% 30%, rgba(196,86,26,0.15) 0%, transparent 100%),
        radial-gradient(circle 1px at 50% 50%, rgba(196,86,26,0.1) 0%, transparent 100%),
        radial-gradient(circle 3px at 75% 20%, rgba(196,86,26,0.08) 0%, transparent 100%);
    opacity: 0.4;
}

.excavation-content {
    position: relative;
    z-index: 3;
}

/* ---- SECTION 4: THE ARCHIVE ---- */
.section-archive {
    position: relative;
    z-index: 6;
    background: #1c1208;
    padding: 100px 0;
}

.archive-phrase {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.archive-phrase.in-view {
    opacity: 1;
    transform: translateY(0);
}

.archive-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 700;
    font-style: italic;
    font-size: clamp(5rem, 14vw, 12rem);
    color: #f5efe2;
    text-align: center;
    line-height: 0.9;
}

.archive-heading .letter {
    display: inline-block;
    transform: rotate(var(--rot, 0deg)) translateY(var(--lift, 0px));
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.archive-void {
    min-height: 30vh;
    position: relative;
}

/* Ambient texture in voids */
.archive-void::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(240,214,138,0.04) 0%, transparent 70%);
    border-radius: 50%;
}

/* ---- Coffee Pour Container ---- */
.coffee-pour-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.coffee-pour-container.in-view {
    opacity: 1;
}

#coffeePourCanvas {
    max-width: 100%;
    height: auto;
}

/* ---- SECTION 5: THE SURFACE ---- */
.section-surface {
    position: relative;
    z-index: 5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.surface-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1c1208 0%, #2a1a12 30%, #8b7355 60%, #d4c5b2 80%, #f5efe2 100%);
    z-index: -1;
}

.surface-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
}

.final-message {
    font-family: 'Permanent Marker', cursive;
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: #1c1208;
    letter-spacing: 0.05em;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.final-message.in-view {
    opacity: 1;
    transform: translateY(0);
}

.final-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240,214,138,0.2) 0%, rgba(212,168,83,0.08) 40%, transparent 70%);
    z-index: -1;
}

/* ---- Smoke Layer ---- */
.smoke-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 850;
}

.smoke-layer .smoke-path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: globalSmokeRise 12s ease-in-out infinite;
}

.smoke-layer .smoke-2 {
    animation-delay: -4s;
}

.smoke-layer .smoke-3 {
    animation-delay: -8s;
}

@keyframes globalSmokeRise {
    0% { stroke-dashoffset: 200; opacity: 0; }
    10% { opacity: 0.06; }
    90% { opacity: 0.02; }
    100% { stroke-dashoffset: 0; opacity: 0; }
}

/* ---- Drip Marks ---- */
.grid-block.block-left::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 30%;
    width: 2px;
    height: 35px;
    background: linear-gradient(180deg, #c4561a, #c4561a 80%, transparent);
    border-radius: 0 0 50% 50%;
}

.grid-block.block-left::before {
    content: '';
    position: absolute;
    bottom: -48px;
    left: calc(30% - 3px);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c4561a;
    opacity: 0.7;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .asymmetric-grid {
        grid-template-columns: 16px 1fr 16px;
        gap: 16px;
    }

    .block-left,
    .block-center,
    .block-right,
    .block-wide,
    .block-accent,
    .block-intimate,
    .block-side-note,
    .block-sensory {
        grid-column: 2 / 3;
    }

    .site-title {
        font-size: clamp(3rem, 12vw, 6rem);
    }

    .spray-heading {
        font-size: clamp(2.5rem, 8vw, 5rem);
    }

    .archive-heading {
        font-size: clamp(3rem, 12vw, 7rem);
    }

    .scroll-progress {
        right: 6px;
    }

    .section-label {
        top: 12px;
        left: 12px;
        font-size: 0.7rem;
    }

    .flame-1 { right: 15px; }
    .flame-2 { right: 25px; }
    .flame-3 { left: 10px; }
    .flame-4 { right: 30px; }
}

@media (max-width: 480px) {
    .site-title {
        font-size: clamp(2.5rem, 14vw, 4.5rem);
    }

    .archive-heading {
        font-size: clamp(2.5rem, 14vw, 5rem);
    }

    .body-text {
        max-width: 100%;
    }
}

/* ---- Link styling (teal accent) ---- */
a {
    color: #4a6b6e;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #d4a853;
}

a:visited {
    color: #a34432;
}
