*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --orange: #c8611a;
    --orange-dk: #9e4b10;
    --orange-glow: rgba(200, 97, 26, 0.4);
    --blue: #2563eb;
    --blue-dk: #1d4ed8;
    --blue-glow: rgba(37, 99, 235, 0.45);
    --gold: #f0a847;
    --dark: #0f172a;
    --stone: #b89a7e;
    --cream: #f4ece0;
    --text: #2b1505;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    min-height: 100vh;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #1e0d04;
}

::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 3px;
}

/* ══════════════════════════════════════
   KEYFRAMES — Model 6 (Clip-Path Wipe)
══════════════════════════════════════ */

/* Logo icon: scale + fade in */
@keyframes iconScaleIn {
    from {
        opacity: 0;
        transform: scale(0.6) rotate(-8deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Logo text: letter-spacing expands (tracked-in) */
@keyframes logoTrackIn {
    from {
        opacity: 0;
        letter-spacing: -2px;
    }

    to {
        opacity: 1;
        letter-spacing: 2px;
    }
}

/* Sub-tag fades up */
@keyframes tagFade {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Clip-path wipe — reveals left to right */
@keyframes wipeReveal {
    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 0% 0 0);
    }
}

/* Border gradient line grows under navbar */
@keyframes borderGrow {
    from {
        transform: scaleX(0);
        transform-origin: left;
    }

    to {
        transform: scaleX(1);
        transform-origin: left;
    }
}

/* Button wipes in from right */
@keyframes btnWipe {
    from {
        clip-path: inset(0 0 0 100%);
        opacity: 0;
    }

    to {
        clip-path: inset(0 0 0 0%);
        opacity: 1;
    }
}

/* Icon pulse on hover */
@keyframes pulseBlue {
    0% {
        box-shadow: 0 0 0 0 var(--blue-glow);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

/* Mobile menu */
@keyframes menuDrop {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ══════════════════════════════════════
   FIXED WRAPPER
══════════════════════════════════════ */
.Header-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    
    
}

/* ══════════════════════════════════════
   NAVBAR — default white
══════════════════════════════════════ */
.navbar {
    width: 100%;
    background: #ffffff;
    padding: 10px 0;
    position: relative;
    transition:
        background .4s ease,
        padding .3s ease,
        box-shadow .4s ease;
}

/* Gradient border line at bottom — wipes in on load */
.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--orange), var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    animation: borderGrow .8s cubic-bezier(.4, 0, .2, 1) .1s forwards;
    transition: opacity .4s ease;
}

/* ══════════════════════════════════════
   NAVBAR — scrolled dark glass
══════════════════════════════════════ */
.navbar.scrolled {
    background: rgba(15, 5, 2, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 32px rgba(0, 0, 0, .4);
    padding: 10px 0;
}

/* Keep border visible when scrolled */
.navbar.scrolled::after {
    opacity: 1;
}

/* ── Scroll progress bar ── */
.scroll-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--blue), var(--orange), var(--gold));
    border-radius: 0 2px 2px 0;
    z-index: 2;
    transition: width .08s linear;
}

/* ══════════════════════════════════════
   LAYOUT
══════════════════════════════════════ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

/* ══════════════════════════════════════
   LOGO
══════════════════════════════════════ */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
    flex-shrink: 0;
}

/* Icon — scales + rotates in */
.logo-icon {
  background-image: url('kilnshelf-icon.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 60px;
  height: 60px;
}
.logo:hover .logo-icon {
    transform: scale(1.1) rotate(-3deg);
    /* background: var(--blue-dk); */
    /* animation: pulseBlue 1.4s infinite; */
}

.logo-texts {
    display: flex;
    flex-direction: column;
    gap: 3px;
    overflow: hidden;
}

/* Brand name — letter-spacing expands in */
.logo-name {
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0b1120;
    line-height: 1;
    animation: logoTrackIn .9s cubic-bezier(.4, 0, .2, 1) .2s both;
    transition: color .3s ease;

    
}

/* Sub tag fades after name */
.logo-tag {
    font-size: .6rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--stone);
    font-weight: 700;
    line-height: 1;
    opacity: 0;
    animation: tagFade .5s ease .9s forwards;
}

