/* =========================================================
   The Crown Hotel — Option B (Fresh polished template)
   Editorial country-inn look. Cormorant Garamond display
   serif + Jost humanist sans. Forest-green accent on cream.
   ========================================================= */

:root {
    --ink: #20231f;
    --ink-soft: #5d6157;
    --paper: #faf8f3;
    --paper-2: #f0ece2;
    --green: #2f4032;        /* deep forest green */
    --green-2: #3c5340;
    --gold: #a8884f;         /* muted heritage gold */
    --line: #ddd6c8;
    --display: "Cormorant Garamond", Georgia, serif;
    --sans: "Jost", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--sans);
    font-weight: 300;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- Top bar ---------- */
.topbar {
    background: var(--green);
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    padding: 9px clamp(20px, 6vw, 70px);
}
.topbar a { color: #fff; text-decoration: none; }

/* ---------- Navigation ---------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px clamp(20px, 6vw, 70px);
    background: rgba(250, 248, 243, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}
.nav__brand {
    font-family: var(--display);
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav__crown { color: var(--gold); font-size: 18px; }
.nav__links { display: flex; gap: clamp(14px, 2vw, 30px); }
.nav__links a {
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.nav__links a:hover { color: var(--green); }
.nav__book {
    background: var(--green);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 2px;
}
.nav__book:hover { background: var(--green-2); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    font-family: var(--sans);
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 2px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn--solid { background: var(--gold); color: #fff; }
.btn--solid:hover { background: #927442; }
.btn--dark { background: var(--green); color: #fff; }
.btn--dark:hover { background: var(--green-2); }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn--outline:hover { background: rgba(255,255,255,0.12); }

/* ---------- Hero ---------- */
.hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 60px 20px;
    background: linear-gradient(rgba(24,28,22,0.45), rgba(24,28,22,0.6)),
                url('imgs/crown.webp') center/cover no-repeat;
}
.hero__content { max-width: 820px; }
.hero__est {
    font-family: var(--display);
    font-style: italic;
    font-size: 22px;
    letter-spacing: 1px;
    color: var(--gold);
    margin: 0 0 10px;
}
.hero__title {
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(50px, 10vw, 120px);
    line-height: 0.98;
    margin: 0;
    text-shadow: 0 4px 28px rgba(0,0,0,0.45);
}
.hero__title span { font-style: italic; font-weight: 400; }
.hero__line {
    font-size: clamp(16px, 2vw, 20px);
    letter-spacing: 1px;
    margin: 22px 0 38px;
    color: rgba(255,255,255,0.92);
}
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Stats strip ---------- */
.strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--green);
    color: #fff;
}
.strip__item {
    padding: 34px 16px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.12);
}
.strip__item:last-child { border-right: 0; }
.strip__num {
    display: block;
    font-family: var(--display);
    font-size: 42px;
    color: #fff;
    line-height: 1;
}
.strip__label {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

/* ---------- Shared headings ---------- */
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    color: var(--gold);
    margin: 0 0 14px;
}
.eyebrow--center { text-align: center; }
.h2 {
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.05;
    margin: 0 0 24px;
    color: var(--ink);
}
.h2--center { text-align: center; }
.h2--light { color: #fff; }

/* ---------- Story ---------- */
.story {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(70px, 9vw, 120px) clamp(24px, 6vw, 70px);
}
.story p { font-size: 18px; color: var(--ink-soft); margin: 0 0 18px; }
.ticks { list-style: none; padding: 0; margin: 26px 0 0; }
.ticks li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--ink);
}
.ticks li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 600;
}

