/* ===========================================================
   Olive & Stone — shared styles
   Palette: warm ivory · bordeaux wine · saffron gold · espresso
   =========================================================== */
:root {
  --ivory: #f8f4ec;
  --ivory-deep: #efe6d6;
  --paper: #fcf9f3;
  --ink: #211c19;
  --ink-soft: #5f564c;
  --wine: #7c2b3b;
  --wine-deep: #5e1f2c;
  --saffron: #c8962e;
  --saffron-deep: #a87c23;
  --espresso: #2a211d;
  --espresso-deep: #1d1714;
  --hairline: rgba(33, 28, 25, 0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0.005em;
}
::selection { background: var(--wine); color: var(--paper); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 40px; }

.eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--wine);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--wine); opacity: 0.7; }
.eyebrow.center::after { content: ''; width: 28px; height: 1px; background: var(--wine); opacity: 0.7; }

/* ===== buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 400;
  padding: 14px 28px; border-radius: 2px; cursor: pointer;
  border: 1px solid transparent; transition: all 0.35s ease;
}
.btn-solid { background: var(--wine); color: var(--paper); }
.btn-solid:hover { background: var(--wine-deep); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(124,43,59,0.3); }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--ivory); }
.btn-gold { background: var(--saffron); color: var(--espresso-deep); }
.btn-gold:hover { background: var(--saffron-deep); transform: translateY(-2px); }
.btn-ghost-light { border-color: rgba(248,244,236,0.5); color: var(--paper); }
.btn-ghost-light:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ===== nav ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 40px;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
nav.scrolled, nav.solid {
  background: rgba(248, 244, 236, 0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding: 14px 40px; box-shadow: 0 1px 0 var(--hairline);
}
.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 600; letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 12px;
}
.brand .amp { color: var(--wine); font-style: italic; font-weight: 500; }
.brand .mark { width: 30px; height: 30px; flex-shrink: 0; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 400;
  color: var(--ink-soft); position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--wine); transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { padding: 11px 24px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  nav, nav.scrolled, nav.solid { padding: 14px 22px; }
}

/* ===== reusable media (real images) ===== */
.media { position: relative; overflow: hidden; background: var(--ivory-deep); }
.media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s cubic-bezier(0.2,0.6,0.2,1); }
.media:hover img { transform: scale(1.05); }

/* ===== page banner (subpages) ===== */
.page-banner {
  position: relative; min-height: 56vh; display: flex; align-items: flex-end;
  color: var(--paper); overflow: hidden;
}
.page-banner img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(29,23,20,0.35) 0%, rgba(29,23,20,0.72) 100%); }
.page-banner .wrap { position: relative; z-index: 2; padding-bottom: 56px; padding-top: 120px; }
.page-banner .eyebrow { color: var(--saffron); }
.page-banner .eyebrow::before { background: var(--saffron); }
.page-banner h1 { font-size: clamp(50px, 8vw, 104px); margin-top: 16px; }
.page-banner h1 em { font-style: italic; color: var(--saffron); }
.page-banner p { margin-top: 14px; max-width: 48ch; color: rgba(248,244,236,0.85); }