/* Scrolled logo colours */
.navbar.scrolled .logo-name {
    color: #ffffff;
        font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    background: linear-gradient(90deg,
            #e2d7cc 0%,
            #f0a847 40%,
            #e2d7cc 60%,
            #e2d7cc 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: background-position 0.1s;
}

.navbar.scrolled .logo-tag {
    color: rgba(255, 255, 255, .35);
}

.navbar.scrolled .logo:hover .logo-name {
    color: var(--gold);
}

/* ══════════════════════════════════════
   NAV LINKS — clip-path wipe reveal
══════════════════════════════════════ */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 40px;
    padding-left: 300px;
    
  
}

/* Each li wipes in left-to-right */
.nav-links li {
    
    clip-path: inset(0 100% 0 0);
    animation: wipeReveal .55s cubic-bezier(.4, 0, .2, 1) both;
}

.nav-links li:nth-child(1) {
    animation-delay: .20s;
}

.nav-links li:nth-child(2) {
    animation-delay: .38s;
}

.nav-links li:nth-child(3) {
    animation-delay: .56s;
}

.nav-links li:nth-child(4) {
    animation-delay: .74s;
}

.nav-links a {
    text-decoration: none;
    font-weight: 700;
    font-size: .98rem;
    
    letter-spacing: .04em;
    color: #374151;
    transition: color .25s ease;
}

/* hover — colour only */
.nav-links a:hover {
    color: var(--orange);
}

/* active — stays orange permanently */
.nav-links a.active {
    color: var(--orange);
    font-weight: 800;
}

/* scrolled */
.navbar.scrolled .nav-links a {
    color: rgba(255, 255, 255, .72);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--gold);
}

.navbar.scrolled .nav-links a.active {
    color: var(--gold);
    font-weight: 800;
}

/* ══════════════════════════════════════
   QUOTE BUTTON — wipes in from right
══════════════════════════════════════ */
.quote-btn {
    background: var(--dark);
    color: #fff;
    padding: 11px 22px;
    border: 2px solid transparent;
    border-radius: 7px;
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .04em;
    cursor: pointer;
    flex-shrink: 0;
    animation: btnWipe .6s cubic-bezier(.4, 0, .2, 1) .8s both;
    transition: background .3s, border-color .3s, color .3s, transform .2s, box-shadow .25s;
}

.quote-btn:hover {
    background: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--orange-glow);
}

/* scrolled button */
.navbar.scrolled .quote-btn {
    background: transparent;
    border-color: var(--orange);
    color: #fff;
}

.navbar.scrolled .quote-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 6px 20px var(--orange-glow);
}

/* ══════════════════════════════════════
   HAMBURGER
══════════════════════════════════════ */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #374151;
    border-radius: 2px;
    transition: transform .3s, opacity .3s, background .3s;
}

.navbar.scrolled .hamburger span {
    background: rgba(255, 255, 255, .75);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ══════════════════════════════════════
   MOBILE
══════════════════════════════════════ */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .quote-btn {
        display: none;
    }

    .nav-links {
        display: none;
        padding-left: 0;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 5, 2, .97);
        backdrop-filter: blur(18px);
        border-top: 1px solid rgba(200, 97, 26, .2);
        animation: menuDrop .3s ease;
        padding: .4rem 0 1rem;
    }

    .nav-links.open li {
        clip-path: none;
        animation: none;
        opacity: 1;
        width: 100%;
    }

    .nav-links.open a {
        display: block;
        padding: .85rem 1.5rem;
        color: rgba(255, 255, 255, .75);
        font-size: .95rem;
        border-bottom: 1px solid rgba(255, 255, 255, .05);
    }

    .nav-links.open a.active {
        color: var(--orange);
    }

    .nav-links.open a:hover {
        color: #fff;
        background: rgba(200, 97, 26, .1);
    }
}



/* ------------------------------------ */


/* ─────────────────────────────────────
       HERO
    ───────────────────────────────────── */
