/* ==========================================================================
   Ishi — Homepage
   Implementation of "Ishi Homepage.dc.html" (Claude Design)
   Editorial black + gold. Cormorant Garamond (display) + Jost (sans).
   Faithful to the design at desktop; responsive down to mobile.
   ========================================================================== */

:root {
  --bg: #060605;
  --ink: #141310;
  --gold: #c9a04e;
  --gold-2: #d9b465;
  --cream: #ece4d4;
  --star: #f5b400;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { background: var(--bg); scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: rgba(201, 160, 78, .35); }

img { max-width: 100%; }
a { color: inherit; }

.home {
  max-width: 1680px;
  margin: 0 auto;
  overflow-x: hidden;
}

/* Shared page rhythm — big horizontal gutter that collapses on small screens */
.pad { padding-left: 110px; padding-right: 110px; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 56px;
  height: 88px;
  border-bottom: 1px solid rgba(201, 160, 78, .16);
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6, 6, 5, .82);
  backdrop-filter: saturate(140%) blur(14px);
}
.brand { display: flex; flex-direction: column; gap: 2px; text-decoration: none; }
.brand__name {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1;
}
.brand__tag {
  font-size: 8.5px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
}

.site-nav { display: flex; align-items: center; gap: 36px; }
.site-nav__link {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(236, 228, 212, .6);
  text-decoration: none;
  transition: color .25s ease;
}
.site-nav__link:hover,
.site-nav__link[aria-current] { color: var(--cream); }

.site-nav__cta {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(201, 160, 78, .5);
  padding: 11px 22px;
  border-radius: 999px;
  transition: background .25s ease, border-color .25s ease;
}
.site-nav__cta:hover { background: rgba(201, 160, 78, .12); }

.lang {
  display: flex;
  gap: 7px;
  align-items: center;
  font-size: 11px;
  letter-spacing: .12em;
}
.lang a, .lang span { text-decoration: none; }
.lang .sep { color: rgba(236, 228, 212, .3); }
.lang .is-active { color: var(--gold); }
.lang .alt { color: rgba(236, 228, 212, .5); transition: color .25s ease; }
.lang .alt:hover { color: var(--cream); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 96px 0 0;
  text-align: center;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  left: 50%;
  top: 36%;
  transform: translate(-50%, -50%);
  width: 900px;
  max-width: 120%;
  height: 520px;
  background: radial-gradient(closest-side, rgba(201, 160, 78, .13), transparent 70%);
  pointer-events: none;
}
.eyebrow {
  position: relative;
  font-size: 11.5px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero__wordmark {
  position: relative;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(96px, 19vw, 250px);
  line-height: .82;
  letter-spacing: .02em;
  margin: 26px 0 0;
}
.hero__img {
  display: block;
  width: 1060px;
  max-width: 92%;
  margin: -6% auto 0;
  mix-blend-mode: lighten;
  position: relative;
}
.hero__tagline {
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 27px);
  font-weight: 400;
  color: rgba(236, 228, 212, .9);
  margin: -6px auto 0;
  max-width: 640px;
  line-height: 1.4;
  padding: 0 24px;
}
.hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 38px;
}

/* Buttons */
.btn {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 34px;
  border-radius: 999px;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn--solid { color: var(--ink); background: var(--gold); }
.btn--solid:hover { background: var(--gold-2); }
.btn--ghost { color: var(--cream); border: 1px solid rgba(236, 228, 212, .3); }
.btn--ghost:hover { border-color: rgba(236, 228, 212, .6); }

.hero__stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 52px;
  margin-top: 64px;
  padding: 22px 24px;
  border-top: 1px solid rgba(201, 160, 78, .14);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(236, 228, 212, .55);
}
.hero__stats b { color: var(--gold); font-weight: 500; }

/* --------------------------------------------------------------------------
   Section primitives
   -------------------------------------------------------------------------- */
.section-kicker {
  font-size: 11px;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 30px;
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  margin: 20px 0 0;
}
.section-title em { font-style: italic; color: var(--gold); }

.link-gold {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 160, 78, .4);
  padding-bottom: 6px;
  transition: border-color .25s ease;
}
.link-gold:hover { border-color: var(--gold); }