/* ===== hero (home) ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background:
    radial-gradient(ellipse at 72% 28%, rgba(200,150,46,0.12), transparent 55%),
    radial-gradient(ellipse at 18% 82%, rgba(124,43,59,0.10), transparent 50%),
    var(--ivory);
  overflow: hidden;
}
.hero::before { content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(0deg, rgba(33,28,25,0.014) 0 1px, transparent 1px 64px); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 56px; align-items: center; width: 100%; }
.hero-copy { padding: 120px 0 60px; }
.hero h1 { font-size: clamp(58px, 9vw, 122px); font-weight: 500; margin: 24px 0 26px; }
.hero h1 em { font-style: italic; color: var(--wine); }
.hero h1 .amp { color: var(--saffron); font-style: italic; }
.hero-tag { font-size: 21px; color: var(--ink-soft); max-width: 40ch; margin-bottom: 38px; }
.hero-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero-note { font-size: 13px; letter-spacing: 0.04em; color: var(--ink-soft); }
.hero-note strong { color: var(--ink); font-weight: 500; }

.hero-art { position: relative; height: 78vh; min-height: 520px; }
.hero-art .frame { position: absolute; border-radius: 4px; overflow: hidden; box-shadow: 0 30px 70px rgba(33,28,25,0.24); }
.hero-art .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-art .f1 { inset: 0 0 24% 20%; }
.hero-art .f2 { width: 47%; height: 40%; bottom: 0; left: 0; border: 8px solid var(--paper); box-shadow: 0 20px 46px rgba(33,28,25,0.28); }
.hero-art .badge {
  position: absolute; top: -16px; right: 3%; width: 116px; height: 116px; border-radius: 50%;
  background: var(--wine); color: var(--paper); display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  font-family: 'Cormorant Garamond', serif; line-height: 1.1; z-index: 3;
  box-shadow: 0 16px 40px rgba(124,43,59,0.4); transform: rotate(-6deg);
}
.hero-art .badge span:first-child { font-size: 30px; font-weight: 600; }
.hero-art .badge span:last-child { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-family: 'Jost', sans-serif; opacity: 0.88; }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 26px; }
  .hero-copy { padding: 130px 0 0; }
  .hero-art { height: 56vh; min-height: 360px; margin-bottom: 40px; }
}

/* ===== section title block ===== */
.sec { padding: 120px 0; }
.sec-head { margin-bottom: 60px; }
.sec-head.center { text-align: center; }
.sec-head h2 { font-size: clamp(40px, 5.4vw, 70px); margin: 18px 0 16px; }
.sec-head h2 em { font-style: italic; color: var(--wine); }
.sec-head.center p { max-width: 48ch; margin: 0 auto; color: var(--ink-soft); }
.sec-head p { color: var(--ink-soft); max-width: 52ch; }

/* ===== about / story ===== */
.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: center; }
.about-art { position: relative; }
.about-art .ph-main { aspect-ratio: 4/5; border-radius: 4px; }
.about-art .ph-sub {
  position: absolute; right: -32px; bottom: -40px; width: 56%; aspect-ratio: 1/1;
  border: 10px solid var(--paper); border-radius: 4px; box-shadow: 0 20px 50px rgba(33,28,25,0.2);
}
.about-art .stamp {
  position: absolute; left: -28px; top: 26px; z-index: 4;
  background: var(--wine); color: var(--paper);
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 22px;
  padding: 12px 20px; border-radius: 2px; box-shadow: 0 12px 30px rgba(124,43,59,0.32);
}
.about h2 { font-size: clamp(40px, 5.2vw, 66px); margin: 20px 0 26px; }
.about h2 em { font-style: italic; color: var(--saffron-deep); }
.about p { color: var(--ink-soft); margin-bottom: 22px; max-width: 54ch; }
.about p .lead { font-family: 'Cormorant Garamond', serif; font-size: 1.35em; font-style: italic; color: var(--ink); }
.about-sign { margin-top: 32px; }
.about-sign .name { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 30px; }
.about-sign .role { font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--ink-soft); }

@media (max-width: 900px) {
  .sec { padding: 84px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 70px; }
  .about-art .ph-sub { width: 48%; right: 0; }
}

/* ===== values strip ===== */
.values { background: var(--ivory); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value { padding: 36px 30px; border: 1px solid var(--hairline); border-radius: 6px; background: var(--paper); transition: transform 0.4s ease, box-shadow 0.4s ease; }
.value:hover { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(33,28,25,0.08); }
.value .num { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--saffron-deep); font-size: 26px; }
.value h3 { font-size: 26px; margin: 8px 0 10px; }
.value p { color: var(--ink-soft); font-size: 15.5px; }
@media (max-width: 800px) { .values-grid { grid-template-columns: 1fr; } }

