/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Karla', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: #3A2F28;
  background-color: #F5EDE4;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
address { font-style: normal; }
h1, h2, h3 { font-family: 'Instrument Serif', serif; font-weight: 400; line-height: 1.15; }

/* ===== SKIN ===== */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: #C07151; color: #F5EDE4;
  padding: .5rem 1rem; border-radius: 0 0 4px 4px;
  z-index: 200; font-size: .875rem;
}
.skip-link:focus { top: 0; }

/* ===== GRAIN ===== */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 999;
  opacity: .035;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}
.overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 998;
  background: radial-gradient(ellipse at 30% 20%, transparent 50%, rgba(245,237,228,.4) 100%);
}

/* ===== CONTAINER ===== */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
@media (max-width: 640px) { .container { padding: 0 1.25rem; } }

/* ===== TYPOGRAPHY ===== */
.eyebrow {
  font-family: 'Karla', sans-serif;
  font-weight: 400;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #C07151;
  margin-bottom: 1rem;
}
h1.hero-title {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  color: #3A2F28;
  margin-bottom: 1.5rem;
  font-style: italic;
}
h2 { font-size: clamp(1.75rem, 3.5vw, 3rem); color: #3A2F28; margin-bottom: 1.25rem; }
h3 { font-size: 1.25rem; color: #3A2F28; margin-bottom: .75rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 2rem;
  border-radius: 100px;
  font-family: 'Karla', sans-serif;
  font-weight: 400;
  font-size: .9375rem;
  letter-spacing: .02em;
  transition: all .3s ease;
}
.btn--primary {
  background: #C07151; color: #F5EDE4;
  border: 1.5px solid #C07151;
}
.btn--primary:hover { background: #A85D3F; border-color: #A85D3F; transform: translateY(-1px); }
.btn--ghost {
  background: transparent; color: #3A2F28;
  border: 1.5px solid #C4B5A5;
}
.btn--ghost:hover { border-color: #C07151; color: #C07151; }
.btn--small { padding: .625rem 1.25rem; font-size: .8125rem; }
.btn--large { padding: 1rem 2.5rem; font-size: 1rem; }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 0;
  background: rgba(245,237,228,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,181,165,.3);
  transition: padding .3s ease, background .3s ease;
}
.site-header.scrolled { padding: .75rem 0; background: rgba(245,237,228,.95); }
.header-inner { display: flex; align-items: center; justify-content: space-between; }

/* Logo */
.logo {
  display: flex; align-items: center; gap: .5rem;
  font-family: 'Karla', sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: .04em;
  color: #3A2F28;
}
.logo-mark { color: #C07151; }
.logo-word { font-weight: 500; }
.logo-slash { color: #C4B5A5; margin: 0 .125rem; }

/* Nav */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.nav-toggle-line {
  display: block; width: 22px; height: 1.5px;
  background: #3A2F28; border-radius: 2px;
  transition: all .3s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-list {
  display: flex; align-items: center; gap: 2.5rem;
  font-size: .875rem; letter-spacing: .04em; text-transform: uppercase;
}
.nav-list a {
  position: relative; color: #3A2F28;
  transition: color .3s ease;
}
.nav-list a:not(.btn):after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: #C07151;
  transition: width .3s ease;
}
.nav-list a:not(.btn):hover { color: #C07151; }
.nav-list a:not(.btn):hover:after { width: 100%; }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-list {
    position: fixed; top: 0; right: 0;
    width: min(320px, 85vw); height: 100vh;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 2rem;
    background: #F5EDE4;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    box-shadow: -8px 0 30px rgba(0,0,0,.08);
  }
  .nav-list.open { transform: translateX(0); }
  .nav-list a { font-size: 1.125rem; }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh; min-height: 100dvh;
  display: flex; flex-direction: column;
  padding-top: 6rem; padding-bottom: 3rem;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  flex: 1;
}
.hero-copy { padding-right: 1rem; }
.hero-sub {
  font-size: 1.125rem; color: #6B5B50;
  max-width: 440px; margin-bottom: 2rem;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.hero-img { border-radius: 12px; overflow: hidden; }
.hero-img--main {
  grid-row: 1;
  box-shadow: 0 20px 60px rgba(58,47,40,.12);
}
.hero-img--accent {
  position: absolute;
  bottom: -2rem; left: -3rem;
  width: 58%;
  box-shadow: 0 16px 48px rgba(58,47,40,.15);
  border: 4px solid #F5EDE4;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

.hero-scroll {
  display: flex; align-items: center; gap: .75rem;
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  color: #A89080; margin-top: 2rem;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; margin: 2rem auto 0; }
  .hero-img--accent { left: 0; bottom: -1.5rem; width: 50%; }
  .hero-copy { padding-right: 0; }
}
@media (max-width: 480px) {
  .hero-img--accent { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ===== PILLARS ===== */
.pillars { padding: 8rem 0; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.pillar {
  padding: 2rem;
  border: 1px solid rgba(196,181,165,.4);
  border-radius: 12px;
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(192,113,81,.04) 0%, transparent 100%);
  opacity: 0;
  transition: opacity .4s ease;
}
.pillar:hover { border-color: #C07151; transform: translateY(-4px); box-shadow: 0 12px 40px rgba(192,113,81,.1); }
.pillar:hover::before { opacity: 1; }
.pillar-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid #C07151;
  display: flex; align-items: center; justify-content: center;
  color: #C07151; margin-bottom: 1.25rem;
  transition: all .3s ease;
}
.pillar:hover .pillar-icon { background: #C07151; color: #F5EDE4; }
.pillar p { font-size: .9375rem; color: #6B5B50; line-height: 1.75; }

@media (max-width: 900px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pillars-grid { grid-template-columns: 1fr; } }

/* ===== STORY ===== */
.story { padding: 8rem 0; }
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.story-img { border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(58,47,40,.1); }
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-copy h2 { margin-bottom: 1.5rem; }
.story-copy p { color: #6B5B50; margin-bottom: 1.25rem; font-size: 1.0625rem; }
.story-stats {
  display: flex; gap: 2rem; margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(196,181,165,.5);
}
.stat { display: flex; flex-direction: column; gap: .25rem; }
.stat-number {
  font-family: 'Instrument Serif', serif;
  font-size: 2rem; color: #C07151; line-height: 1;
}
.stat-label { font-size: .8125rem; color: #8A7B70; letter-spacing: .04em; text-transform: uppercase; }
.stat-divider { width: 1px; background: rgba(196,181,165,.5); align-self: stretch; }

@media (max-width: 900px) {
  .story-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-img { max-height: 480px; }
}

/* ===== GALLERY ===== */
.gallery { padding: 0 0 8rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.gallery-item { border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.05); }

@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ===== HOURS ===== */
.hours { padding: 8rem 0; background: #EDE3D8; }
.hours-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.hours-info h2 { margin-bottom: 1.5rem; }
.address { font-size: 1.0625rem; color: #6B5B50; line-height: 1.8; margin-bottom: 1.25rem; }
.phone-link {
  display: inline-flex; align-items: center; gap: .5rem;
  color: #C07151; font-size: 1rem;
  border-bottom: 1px solid rgba(192,113,81,.3);
  padding-bottom: .25rem;
  transition: border-color .3s ease;
}
.phone-link:hover { border-color: #C07151; }
.hours-table { border: 1px solid rgba(196,181,165,.4); border-radius: 12px; padding: 2rem; }
.hours-table h3 { margin-bottom: 1.25rem; }
.hours-table ul { display: flex; flex-direction: column; gap: .625rem; }
.hours-table li {
  display: flex; justify-content: space-between;
  font-size: .9375rem; padding-bottom: .625rem;
  border-bottom: 1px solid rgba(196,181,165,.3);
}
.hours-table li:last-child { border-bottom: none; padding-bottom: 0; }
.hours-table li span:first-child { font-weight: 500; color: #3A2F28; }
.hours-table li span:last-child { color: #6B5B50; }
.hours-map { border: 1px solid rgba(196,181,165,.4); border-radius: 12px; overflow: hidden; }
.map-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 320px; text-align: center; gap: 1rem; padding: 2rem;
  background: linear-gradient(135deg, #E8DDD2 0%, #F5EDE4 100%);
}
.map-placeholder svg { color: #C07151; }
.map-placeholder p { font-size: .9375rem; color: #6B5B50; }

@media (max-width: 900px) { .hours-layout { grid-template-columns: 1fr; } }

/* ===== CTA ===== */
.cta { padding: 8rem 0; }
.cta-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.cta h2 { margin-bottom: 2.5rem; }

.reservation-form {
  text-align: left;
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(58,47,40,.06);
  border: 1px solid rgba(196,181,165,.3);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group label {
  font-size: .8125rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  color: #8A7B70;
}
.form-group input, .form-group select {
  padding: .875rem 1rem;
  border: 1.5px solid rgba(196,181,165,.5);
  border-radius: 8px;
  font-family: 'Karla', sans-serif;
  font-size: 1rem;
  color: #3A2F28;
  background: #F5EDE4;
  transition: border-color .3s ease, box-shadow .3s ease;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: #C07151;
  box-shadow: 0 0 0 3px rgba(192,113,81,.12);
}
.form-group input::placeholder { color: #B8A898; }
.form-note { font-size: .8125rem; color: #8A7B70; margin-top: 1rem; text-align: center; }
.form-success {
  display: flex; align-items: center; gap: .75rem;
  margin-top: 1.5rem; padding: 1rem 1.25rem;
  background: rgba(192,113,81,.08);
  border: 1px solid rgba(192,113,81,.2);
  border-radius: 8px;
  color: #C07151;
  font-size: .9375rem;
}
.form-success svg { flex-shrink: 0; }

@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } .reservation-form { padding: 1.5rem; } }

/* ===== FOOTER ===== */
.site-footer { padding: 4rem 0 2rem; border-top: 1px solid rgba(196,181,165,.4); }
.footer-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 2rem; text-align: center;
}
.footer-brand p { font-size: .875rem; color: #8A7B70; margin-top: .75rem; line-height: 1.8; }
.footer-nav { display: flex; gap: 2rem; font-size: .875rem; letter-spacing: .06em; text-transform: uppercase; }
.footer-nav a { color: #6B5B50; transition: color .3s ease; }
.footer-nav a:hover { color: #C07151; }
.footer-copy { font-size: .8125rem; color: #A89080; margin-top: .5rem; }

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
