/* ============================================================
   Himalayan Cuisine SF — Stylesheet
   styles.css
   ============================================================ */

/* ===== RESET & CSS VARIABLES ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold:         #C9A84C;
  --gold-light:   #E8CC82;
  --gold-pale:    #F5EDD6;
  --crimson:      #8B1A1A;
  --crimson-deep: #5C1010;
  --ivory:        #FAF6EE;
  --charcoal:     #1A1410;
  --warm-gray:    #6B5D52;
  --border:       rgba(201, 168, 76, 0.3);
  --shadow:       0 4px 32px rgba(26, 20, 16, 0.18);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;
  --radius:       2px;
  --nav-h:        80px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background:   var(--ivory);
  color:        var(--charcoal);
  font-family:  var(--font-body);
  font-weight:  300;
  line-height:  1.7;
  overflow-x:   hidden;
}

/* ===== SKIP LINK (ADA) ===== */
.skip-link {
  position:    absolute;
  top:         -100px;
  left:        1rem;
  background:  var(--crimson);
  color:       #fff;
  padding:     .6rem 1.2rem;
  font-family: var(--font-body);
  font-size:   .875rem;
  font-weight: 500;
  border-radius: 0 0 4px 4px;
  z-index:     9999;
  text-decoration: none;
  transition:  top .2s;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ===== GLOBAL FOCUS STYLES (ADA) ===== */
:focus-visible {
  outline:        3px solid var(--gold);
  outline-offset: 3px;
  border-radius:  2px;
}

/* ===== NAVIGATION ===== */
.site-nav {
  position:       fixed;
  top: 0; left: 0; right: 0;
  height:         var(--nav-h);
  background:     rgba(26, 20, 16, 0.96);
  backdrop-filter: blur(12px);
  display:        flex;
  align-items:    center;
  justify-content: space-between;
  padding:        0 3rem;
  z-index:        1000;
  border-bottom:  1px solid var(--border);
}

.nav-logo {
  display:         flex;
  align-items:     center;
  gap:             .8rem;
  text-decoration: none;
  color:           #f0d88e;
}
.nav-logo img {
  height:       54px;
  width:        54px;
  object-fit:   contain;
  border-radius: 50%;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size:   1.35rem;
  font-weight: 600;
  line-height: 1.2;
}
.nav-logo-text em {
  font-style:  italic;
  font-size:   .9em;
  display:     block;
  font-weight: 300;
}

.nav-links {
  display:     flex;
  list-style:  none;
  gap:         2.2rem;
  align-items: center;
}
.nav-links a {
  color:           #f5edd6;
  text-decoration: none;
  font-size:       .8rem;
  font-weight:     500;
  letter-spacing:  .12em;
  text-transform:  uppercase;
  transition:      color .2s;
}
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold-light);
}

.nav-order-btn {
  background:  var(--gold) !important;
  color:       var(--charcoal) !important;
  padding:     .6rem 1.4rem;
  font-weight: 500 !important;
  border-radius: 1px;
  transition:  background .2s, transform .15s !important;
}
.nav-order-btn:hover,
.nav-order-btn:focus-visible {
  background:  var(--gold-light) !important;
  transform:   translateY(-1px);
}

.nav-toggle {
  display:    none;
  background: none;
  border:     2px solid var(--gold);
  color:      var(--gold);
  padding:    .4rem .6rem;
  cursor:     pointer;
  font-size:  1.2rem;
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  position:   relative;
  min-height: 100vh;
  display:    flex;
  align-items: center;
  overflow:   hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position:          absolute;
  inset:             0;
  background-image:  url('images/inside-table.jpg');
  background-size:   cover;
  background-position: center;
  filter:            brightness(.35);
  transform:         scale(1.05);
  animation:         heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(45, 8, 8, 0.68) 0%,
    rgba(20, 16, 12, 0.88) 50%,
    rgba(20, 16, 12, 0.96) 100%
  );
}

.hero-content {
  position:  relative;
  z-index:   2;
  max-width: 820px;
  padding:   0 3rem;
  animation: fadeUp .9s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 14px;
  background: rgba(20, 10, 6, 0.72);
  border-radius: 999px;
}

.hero-eyebrow span {
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff !important;
  font-weight: 700;
  line-height: 1.2;
}

.hero-line {
  height: 2px;
  width: 48px;
  background: #d4a63a !important;
  flex: 0 0 auto;
}

.hero h1 {
  display: inline;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: #f5edd6 !important;
  line-height: 1.08;
  margin-bottom: 1.2rem;
  letter-spacing: -.01em;
  padding: 0.05em 0.14em;
  background: rgba(26, 20, 16, 0.78);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}