/* --------------------------------------------------------------------------
   About / philosophy
   -------------------------------------------------------------------------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  padding: 120px 110px;
  align-items: start;
}
.about__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  margin: 22px 0 0;
}
.about__title em { font-style: italic; color: var(--gold); }
.about__body {
  font-weight: 300;
  font-size: 16.5px;
  line-height: 1.85;
  color: rgba(236, 228, 212, .78);
  padding-top: 8px;
}
.about__body p { margin: 0; }
.about__body p + p { margin-top: 22px; }
.about__sign {
  margin-top: 30px !important;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   Signature dishes
   -------------------------------------------------------------------------- */
.signatures { padding: 0 110px 40px; }

.signature {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
  padding: 36px 0;
}
.signature--reverse { grid-template-columns: .95fr 1.05fr; }
.signature__img { display: block; width: 100%; mix-blend-mode: lighten; }
.signature__img--narrow { width: 78%; margin: 0 auto; }
.signature__img--slim { width: 66%; margin: 0 auto; }

.signature__no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
}
.signature__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 40px);
  margin: 12px 0 0;
}
.signature__desc {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(236, 228, 212, .72);
  margin: 16px 0 0;
  max-width: 420px;
}
.signature__meta {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(236, 228, 212, .45);
  margin-top: 20px;
}
.signature__text--right {
  text-align: right;
  justify-self: end;
  max-width: 420px;
}
.signature__text--right .signature__desc { max-width: none; }

.signatures__more { text-align: center; padding: 20px 0 60px; }

/* --------------------------------------------------------------------------
   Formula (All You Care Eat)
   -------------------------------------------------------------------------- */
.formula {
  border-top: 1px solid rgba(201, 160, 78, .16);
  border-bottom: 1px solid rgba(201, 160, 78, .16);
  padding: 100px 110px;
  text-align: center;
}
.formula__intro {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(236, 228, 212, .7);
  max-width: 620px;
  margin: 18px auto 0;
}
.formula__grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  max-width: 880px;
  margin: 64px auto 0;
  align-items: stretch;
}
.formula__col { padding: 0 56px; }
.formula__div { background: rgba(201, 160, 78, .25); }
.formula__kicker {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(236, 228, 212, .55);
}
.formula__price {
  font-family: var(--serif);
  font-size: clamp(66px, 8vw, 96px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1.1;
  margin-top: 10px;
}
.formula__sub {
  font-size: 13px;
  color: rgba(236, 228, 212, .6);
  margin-top: 6px;
}
.formula__link {
  display: inline-block;
  margin-top: 26px;
  font-size: 11.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 160, 78, .4);
  padding-bottom: 5px;
  transition: border-color .25s ease;
}
.formula__link:hover { border-color: var(--gold); }
.formula__fine {
  font-size: 12px;
  color: rgba(236, 228, 212, .45);
  margin-top: 52px;
}

/* --------------------------------------------------------------------------
   Full-bleed showcase image
   -------------------------------------------------------------------------- */
.showcase {
  position: relative;
  padding: 90px 0 30px;
  text-align: center;
}
.showcase__img {
  display: block;
  width: 1160px;
  max-width: 94%;
  margin: 0 auto;
  mix-blend-mode: lighten;
}
.showcase__caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 2vw, 22px);
  color: rgba(236, 228, 212, .75);
  margin-top: -4px;
  padding: 0 24px;
}

/* --------------------------------------------------------------------------
   Reviews (real Google reviews)
   -------------------------------------------------------------------------- */