/* ---------- Placeholders ---------- */
.ph {
    background: var(--paper-2);
    border: 1px dashed var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
}
.ph::after {
    content: attr(data-label);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.ph--tall { aspect-ratio: 3 / 4; height: 100%; }
.ph--card { aspect-ratio: 4 / 3; }

/* ---------- Feature sections ---------- */
.feature {
    padding: clamp(70px, 9vw, 120px) clamp(24px, 6vw, 70px);
    max-width: 1180px;
    margin: 0 auto;
}
.feature--cream { background: var(--paper-2); max-width: none; }
.feature__head { max-width: 640px; margin: 0 auto 54px; text-align: center; }
.feature__intro { font-size: 18px; color: var(--ink-soft); margin: 0; }
.feature__foot { text-align: center; margin-top: 50px; }
.serve-times {
    font-family: var(--display);
    font-size: 22px;
    margin: 0 0 22px;
    color: var(--ink);
}
.note { font-size: 14px; color: var(--ink-soft); margin-top: 16px; }
.note a { color: var(--green); }

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
.dish { text-align: center; }
.dish h3 { font-family: var(--display); font-size: 26px; margin: 22px 0 8px; }
.dish p { font-size: 15px; color: var(--ink-soft); margin: 0; }

.room {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 3px;
    overflow: hidden;
}
.feature--cream .room { background: #fff; }
.room__body { padding: 22px 24px 26px; }
.room__body h3 { font-family: var(--display); font-size: 24px; margin: 0 0 8px; }
.room__body p { font-size: 15px; color: var(--ink-soft); margin: 0; }

/* ---------- Drink banner ---------- */
.banner {
    background: linear-gradient(rgba(24,28,22,0.55), rgba(24,28,22,0.7)),
                url('imgs/Ribs.png') center/cover fixed no-repeat;
    color: #fff;
    padding: clamp(90px, 12vw, 150px) clamp(24px, 6vw, 70px);
    display: flex;
    justify-content: flex-start;
}
.banner__panel { max-width: 560px; }
.banner__text { font-size: 18px; color: rgba(255,255,255,0.9); margin: 0; }

/* ---------- Events ---------- */
.events {
    background: var(--green);
    color: #fff;
    text-align: center;
    padding: clamp(70px, 9vw, 120px) clamp(24px, 6vw, 70px);
}
.events__inner { max-width: 640px; margin: 0 auto; }
.events p { font-size: 18px; color: rgba(255,255,255,0.85); margin: 0 0 30px; }

/* ---------- Visit ---------- */
.visit {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(70px, 9vw, 120px) clamp(24px, 6vw, 70px);
}
.visit address {
    font-style: normal;
    font-size: 18px;
    color: var(--ink-soft);
    margin-bottom: 28px;
}
.hours-list {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 24px;
    margin: 0;
}
.hours-list dt {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    padding-top: 4px;
}
.hours-list dd { margin: 0; font-size: 16px; }
.hours-list a { color: var(--green); text-decoration: none; }
.hours-list a:hover { text-decoration: underline; }
.visit__map iframe {
    width: 100%;
    height: 380px;
    border: 0;
    border-radius: 3px;
    filter: grayscale(0.15) sepia(0.06);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--ink);
    color: rgba(255,255,255,0.7);
    text-align: center;
    padding: 60px 24px 44px;
}
.footer__crown { color: var(--gold); font-size: 26px; }
.footer__name {
    font-family: var(--display);
    font-size: 26px;
    color: #fff;
    margin: 10px 0 14px;
}
.footer p { margin: 6px 0; font-size: 14px; }
.footer__contact {
    display: flex;
    gap: 22px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 18px 0 !important;
}
.footer__contact a { color: #fff; text-decoration: none; }
.footer__contact a:hover { color: var(--gold); }
.footer__legal { color: rgba(255,255,255,0.4); font-size: 12px; margin-top: 18px !important; }

/* ---------- Reveal animation ---------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
    .nav__links { display: none; }
    .story, .visit { grid-template-columns: 1fr; }
    .ph--tall { aspect-ratio: 4 / 3; }
    .strip { grid-template-columns: repeat(2, 1fr); }
    .strip__item:nth-child(2) { border-right: 0; }
    .banner { justify-content: center; text-align: center; }
}