/* ===== menu ===== */
.menu { background: var(--ivory); }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 56px; }
.dish { display: flex; gap: 22px; padding: 26px 0; border-bottom: 1px solid var(--hairline); align-items: flex-start; }
.dish-thumb { width: 92px; height: 92px; flex-shrink: 0; border-radius: 50%; overflow: hidden; border: 1px solid var(--hairline); }
.dish-thumb img { width: 100%; height: 100%; object-fit: cover; }
.dish-body { flex: 1; }
.dish-top { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 6px; }
.dish-name { font-family: 'Cormorant Garamond', serif; font-size: 27px; font-weight: 600; }
.dish-name .tag {
  font-family: 'Jost', sans-serif; font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--saffron-deep); border: 1px solid var(--saffron); padding: 2px 7px; border-radius: 100px;
  vertical-align: middle; margin-left: 10px; font-weight: 400;
}
.dish-dots { flex: 1; border-bottom: 1px dotted var(--hairline); transform: translateY(-5px); min-width: 18px; }
.dish-price { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; color: var(--wine); white-space: nowrap; }
.dish-desc { color: var(--ink-soft); font-size: 15.5px; max-width: 46ch; }
.menu-note { text-align: center; margin-top: 56px; }
.menu-note p { color: var(--ink-soft); font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 20px; margin-bottom: 24px; }
.menu-cat { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 30px; color: var(--wine); margin: 10px 0 18px; grid-column: 1 / -1; }
@media (max-width: 860px) { .menu-grid { grid-template-columns: 1fr; } }

/* ===== gallery ===== */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 16px; }
.gallery .tile { border-radius: 4px; overflow: hidden; position: relative; }
.gallery .tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s cubic-bezier(0.2,0.6,0.2,1); }
.gallery .tile:hover img { transform: scale(1.06); }
.gallery .tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 16px 14px;
  color: var(--paper); font-size: 13px; letter-spacing: 0.02em;
  background: linear-gradient(180deg, transparent, rgba(29,23,20,0.78));
  opacity: 0; transform: translateY(8px); transition: all 0.4s ease;
}
.gallery .tile:hover figcaption { opacity: 1; transform: none; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
@media (max-width: 860px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .g-wide { grid-column: span 2; }
}

/* ===== location ===== */
.location { background: var(--espresso); color: var(--ivory); position: relative; overflow: hidden; }
.location::before { content: ''; position: absolute; top: -120px; right: -120px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(200,150,46,0.26), transparent 70%); }
.loc-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.location .eyebrow { color: var(--saffron); }
.location .eyebrow::before { background: var(--saffron); }
.location h2 { font-size: clamp(40px, 5.4vw, 68px); margin: 18px 0 28px; color: var(--ivory); }
.location h2 em { font-style: italic; color: var(--saffron); }
.loc-detail { display: grid; gap: 24px; margin-bottom: 34px; }
.loc-row { display: flex; gap: 16px; align-items: flex-start; }
.loc-ico { width: 42px; height: 42px; flex-shrink: 0; border: 1px solid rgba(248,244,236,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--saffron); }
.loc-row h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.2em; font-family: 'Jost', sans-serif; font-weight: 400; color: var(--saffron); margin-bottom: 6px; }
.loc-row p { color: rgba(248,244,236,0.88); font-size: 16px; }
.loc-row .closed { color: #e0a0a0; }
.hours-card { background: rgba(29,23,20,0.4); border: 1px solid rgba(248,244,236,0.18); border-radius: 6px; padding: 40px 44px; backdrop-filter: blur(4px); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 13px 0; border-bottom: 1px solid rgba(248,244,236,0.16); font-size: 15px; }
.hours-table td:first-child { color: rgba(248,244,236,0.75); }
.hours-table td:last-child { text-align: right; color: var(--ivory); font-family: 'Cormorant Garamond', serif; font-size: 19px; }
.hours-table tr.is-closed td:last-child { color: #e0a0a0; font-style: italic; }
.hours-card .map-strip { margin-top: 24px; padding-top: 22px; border-top: 1px solid rgba(248,244,236,0.16); display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.hours-card .map-strip span { font-size: 13px; color: rgba(248,244,236,0.8); }
@media (max-width: 900px) { .loc-grid { grid-template-columns: 1fr; gap: 44px; } }

/* ===== reserve ===== */
.reserve { padding: 130px 0; text-align: center; background: radial-gradient(ellipse at 50% 0%, rgba(124,43,59,0.10), transparent 60%), var(--ivory); }
.reserve h2 { font-size: clamp(46px, 7vw, 100px); margin: 20px 0 22px; }
.reserve h2 em { font-style: italic; color: var(--wine); }
.reserve > .wrap > p { color: var(--ink-soft); max-width: 44ch; margin: 0 auto 40px; font-size: 19px; }
.reserve-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.reserve .btn { padding: 18px 40px; font-size: 14px; }
.reserve-or { margin-top: 28px; font-size: 14px; color: var(--ink-soft); }
.reserve-or a { color: var(--wine); border-bottom: 1px solid currentColor; }

/* reservation form (reserve page) */
.res-form { max-width: 720px; margin: 12px auto 0; text-align: left; background: var(--paper); border: 1px solid var(--hairline); border-radius: 10px; padding: 40px; box-shadow: 0 24px 60px rgba(33,28,25,0.08); }
.res-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.res-field { display: flex; flex-direction: column; }
.res-field.full { grid-column: 1 / -1; }
.res-field label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-soft); font-weight: 400; margin-bottom: 8px; }
.res-field input, .res-field select, .res-field textarea {
  font-family: inherit; font-size: 15px; color: var(--ink);
  background: var(--ivory); border: 1px solid var(--hairline); border-radius: 4px; padding: 13px 14px; transition: border 0.2s, box-shadow 0.2s;
}
.res-field input:focus, .res-field select:focus, .res-field textarea:focus { outline: none; border-color: var(--wine); box-shadow: 0 0 0 3px rgba(124,43,59,0.12); }
.res-field textarea { resize: vertical; min-height: 90px; }
.res-submit { width: 100%; justify-content: center; margin-top: 6px; }
.res-foot { text-align: center; font-size: 13px; color: var(--ink-soft); margin-top: 16px; }
.res-success { display: none; text-align: center; padding: 20px; }
.res-success.show { display: block; }
.res-success .check { width: 64px; height: 64px; border-radius: 50%; background: var(--wine); color: var(--paper); display: flex; align-items: center; justify-content: center; font-size: 30px; margin: 0 auto 18px; }
.res-success h3 { font-size: 30px; margin-bottom: 8px; }
.res-success p { color: var(--ink-soft); }
@media (max-width: 640px) { .res-row { grid-template-columns: 1fr; } .res-form { padding: 28px; } }

/* ===== CTA banner (cross-page) ===== */
.cta-band { position: relative; overflow: hidden; color: var(--paper); text-align: center; }
.cta-band img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ''; position: absolute; inset: 0; background: rgba(29,23,20,0.7); }
.cta-band .wrap { position: relative; z-index: 2; padding: 110px 40px; }
.cta-band h2 { font-size: clamp(40px, 5.5vw, 76px); margin-bottom: 22px; }
.cta-band h2 em { font-style: italic; color: var(--saffron); }
.cta-band p { max-width: 46ch; margin: 0 auto 34px; color: rgba(248,244,236,0.85); }