.reviews { padding: 110px; }
.reviews__head {
  max-width: 720px;
  margin: 0 auto 54px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.reviews__badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  border: 1px solid rgba(236, 228, 212, .18);
  border-radius: 12px;
  padding: 18px 24px;
  text-decoration: none;
  color: var(--cream);
  transition: border-color .25s ease;
}
.reviews__badge:hover { border-color: rgba(201, 160, 78, .5); }
.reviews__score {
  font-family: var(--serif);
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
}
.reviews__badge-meta { display: flex; flex-direction: column; gap: 3px; }
.stars { color: var(--star); font-size: 15px; letter-spacing: 2px; }
.stars .dim { color: rgba(245, 180, 0, .35); }
.reviews__count { font-size: 12px; color: rgba(236, 228, 212, .6); }
.reviews__note {
  font-weight: 300;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(236, 228, 212, .45);
  margin: 22px auto 0;
  max-width: 460px;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.review {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(236, 228, 212, .14);
  border-radius: 14px;
  padding: 28px 30px;
  text-decoration: none;
  color: var(--cream);
  transition: border-color .25s ease, background .25s ease;
}
.review:hover { border-color: rgba(201, 160, 78, .5); background: rgba(201, 160, 78, .045); }
.review__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.review__top .stars { font-size: 14px; }
.review__see {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.review__text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.62;
  margin: 14px 0 0;
  color: rgba(236, 228, 212, .92);
}
.review__by {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(236, 228, 212, .5);
  margin-top: auto;
  padding-top: 18px;
}
.review__by b { color: var(--cream); font-weight: 500; }

/* --------------------------------------------------------------------------
   Locations + reserve
   -------------------------------------------------------------------------- */
.locations {
  border-top: 1px solid rgba(201, 160, 78, .16);
  padding: 100px 110px 90px;
  text-align: center;
}
.locations__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 900px;
  margin: 56px auto 0;
  text-align: left;
}
.location { border-top: 1px solid rgba(201, 160, 78, .3); padding-top: 24px; }
.location__idx {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
}
.location__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  margin: 10px 0 0;
}
.location__meta {
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(236, 228, 212, .65);
  margin: 12px 0 0;
}
.location__links { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 14px; }
.location__tel {
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(236, 228, 212, .3);
  padding-bottom: 3px;
}
.location__dir {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}

.reserve {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 70px;
}
.reserve .btn { padding: 17px 36px; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid rgba(201, 160, 78, .16);
  padding: 44px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.site-footer .brand__name { font-size: 24px; }
.site-footer .brand__tag { font-size: 8px; letter-spacing: .32em; }
.footer__links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(236, 228, 212, .55);
}
.footer__links a { text-decoration: none; transition: color .25s ease; }
.footer__links a:hover { color: var(--cream); }
.footer__legal { font-size: 11px; color: rgba(236, 228, 212, .4); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .pad, .about, .signatures, .formula, .locations { padding-left: 64px; padding-right: 64px; }
  .reviews { padding: 90px 64px; }
  .about { gap: 56px; }
}

@media (max-width: 1024px) {
  .reviews__grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; gap: 20px; }
  .review { height: auto; }
  .review__by { margin-top: 16px; padding-top: 0; }
}

@media (max-width: 900px) {
  .site-header { flex-direction: column; height: auto; padding: 18px 32px; gap: 14px; }
  .site-nav { flex-wrap: wrap; justify-content: center; gap: 20px 24px; }

  .about { grid-template-columns: 1fr; gap: 28px; padding: 90px 40px; }

  .reviews { padding: 80px 40px; }

  .locations__grid { gap: 44px; }
}

@media (max-width: 760px) {
  .signatures { padding: 0 40px 40px; }
  .signature,
  .signature--reverse { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
  /* Image always above the text on stacked layout */
  .signature__img,
  .signature__img--narrow,
  .signature__img--slim { width: 82%; margin: 0 auto; order: -1; }
  .signature__text--right { text-align: left; justify-self: stretch; max-width: none; }

  .formula { padding: 80px 40px; }
  .formula__grid { grid-template-columns: 1fr; gap: 48px; max-width: 380px; }
  .formula__div { display: none; }
  .formula__col { padding: 0; border-top: 1px solid rgba(201, 160, 78, .18); padding-top: 40px; }
  .formula__col:first-child { border-top: 0; padding-top: 0; }

  .locations { padding: 80px 40px 80px; }
  .locations__grid { grid-template-columns: 1fr; }

  .hero__stats { gap: 26px 40px; }
}

@media (max-width: 560px) {
  .site-header { padding: 16px 22px; }
  .site-nav { gap: 14px 18px; }
  .site-nav__link, .site-nav__cta { font-size: 11px; }
  .about { padding: 70px 24px; }
  .reviews { padding: 64px 24px; }
  .review__text { font-size: 16.5px; }
  .review__top { flex-direction: column; gap: 8px; align-items: flex-start; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