.hero {

    position: relative;
    min-height: 720px;
    background:
        linear-gradient(rgba(37, 23, 18, 0.65) 100%, rgba(15, 6, 2, 0.38) 100%, rgba(15, 6, 2, 0.88) 100%),
        url('herobanner.png') center/cover no-repeat;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.5rem 3rem;
    overflow: hidden;
    margin-top: 10px;
    
    
}

/* grain texture overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("OIP.webp")center/cover no-repeat;
    pointer-events: none;
    opacity: 0.98;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeUp 0.9s ease both;
    
}

.hero-pre {
    font-size: 0.98rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 0.5rem;
    font-weight: 900;
    opacity: 1;
    
}

.hero-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    color: white;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    opacity:1;
}

.hero-h1 .accent {
    color: var(--orange);
    opacity:1;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 4vw, 2rem);
    font-weight: 800;
    color: #e8c88a;
    margin-bottom: 0.9rem;
    letter-spacing: 0.1em;
    opacity:1;
}

.hero-tagline .fire {
    color: var(--orange);
    font-style: italic;
}

.hero-sub {
    color: #ccc;
    font-size: 1.09rem;
    max-width: 400px;
    margin: 0 auto 2.5rem;
    font-weight: 700;
    line-height: 1.6;
    opacity:1;
}

/* Thumb row */
.hero-thumbs {
    margin-top: 50px;
    position: relative;
    z-index: 1;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeUp 0.9s 0.2s ease both;
}

.thumb {
    width: 145px;
    cursor: pointer;
    text-align: center;
}

.thumb-img {
    position: relative;
    border-radius: 7px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.12);
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.thumb-img img {
    width: 145px;
    height: 100px;
    object-fit: cover;
    display: block;
    transition: transform 0.38s;
}

.thumb:hover .thumb-img {
    transform: translateY(-3px);
    border-color: var(--orange);
}

.thumb:hover .thumb-img img {
    transform: scale(1.07);
}

.thumb.active .thumb-img {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(200, 97, 26, 0.35), 0 6px 24px rgba(200, 97, 26, 0.3);
}

.thumb-label {
    font-size: 0.7rem;
    color: #ddd;
    margin-top: 0.4rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.3;
}

.thumb.active .thumb-label {
    color: var(--orange);
}

/* ─────────────────────────────────────
       CARDS SECTION
    ───────────────────────────────────── */
.cards-section {
    margin-top: 0px;
    margin-bottom: 0px;
    /* background: grey    ; */
    padding: 4rem 1.5rem;
    position: relative;
    display: flex;
}

.cards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    /* height: 4px; */
    background-color: #eee5dc;

}