/* ===== footer ===== */
footer { background: var(--espresso-deep); color: var(--ivory); padding: 80px 0 36px; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid rgba(248,244,236,0.14); }
.foot-brand .brand { color: var(--ivory); font-size: 32px; margin-bottom: 16px; }
.foot-brand p { color: rgba(248,244,236,0.6); max-width: 32ch; font-size: 15px; }
.foot-col h5 { font-family: 'Jost', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--saffron); margin-bottom: 18px; font-weight: 400; }
.foot-col p, .foot-col a { color: rgba(248,244,236,0.82); font-size: 15px; display: block; padding: 4px 0; transition: color 0.3s; }
.foot-col a:hover { color: var(--saffron); }
.foot-social { display: flex; gap: 12px; margin-top: 8px; }
.foot-social a { width: 40px; height: 40px; padding: 0; border: 1px solid rgba(248,244,236,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.foot-social a:hover { background: var(--wine); border-color: var(--wine); transform: translateY(-2px); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 30px; flex-wrap: wrap; gap: 10px; font-size: 13px; color: rgba(248,244,236,0.5); }
@media (max-width: 820px) { .foot-top { grid-template-columns: 1fr 1fr; gap: 40px; } .foot-brand { grid-column: 1 / -1; } }

/* ===== reveal ===== */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity 1s cubic-bezier(0.2,0.6,0.2,1), transform 1s cubic-bezier(0.2,0.6,0.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }
