/* ══════════════════════════════════════
   ARTISAN'S TABLE - Sections
   ══════════════════════════════════════ */

/* ── HERO ── */
.hero {
  position:relative;
  height: 100vh;
  height: 100dvh;
  min-height: 760px;
  display:flex; align-items:center; overflow:hidden;
  padding-top: 140px;
  padding-bottom: 72px;
  box-sizing: border-box;
}
.hero-bg {
  position:absolute; inset:0;
  background: linear-gradient(180deg,
    #fff 0%,
    #fff 12%,
    rgba(124,142,118,.25) 28%,
    rgba(124,142,118,.6) 55%,
    rgb(124,142,118) 100%);
  transform:scale(1); transition:transform 8s ease;
}
.hero:hover .hero-bg { transform:scale(1); }
.hero-bg::after {
  content:''; position:absolute; inset:0;
  background: transparent;
}
.hero-content {
  position:relative; z-index:2;
  padding: 0 60px;
  color:#fff; max-width:880px;
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  display:inline-flex; align-items:center; gap:12px;
  font-size:10px; letter-spacing:.24em; text-transform:uppercase;
  color: var(--sage-dk); margin-bottom:24px;
}
.hero-eyebrow i { width:32px; height:1px; background:var(--rust); font-style:normal; }
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(66px, 8.5vw, 118px);
  font-weight:300; line-height:.92; letter-spacing:-.02em;
  margin-bottom:32px;
  color: var(--rust);
}
.hero h1 em { font-style:italic; color:var(--rust-lt); }
.hero-sub {
  font-size:15px; font-weight:300; line-height:1.82;
  color: rgba(255,255,255,0.98);
  max-width:440px; margin-left: auto; margin-right: auto; margin-bottom:48px;
}
.hero-actions { display:flex; align-items:center; justify-content: center; gap:32px; }
.hero-link {
  color:rgba(255,255,255,.6); font-size:12px; letter-spacing:.1em;
  text-transform:uppercase; display:flex; align-items:center; gap:8px;
  transition:color .2s;
}
.hero-link:hover { color:#fff; }
.hero-link svg { transition:transform .2s; }
.hero-link:hover svg { transform:translateX(4px); }
.hero-scroll {
  position:absolute; bottom:40px; right:60px; z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:10px;
  color:rgba(255,255,255,.3); font-size:9px; letter-spacing:.18em; text-transform:uppercase;
}
.scroll-line {
  width:1px; height:52px; background:rgba(255,255,255,.2);
  animation:scrolldown 2.2s ease infinite;
}
@keyframes scrolldown {
  0%,100% { transform:scaleY(1); transform-origin:top; }
  50%      { transform:scaleY(.5); transform-origin:bottom; }
}

/* ── PHILOSOPHY ── */
.philosophy { display:grid; grid-template-columns:1fr 1fr; min-height:88vh; }
.phil-visual { position:relative; overflow:hidden; }
.phil-visual img { width:100%; height:100%; object-fit:cover; object-position: center 60%; transition:transform 7s ease; }
.phil-visual:hover img { transform:scale(1.04); }
.phil-tag {
  position:absolute; bottom:36px; left:36px;
  background:var(--rust); color:#fff;
  padding:13px 22px; border-radius:3px;
  font-size:9px; letter-spacing:.18em; text-transform:uppercase; font-weight:500;
}
.phil-text {
  background:var(--cream2);
  display:flex; flex-direction:column; justify-content:center;
  padding:96px 80px;
}
.phil-text h2 { font-size:clamp(42px,4vw,62px); margin-bottom:28px; }
.phil-text p { font-size:15px; line-height:1.88; color:var(--muted); margin-bottom:18px; font-weight:300; }
.phil-numbers {
  display:flex; gap:40px;
  margin-top:48px; padding-top:48px;
  border-top:1px solid var(--border);
}
.phil-num h3 {
  font-family: var(--font-serif);
  font-size:52px; font-weight:300; line-height:1; color:var(--rust);
}
.phil-num h3 sup { font-size:.38em; vertical-align:super; }
.phil-num p { font-size:10px; color:var(--muted); margin-top:7px; letter-spacing:.08em; text-transform:uppercase; }

/* ── PHOTO STRIP ── */
.photostrip {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display:grid; grid-template-columns:repeat(6,1fr); height:300px; gap:3px;
}
.ps-item { overflow:hidden; position:relative; min-height:0; }
.ps-item img { width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.ps-item:hover img { transform:scale(1.08); }
.ps-item.wide { grid-column:span 2; }
.ps-overlay {
  position:absolute; inset:0; background:rgba(20,16,10,0);
  transition:background .3s;
}
.ps-item:hover .ps-overlay { background:rgba(122,69,32,.15); }

/* ── MENU ── */
.menu-section { padding:var(--section-pad); background:var(--cream); }
.menu-header {
  display:flex;
  justify-content:flex-start;
  align-items:flex-end;
  gap: 56px;
  max-width: 860px;
  margin-bottom:70px;
}
.menu-header h2 { font-size:clamp(46px,5vw,70px); }
.menu-header .sub { max-width:320px; font-size:14px; line-height:1.85; color:var(--muted); font-weight:300; }
.menu-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:2px; background:var(--border); border:1px solid var(--border);
}
.menu-item {
  background:var(--cream); padding:48px 38px;
  transition:background .3s; position:relative; overflow:hidden; cursor:default;
}
.menu-item::after {
  content:''; position:absolute; left:0; bottom:0;
  width:0; height:2.5px; background:var(--rust);
  transition:width .42s ease;
}
.menu-item:hover { background:var(--rust-pale); }
.menu-item:hover::after { width:100%; }
.menu-num { font-family:var(--font-serif); font-size:13px; color:var(--rust); opacity:.38; margin-bottom:14px; }
.menu-item h3 { font-family:var(--font-serif); font-size:26px; font-weight:400; margin-bottom:12px; }
.menu-item p { font-size:13px; line-height:1.75; color:var(--muted); font-weight:300; }
.menu-emoji { font-size:28px; margin-bottom:14px; display:block; }

/* ── CRAFT ── */
.craft-section {
  background:var(--ink); color:#fff;
  padding:var(--section-pad);
  display:grid; grid-template-columns:1fr 1fr; gap:96px; align-items:center;
}
.craft-text h2 { font-size:clamp(46px,4.8vw,72px); color:#fff; margin-bottom:28px; }
.craft-text h2 em { color:var(--rust-lt); }
.craft-text p { font-size:17px; line-height:1.88; color:rgba(255,255,255,.48); margin-bottom:22px; font-weight:300; }
.steps { margin-top:44px; display:flex; flex-direction:column; }
.step { display:flex; gap:22px; padding:22px 0; border-bottom:1px solid rgba(255,255,255,.06); }
.step-num { font-family:var(--font-serif); font-size:44px; font-weight:300; color:rgba(255,255,255,.1); line-height:1; flex-shrink:0; width:50px; }
.step-info h4 { font-size:16px; font-weight:500; margin-bottom:6px; }
.step-info p { font-size:15px; color:rgba(255,255,255,.4); line-height:1.7; font-weight:300; }
.craft-img { position:relative; }
.craft-img img { width:100%; height:560px; object-fit:cover; border-radius:3px; box-shadow:0 48px 96px rgba(0,0,0,.45); }
.craft-badge {
  position:absolute; top:40px; right:-28px;
  background:var(--rust); color:#fff;
  width:112px; height:112px; border-radius:50%;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; font-family:var(--font-serif);
  box-shadow:0 16px 40px rgba(122,69,32,.4);
}
.craft-badge b { font-size:38px; font-weight:300; line-height:1; }
.craft-badge s { font-size:10px; letter-spacing:.1em; text-transform:uppercase; opacity:.75; text-decoration:none; display:block; margin-top:2px; }

/* ── GALLERY ── */
.gallery-section { padding:var(--section-pad); }
.gallery-header { margin-bottom:52px; }
.gallery-header .label { margin-bottom:12px; }
.gallery-header h2 { font-size:clamp(42px,4vw,62px); color:var(--ink); }
.gallery-header .sub { font-size:14px; line-height:1.75; color:var(--muted); font-weight:300; margin-top:14px; max-width:420px; }
.gallery-grid {
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  grid-template-rows:520px;
  gap:4px;
}
.gallery-item { overflow:hidden; position:relative; }
.gallery-item.tall { grid-row:span 1; }
.gallery-item img { width:100%; height:100%; object-fit:cover; object-position:center; transition:transform .7s ease; }
.gallery-item:hover img { transform:scale(1.06); }
.gallery-caption {
  position:absolute; bottom:20px; left:20px;
  background:rgba(20,16,10,.7); backdrop-filter:blur(8px);
  color:#fff; font-size:10px; letter-spacing:.14em; text-transform:uppercase;
  padding:7px 13px; border-radius:2px;
  opacity:0; transform:translateY(5px); transition:all .3s;
}
.gallery-item:hover .gallery-caption { opacity:1; transform:none; }

/* ── REVIEWS ── */
.reviews-section { padding:var(--section-pad); background:var(--sage-lt); }
.reviews-header { text-align:center; margin-bottom:70px; }
.reviews-header h2 { font-size:clamp(42px,4vw,62px); color:var(--ink); }
.reviews-header p { font-size:14px; color:var(--muted); margin-top:14px; font-weight:300; }
.reviews-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.review-card {
  background:#fff; border-radius:3px;
  padding:46px 38px; position:relative;
  box-shadow:0 2px 24px rgba(0,0,0,.04);
  border:1px solid rgba(124,142,118,.11);
}
.review-card::before {
  content:'\201C';
  font-family:var(--font-serif); font-size:108px; line-height:.52;
  color:var(--sage); opacity:.11;
  position:absolute; top:24px; left:26px;
}
.stars { display:flex; gap:2px; margin-bottom:20px; }
.stars span { color:var(--rust-lt); font-size:14px; }
.review-card blockquote {
  font-family:var(--font-serif); font-size:19px; font-weight:400;
  line-height:1.58; color:var(--ink); margin-bottom:26px; font-style:italic;
}
.reviewer { display:flex; align-items:center; gap:13px; }
.reviewer-avatar {
  width:38px; height:38px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-weight:600; font-size:13px; flex-shrink:0;
}
.reviewer-info h4 { font-size:13px; font-weight:500; }
.reviewer-info p { font-size:11px; color:var(--muted); margin-top:2px; }

/* ── INSTAGRAM ── */
.instagram-section { padding:var(--section-pad); background:var(--cream); text-align:center; }
.instagram-header { margin-bottom:48px; }
.instagram-header h2 { font-size:clamp(38px,3.8vw,58px); color:var(--ink); }
.instagram-header p { font-size:14px; color:var(--muted); margin-top:12px; font-weight:300; }
.instagram-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:4px; margin-bottom:44px; }
.instagram-post { position:relative; overflow:hidden; aspect-ratio:1; cursor:pointer; }
.instagram-post img { width:100%; height:100%; object-fit:cover; transition:transform .55s ease; }
.instagram-post:hover img { transform:scale(1.08); }
.instagram-overlay {
  position:absolute; inset:0; background:rgba(20,16,10,0);
  display:flex; align-items:center; justify-content:center;
  flex-direction:column; gap:6px; transition:background .3s;
}
.instagram-post:hover .instagram-overlay { background:rgba(122,69,32,.62); }
.instagram-overlay svg { opacity:0; transform:scale(.8); transition:all .3s; color:#fff; }
.instagram-post:hover .instagram-overlay svg { opacity:1; transform:scale(1); }
.instagram-overlay span { opacity:0; color:#fff; font-size:11px; letter-spacing:.1em; text-transform:uppercase; font-weight:500; transition:all .3s .05s; }
.instagram-post:hover .instagram-overlay span { opacity:1; }

/* ── VISIT ── */
.visit-section { display:grid; grid-template-columns:1fr 1fr; min-height:620px; }
.visit-left { background:var(--sage-dk); color:#fff; padding:96px 76px; display:flex; flex-direction:column; justify-content:center; }
.visit-left h2 { font-size:clamp(38px,3.5vw,56px); color:#fff; margin-bottom:52px; }
.visit-left h2 em { color:rgba(255,255,255,.7); }
.info-rows { display:flex; flex-direction:column; gap:28px; }
.info-row h4 { font-size:10px; letter-spacing:.22em; text-transform:uppercase; color:rgba(255,255,255,.36); margin-bottom:7px; }
.info-row p, .info-row a { font-size:16px; color:#fff; line-height:1.65; font-weight:300; transition:color .2s; }
.info-row a:hover { color:var(--rust-lt); }
.hours-list { margin-top:7px; }
.hours-row { display:flex; justify-content:space-between; font-size:14px; color:rgba(255,255,255,.7); padding:7px 0; border-bottom:1px solid rgba(255,255,255,.07); font-weight:300; }
.hours-row:first-child { border-top:1px solid rgba(255,255,255,.07); }
.hours-row .day { color:rgba(255,255,255,.42); }
.social-row { display:flex; gap:10px; margin-top:40px; }
.social-btn { display:flex; align-items:center; gap:8px; padding:11px 22px; border:1px solid rgba(255,255,255,.16); border-radius:40px; color:rgba(255,255,255,.7); font-size:11px; letter-spacing:.09em; text-transform:uppercase; transition:all .25s; }
.social-btn:hover { border-color:#fff; color:#fff; background:rgba(255,255,255,.07); }
.visit-map iframe { width:100%; height:100%; min-height:500px; border:0; display:block; filter:saturate(.7) contrast(1.08); }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .philosophy, .craft-section, .visit-section { grid-template-columns:1fr; }
  .phil-visual { height:360px; min-height:280px; }
  .craft-section { gap:52px; }
  .craft-badge { right:12px; }
  .craft-img img { height:420px; }
  .menu-header { flex-direction:column; gap:18px; align-items:flex-start; }
  .menu-grid { grid-template-columns:1fr 1fr; }
  .reviews-grid { grid-template-columns:1fr; }
  .instagram-grid { grid-template-columns:repeat(3,1fr); }
  .visit-left { padding:76px 36px; }
  .gallery-grid { grid-template-rows:400px; }
}
@media(max-width:768px) {
  .gallery-grid { grid-template-columns:repeat(2,1fr); grid-template-rows:240px 240px; }
  .gallery-item.tall { grid-column:span 2; }
  .gallery-item { height:240px; }
  .visit-left { padding:52px 24px; }
  .visit-map { min-height:320px; }
  .visit-map iframe { min-height:320px; }
}
@media(max-width:640px) {
  .hero {
    min-height: auto;
    height: auto;
    align-items: flex-start;
    padding-top: 104px;
    padding-bottom: 56px;
  }
  .hero h1 { font-size:48px; }
  .hero-content { padding: 0 20px 0; }
  .hero-eyebrow {
    margin-bottom: 18px;
    font-size: 9px;
    letter-spacing: .2em;
  }
  .hero-actions { flex-wrap:wrap; gap:20px; }
  .hero-scroll { display:none; }
  .phil-visual { height:280px; }
  .phil-text { padding:40px 20px; }
  .phil-numbers { flex-wrap:wrap; gap:24px; margin-top:32px; padding-top:32px; }
  .menu-grid { grid-template-columns:1fr; }
  .menu-item { padding:32px 24px; }
  .craft-img img { height:320px; }
  .craft-badge { width:88px; height:88px; top:20px; right:12px; font-size:0.9em; }
  .gallery-grid { grid-template-columns:1fr; grid-template-rows:auto; }
  .gallery-item.tall { grid-column:span 1; }
  .gallery-item { height:240px; }
  .gallery-item .gallery-caption { opacity:1; transform:none; }
  .gallery-header { margin-bottom:36px; }
  .reviews-section { padding:60px 20px 80px; }
  .reviews-header { margin-bottom:48px; }
  .review-card { padding:32px 24px; }
  .review-card blockquote { font-size:17px; }
  .instagram-section { padding:60px 20px 80px; }
  .instagram-grid { grid-template-columns:repeat(2,1fr); gap:3px; margin-bottom:32px; }
  .photostrip {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 140px 140px;
    height: auto;
    gap: 3px;
  }
  .photostrip .ps-item:first-child {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .ps-item.wide { grid-column: span 1; }
}