.wrap {
    max-width: 1120px;
    margin: 0 auto;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.card {
    background: #fff;
    border-radius: 9px;
    overflow: hidden;
    box-shadow: 0 2px 18px rgba(58, 30, 8, 0.10);
    display: flex;
    flex-direction: column;
    transition: transform 0.28s cubic-bezier(.25, .8, .25, 1), box-shadow 0.28s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(58, 30, 8, 0.18);
}

.card-img {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.card-img img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.card:hover .card-img img {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.6rem 0.9rem 0.6rem;
    background: linear-gradient(to top, rgba(18, 7, 2, 0.85) 0%, transparent 100%);
    color: #f0a847;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.card-overlay.amber {
    color: #f0a847;
}

.card-body {
    padding: 1.15rem 1.15rem 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 0.55rem;
}

.card-body p {
    font-size: 0.8rem;
    color: #7a5535;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.1rem;
}

.btn {
    display: inline-block;
    background: var(--orange);
    color: white;
    padding: 0.48rem 1.25rem;
    border-radius: 5px;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.04em;
    align-self: flex-start;
    transition: background 0.2s, transform 0.15s;
}

.btn:hover {
    background: var(--orange);
    transform: translateY(-1px);
}

.newsletter-section,
.cards-section {
    background:
        linear-gradient(rgba(41, 32, 29, 0.65) 0%, rgba(15, 6, 2, 0.38) 55%, rgba(15, 6, 2, 0.88) 100%),
        url('cardsbackgrounds.png') center/cover no-repeat;
}

/* ─────────────────────────────────────
       ABOUT + NEWSLETTER
    ───────────────────────────────────── */

/* Newsletter Section Base */
.newsletter-section {
    position: relative;
    margin-top: 0px;
    min-height: 400px;
    display: flex;

    align-items: center;
    font-family: 'Segoe UI', Roboto, sans-serif;
    overflow: hidden;
    background:
        linear-gradient(rgba(41, 32, 29, 0.65) 0%, rgba(15, 6, 2, 0.38) 55%, rgba(15, 6, 2, 0.88) 100%),
        url('cardsbackgrounds.png') center/cover no-repeat;

}

/* Dark Overlay for Text Clarity */
.newsletter-overlay {

    width: 100%;
    height: 400px;

    padding: 60px 10%;
}

.newsletter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Brand Styling --- */
.news-brand {
    flex: 1;
    min-width: 300px;

}

.news-logo-box {
    /* background: #d97706; */
    /* Kiln Orange */
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.logo-icon {
  background-image: url('kilnshelf-icon.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 60px; 
   height: 60px
}

.newsletter-section:hover .news-logo-box {
    transform: rotate(10deg) scale(1.1);
}

.news-brand-text h2 {

    margin: 0;
    font-size: 1.8rem;
}

.news-brand-text h2 span {
    color: #d97706;
}

.news-brand-text p {
    color: #a0a7b5;
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-top: 5px;
}

.news-description {
    color: #d1d5db;
    margin-top: 20px;
    line-height: 1.6;
    max-width: 400px;
}

/* --- Form Styling --- */
.news-form-container {
    flex: 1;
    min-width: 320px;
    text-align: left;
    
}

.news-form-container h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 10px;
    animation: slideInRight 0.8s ease;
}

.news-form-container p {
    color: #a0a7b5;
    margin-bottom: 25px;
}

.subscribe-form {
    display: flex;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
   
}

.subscribe-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
    font-size: 1rem;
}

.subscribe-form button {
    background: #d97706;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
     
}

/* --- Interactions & Animations --- */
.subscribe-form button:hover {
    background: #f59e0b;
    padding-left: 40px;
    /* Expands slightly on hover */
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .newsletter-container {
        flex-direction: column;
        text-align: center;
    }

    .news-brand,
    .news-form-container {
        text-align: center;
    }

    .news-logo-box {
        margin: 0 auto 15px;
    }

    .subscribe-form {
        flex-direction: column;
        gap: 10px;
    }

    .subscribe-form input,
    .subscribe-form button {
        border-radius: 4px;
    }
}


/* -------------------------------footer------------------------------- */
/* ----------------------------------------------------------------------------- */
/* --- Base Styles (Keep your existing dark theme) --- */
/* ══════════════════════════════════════════
   KILNSHELF FOOTER — ANIMATED STYLES
   ══════════════════════════════════════════ */

/* ── 1. Keyframe Definitions ── */

@keyframes footerFadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoGlowPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.5);
    }

    60% {
        box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

@keyframes shimmerSlide {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes dividerGrow {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@keyframes linkSlideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    70% {
        transform: translateY(-2px);
    }
}

@keyframes fadeInBottom {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ══════════════════════════════════════════
   2. BASE FOOTER
   ══════════════════════════════════════════ */

.site-footer {
    background-color: #121212;
    color: #e2d7cc;
    padding: 80px 20px 30px;
    font-family: 'Montserrat', sans-serif;

    /* Scroll-triggered fade-up for the whole footer */
    animation: footerFadeUp 0.9s ease both;
}

.footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

/* ══════════════════════════════════════════
   3. GRID — staggered column reveal
   ══════════════════════════════════════════ */

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 50px;
}

/* Each direct child column fades up with stagger */
.footer-grid>* {
    animation: footerFadeUp 0.75s ease both;
}

.footer-grid>*:nth-child(1) {
    animation-delay: 0.10s;
}

.footer-grid>*:nth-child(2) {
    animation-delay: 0.22s;
}

.footer-grid>*:nth-child(3) {
    animation-delay: 0.34s;
}

.footer-grid>*:nth-child(4) {
    animation-delay: 0.46s;
}

/* ══════════════════════════════════════════
   4. BRAND / LOGO AREA
   ══════════════════════════════════════════ */

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    cursor: pointer;
}

/* Blue icon box — pulse glow on hover */
.logo-area .logo-icon {
    
    color: white;
    font-weight: bold;
    
    border-radius: 4px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        background 0.3s ease;
}

.logo-area:hover .logo-icon {
    transform: scale(1.12) rotate(-3deg);
    
    
}

/* Brand name — shimmer sweep on hover */
.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    background: linear-gradient(90deg,
            #e2d7cc 0%,
            #f0a847 40%,
            #e2d7cc 60%,
            #e2d7cc 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: background-position 0.1s;
}

.logo-area:hover .logo-text {
    animation: shimmerSlide 1.2s linear forwards;
}

.brand-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #a39387;
    max-width: 300px;

    /* Subtle delayed fade-in */
    animation: footerFadeUp 0.9s 0.55s ease both;
}