.hero h1 em {
  font-style: italic;
  color: #f0d88e !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}

.hero-sub {
  display: inline-block;
  font-size: 1.1rem;
  color: #fffaf0;
  max-width: 600px;
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.7;
  padding: 0.5rem 0.75rem;
  background: rgba(26, 20, 16, 0.72);
  border-radius: 4px;
}

.hero-ctas {
  display:   flex;
  gap:       1rem;
  flex-wrap: wrap;
}

.hero-badge {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  text-align: center;
  color: #fffaf0;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
  background: rgba(26, 20, 16, 0.76);
  padding: .85rem .9rem;
  border-radius: 999px;
}
.hero-badge::before {
  content:    '';
  display:    block;
  width:      1px;
  height:     60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin:     0 auto .8rem;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display:         inline-flex;
  align-items:     center;
  gap:             .5rem;
  background:      var(--gold);
  color:           var(--charcoal);
  padding:         .9rem 2.2rem;
  font-family:     var(--font-body);
  font-size:       .8rem;
  font-weight:     600;
  letter-spacing:  .15em;
  text-transform:  uppercase;
  text-decoration: none;
  border-radius:   1px;
  border:          2px solid var(--gold);
  transition:      background .2s, transform .15s, box-shadow .2s;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background:  var(--gold-light);
  border-color: var(--gold-light);
  transform:   translateY(-2px);
  box-shadow:  0 8px 24px rgba(201, 168, 76, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(26, 20, 16, 0.72);
  color: #fffaf0;
  padding: .9rem 2.2rem;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 1px;
  border: 2px solid #f0d88e;
  transition: border-color .2s, color .2s, transform .15s, background .2s;
}
.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: #fff4c2;
  background: rgba(26, 20, 16, 0.88);
  color: #ffffff;
  transform: translateY(-2px);
}



/* ===== CONTRAST REMEDIATION PATCH ===== */
.hero .btn-primary {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.hero .btn-primary,
.hero .btn-outline {
  position: relative;
  z-index: 2;
}

.hero-ctas a:focus-visible {
  outline-color: #fff4c2;
}

/* ===== INFO BAND ===== */
.band {
  background:    var(--crimson-deep);
  padding:       1.2rem 3rem;
  display:       flex;
  justify-content: center;
  gap:           3rem;
  flex-wrap:     wrap;
  border-top:    1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.band-item {
  display:        flex;
  align-items:    center;
  gap:            .6rem;
  color:          var(--gold-pale);
  font-size:      .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.band-icon { font-size: 1rem; color: var(--gold); }

/* ===== SECTION SHARED ===== */
section { padding: 6rem 3rem; }

.section-label {
  display:       flex;
  align-items:   center;
  gap:           1rem;
  margin-bottom: 1rem;
}
.section-label span {
  font-size:      .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color:          #000000;
  font-weight:    500;
}
.section-label::after {
  content:    '';
  flex:       1;
  max-width:  60px;
  height:     1px;
  background: var(--gold);
}

h2 {
  font-family: var(--font-display);
  font-size:   clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color:       var(--crimson-deep);
}
h2 em {
  font-style: italic;
  color:      #000000;
}

/* ===== STORY ===== */
.story { background: var(--ivory); }

.story-grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   5rem;
  align-items:           center;
  max-width:             1200px;
  margin:                0 auto;
}

.story-images {
  position: relative;
  height:   520px;
}
.story-img-main {
  position:      absolute;
  top: 0; left: 0;
  width:         78%;
  height:        84%;
  object-fit:    cover;
  border-radius: var(--radius);
  box-shadow:    var(--shadow);
}
.story-img-accent {
  position:      absolute;
  bottom: 0; right: 0;
  width:         55%;
  height:        55%;
  object-fit:    cover;
  border-radius: var(--radius);
  box-shadow:    var(--shadow);
  border:        4px solid var(--ivory);
}
.story-frame {
  position:      absolute;
  top:  1.5rem;
  left: 1.5rem;
  width:         78%;
  height:        84%;
  border:        1px solid var(--gold);
  border-radius: var(--radius);
  pointer-events: none;
}

.story-text .section-label { margin-bottom: 1.2rem; }
.story-text h2              { margin-bottom: 1.5rem; }
.story-text p {
  color:         var(--warm-gray);
  font-size:     1rem;
  margin-bottom: 1.2rem;
}

.story-stats {
  display:       flex;
  gap:           2.5rem;
  margin-top:    2rem;
  padding-top:   2rem;
  border-top:    1px solid var(--border);
}
.stat-num {
  font-family: var(--font-display);
  font-size:   2.5rem;
  font-weight: 600;
  color:       var(--crimson);
  line-height: 1;
}
.stat-label {
  font-size:      .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color:          var(--warm-gray);
  margin-top:     .3rem;
}

/* ===== MENU SECTION ===== */
.menu-section { background: var(--charcoal); }
.menu-section .section-label span { color: var(--gold-light); }
.menu-section h2      { color: var(--gold-pale); }
.menu-section h2 em   { color: var(--gold-light); }

.menu-header {
  display:         flex;
  justify-content: space-between;
  align-items:     flex-end;
  max-width:       1200px;
  margin:          0 auto 3rem;
}

.menu-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   1.5rem;
  max-width:             1200px;
  margin:                0 auto;
}

.menu-card {
  background:    rgba(255, 255, 255, 0.04);
  border:        1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius);
  overflow:      hidden;
  transition:    transform .3s, box-shadow .3s, border-color .3s;
}
.menu-card:hover {
  transform:    translateY(-6px);
  box-shadow:   0 16px 48px rgba(0, 0, 0, 0.4);
  border-color: rgba(201, 168, 76, 0.4);
}

.menu-card-img {
  width:      100%;
  height:     220px;
  object-fit: cover;
  display:    block;
}

.menu-card-body { padding: 1.4rem; }

.menu-card-tag {
  font-size:      .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color:          var(--gold);
  margin-bottom:  .4rem;
}

.menu-card h3 {
  font-family:   var(--font-display);
  font-size:     1.3rem;
  font-weight:   400;
  color:         var(--gold-pale);
  margin-bottom: .5rem;
}

.menu-card p {
  font-size: .85rem;
  color: rgba(245, 237, 214, 0.82);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.menu-card-order {
  display:         inline-flex;
  align-items:     center;
  gap:             .4rem;
  font-size:       .72rem;
  font-weight:     600;
  letter-spacing:  .14em;
  text-transform:  uppercase;
  color:           var(--gold);
  text-decoration: none;
  border-bottom:   1px solid rgba(201, 168, 76, 0.35);
  padding-bottom:  2px;
  transition:      color .2s, border-color .2s;
}
.menu-card-order::after {
  content:    '→';
  transition: transform .2s;
}
.menu-card-order:hover,
.menu-card-order:focus-visible {
  color:        var(--gold-light);
  border-color: var(--gold-light);
}
.menu-card-order:hover::after {
  transform: translateX(4px);
}

.menu-card-large              { grid-column: span 2; }
.menu-card-large .menu-card-img { height: 340px; }

/* ===== AMBIENCE ===== */
.ambience        { background: var(--ivory); }
.ambience-inner  { max-width: 1200px; margin: 0 auto; }
.ambience-header { margin-bottom: 3rem; }

.ambience-mosaic {
  display:               grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows:    280px 280px;
  gap:                   1.2rem;
}

.amb-img {
  width:         100%;
  height:        100%;
  object-fit:    cover;
  border-radius: var(--radius);
  display:       block;
}
.amb-main { grid-row: span 2; }

.amb-quote {
  display:         flex;
  align-items:     center;
  justify-content: center;
  background:      var(--crimson-deep);
  padding:         2rem;
  border-radius:   var(--radius);
}
.amb-quote blockquote {
  font-family: var(--font-display);
  font-style:  italic;
  font-size:   1.4rem;
  font-weight: 300;
  color:       var(--gold-pale);
  line-height: 1.5;
  text-align:  center;
}
.amb-quote cite {
  display:        block;
  font-style:     normal;
  font-family:    var(--font-body);
  font-size:      .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color:          var(--gold);
  margin-top:     .8rem;
}

/* ===== VISIT ===== */
.visit      { background: var(--crimson-deep); }
.visit h2   { color: var(--gold-pale); }
.visit h2 em { color: var(--gold-light); }
.visit .section-label span { color: var(--gold-light); }

.visit-intro {
  max-width:   1000px;
  margin:      0 auto;
  text-align:  center;
}

.visit-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   3rem;
  max-width:             1000px;
  margin:                0 auto;
  padding-top:           3rem;
}

.visit-card  { text-align: center; }
.visit-icon  { font-size: 2rem; margin-bottom: 1rem; color: var(--gold); display: block; }

.visit-card h3 {
  font-family:   var(--font-display);
  font-size:     1.1rem;
  font-weight:   600;
  color:         var(--gold-light);
  margin-bottom: .8rem;
  letter-spacing: .05em;
}
.visit-card p,
.visit-card address {
  font-size: .9rem;
  color: #f5edd6;
  font-style: normal;
  line-height: 1.8;
}
.visit-card strong { color: #fff4c2; }
.visit-card em     { font-size: .8rem; color: #f5edd6; opacity: 1; }
.visit-card a {
  color: #fffaf0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.visit-card a:hover,
.visit-card a:focus-visible { color: var(--gold-light); }

.visit-divider {
  width:      40px;
  height:     1px;
  background: var(--gold);
  margin:     1rem auto;
}

/* ===== ORDER CTA ===== */
.order-cta {
  background: var(--charcoal);
  text-align: center;
  padding:    7rem 3rem;
  position:   relative;
  overflow:   hidden;
}
.order-cta::before {
  content:    '';
  position:   absolute;
  top: 50%; left: 50%;
  width:      600px;
  height:     600px;
  background: radial-gradient(circle, rgba(139, 26, 26, 0.2) 0%, transparent 70%);
  transform:  translate(-50%, -50%);
  pointer-events: none;
}
.order-cta h2 {
  font-family:   var(--font-display);
  font-size:     clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight:   300;
  color:         var(--gold-pale);
  margin-bottom: 1rem;
}
.order-cta h2 em { color: var(--gold-light); font-style: italic; }
.order-cta p {
  color: #f5edd6;
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}
.order-cta .btn-primary { font-size: .85rem; padding: 1.1rem 2.8rem; }

/* ===== SOCIAL BAR ===== */
.social-bar {
  background:      rgba(26, 20, 16, 0.97);
  padding:         1.5rem 3rem;
  display:         flex;
  justify-content: center;
  align-items:     center;
  gap:             2.5rem;
  border-top:      1px solid var(--border);
  flex-wrap:       wrap;
}
.social-label {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245, 237, 214, 0.78);
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: #fffaf0;
  text-decoration: none;
  font-size: .82rem;
  transition: color .2s;
  padding: .3rem;
}
.social-link:hover,
.social-link:focus-visible { color: var(--gold-light); }

/* ===== FOOTER ===== */
footer {
  background:      var(--charcoal);
  padding:         3rem;
  display:         flex;
  justify-content: space-between;
  align-items:     center;
  flex-wrap:       wrap;
  gap:             1.5rem;
  border-top:      1px solid var(--border);
}
.footer-logo {
  display:     flex;
  align-items: center;
  gap:         .8rem;
}
.footer-logo img {
  height:        44px;
  width:         44px;
  object-fit:    contain;
  border-radius: 50%;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #f0d88e;
  font-weight: 500;
}
.footer-copy {
  font-size: .75rem;
  color: rgba(245, 237, 214, 0.82);
  text-align: center;
  line-height: 1.8;
}
.footer-copy a { color: #fffaf0; text-decoration: underline; }

.footer-nav {
  display:    flex;
  gap:        1.5rem;
  list-style: none;
}
.footer-nav a {
  font-size: .75rem;
  color: rgba(245, 237, 214, 0.82);
  text-decoration: none;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .2s;
}
.footer-nav a:hover,
.footer-nav a:focus-visible { color: var(--gold-light); }

/* ===== ACCESSIBILITY HELPER ===== */
.sr-only {
  position:  absolute;
  width:     1px;
  height:    1px;
  padding:   0;
  margin:    -1px;
  overflow:  hidden;
  clip:      rect(0, 0, 0, 0);
  white-space: nowrap;
  border:    0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .site-nav { padding: 0 1.5rem; }

  .nav-links { display: none; }
  .nav-links.open {
    display:        flex;
    flex-direction: column;
    position:       fixed;
    top:            var(--nav-h);
    left: 0; right: 0;
    background:     rgba(26, 20, 16, 0.98);
    padding:        2rem;
    gap:            1.5rem;
    border-bottom:  1px solid var(--border);
    z-index:        999;
  }
  .nav-toggle { display: block; }

  .hero-content { padding: 0 1.5rem; }
  .hero-badge   { display: none; }

  
section { padding: 4rem 1.5rem; }

  .story-grid    { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-images  { height: 300px; }

  .menu-grid               { grid-template-columns: 1fr; }
  .menu-card-large         { grid-column: span 1; }
  .menu-card-large .menu-card-img { height: 220px; }
  .menu-header             { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .visit-grid { grid-template-columns: 1fr; gap: 2rem; }

  .band   { padding: 1.2rem; gap: 1.5rem; }
  footer  { flex-direction: column; text-align: center; }

  .ambience-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows:    auto;
  }
  .amb-main    { grid-row: span 1; height: 260px; }
  .amb-img     { height: 200px; }

  .social-bar  { gap: 1rem; }
}

footer a,
.footer-nav a {
  color: #f3e7c8 !important;
}

footer a:hover,
footer a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #ffffff !important;
}

/* Accessibility font size fix */
.menu-card-tag,
.menu-card-order,
.section-label span,
.social-label,
.footer-nav a {
  font-size: 0.8rem !important;
}