/* ══════════════════════════════════════════
   5. SECTION HEADERS — animated underline
   ══════════════════════════════════════════ */

.footer-grid h4 {
    font-family: 'Cormorant Garamond', serif;
    color: #f0a847;
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

/* Animated orange underline grows left-to-right */
.footer-grid h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--orange, #c8611a);
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 0.5s ease;
    animation: dividerGrow 0.6s 0.6s ease forwards;
}

/* ══════════════════════════════════════════
   6. NAV LINKS — staggered slide-in
   ══════════════════════════════════════════ */

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
    opacity: 0;
    animation: linkSlideIn 0.5s ease forwards;
}

/* Cascade each link */
.footer-links li:nth-child(1) {
    animation-delay: 0.45s;
}

.footer-links li:nth-child(2) {
    animation-delay: 0.55s;
}

.footer-links li:nth-child(3) {
    animation-delay: 0.65s;
}

.footer-links li:nth-child(4) {
    animation-delay: 0.75s;
}

.footer-links li:nth-child(5) {
    animation-delay: 0.85s;
}

.footer-links li:nth-child(6) {
    animation-delay: 0.95s;
}

.footer-links a,
.footer-contact a {
    color: #a39387;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease, letter-spacing 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
    position: relative;
}

/* Arrow nudge + color shift on hover */
.footer-links a:hover,
.footer-contact a:hover {
    color: #f0a847;
    padding-left: 8px;
    letter-spacing: 0.03em;
}

/* Dot indicator before link on hover */
.footer-links a::before {
    content: '›';
    position: absolute;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
    color: #f0a847;
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity 0.25s ease, left 0.25s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -10px;
}

/* ══════════════════════════════════════════
   7. ADDRESS & CONTACT ITEMS
   ══════════════════════════════════════════ */

address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.8;
    color: #a39387;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    transition: transform 0.25s ease, color 0.25s ease;
    cursor: default;
}

/* Lift + icon bounce on hover */
.contact-item:hover {
    transform: translateX(4px);
    color: #e2d7cc;
}

/* If there's an icon/svg inside contact-item */
.contact-item svg,
.contact-item .icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.contact-item:hover svg,
.contact-item:hover .icon {
    animation: iconBounce 0.55s ease;
    color: #f0a847;
}

/* ══════════════════════════════════════════
   8. FOOTER BOTTOM — shimmer copyright line
   ══════════════════════════════════════════ */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    font-size: 0.8rem;
    color: #6d5d52;

    animation: fadeInBottom 0.8s 0.9s ease both;
    opacity: 0;
    /* starts hidden; animation fills it */
}

/* Shimmer on copyright text hover */
.footer-bottom p {
    transition: color 0.3s ease;
    cursor: default;
}

.footer-bottom p:hover {
    color: #a39387;
}

.footer-legal a {
    color: #6d5d52;
    margin-left: 20px;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #f0a847;
    transition: width 0.3s ease;
}

.footer-legal a:hover {
    color: #f0a847;
}

.footer-legal a:hover::after {
    width: 100%;
}

/* ══════════════════════════════════════════
   9. RESPONSIVE
   ══════════════════════════════════════════ */

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .logo-area,
    .contact-item {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .footer-links a::before {
        display: none;
        /* hide arrow nudge on mobile */
    }

    .footer-links a:hover {
        padding-left: 0;
    }
}