/* ===========================
   KA CHIYA — styles.css
   Palette: deep green + warm cream + coral accent
   =========================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:     #2D6A4F;
  --green-mid: #40916C;
  --green-lt:  #D8F3DC;
  --cream:     #FFF8F0;
  --white:     #FFFFFF;
  --coral:     #FF6B6B;
  --brown:     #5C3D2E;
  --text-dark: #1A1A1A;
  --text-mid:  #444444;
  --radius: 6px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.6;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,248,240,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(45,106,79,0.12);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-link { display: flex; align-items: center; gap: 0.6rem; }
.logo-img {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green-lt);
}
.logo-text { display: flex; align-items: baseline; gap: 0; }
.logo-np {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  color: var(--green);
  font-weight: 700;
}
.logo-en {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  color: var(--brown);
  font-weight: 600;
}
.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav a {
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav a:hover { color: var(--green); }
.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 0.45rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
}

/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.70);
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(45,106,79,0.5) 0%,
    rgba(26,26,26,0.45) 60%,
    rgba(26,26,26,0.65) 100%
  );
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  margin-top: 56px;
}
.hero__kicker {
  font-size: clamp(0.72rem, 2.5vw, 0.85rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-lt);
  font-weight: 500;
}
.hero__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(3.2rem, 13vw, 7rem);
  line-height: 1;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero__tagline {
  font-size: clamp(0.85rem, 3vw, 1rem);
  color: rgba(255,248,240,0.88);
  font-weight: 400;
}
.hero__open-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--coral);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 99px;
}
.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
  max-width: 22rem;
  margin-top: 0.3rem;
}
.hero__cta .btn { width: 100%; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  min-height: 44px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.15s;
  cursor: pointer;
}
.btn:active { transform: scale(0.97); }
.btn--primary { background: var(--green); color: var(--white); }
.btn--primary:hover { opacity: 0.88; }
.btn--ghost { background: transparent; border: 1.5px solid rgba(255,255,255,0.7); color: var(--white); }
.btn--ghost:hover { background: rgba(255,255,255,0.1); }
.btn--accent { background: var(--coral); color: var(--white); }
.btn--accent:hover { opacity: 0.9; }
.btn--social {
  background: var(--green-lt);
  color: var(--green);
  font-size: 0.83rem;
  padding: 0.5rem 1rem;
  min-height: 38px;
}
.btn--social:hover { background: var(--green); color: var(--white); }

/* ===== STRIP ===== */
.strip {
  background: var(--green);
  padding: 1rem 0;
}
.strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
}
.strip-icon { font-size: 1.1rem; }

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--green { background: var(--green); color: var(--white); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
.container--split { display: flex; flex-direction: column; gap: 2.5rem; }

.section__label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.section--green .section__label { color: var(--green-lt); }

.section__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 7vw, 3rem);
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.section--green .section__title { color: var(--white); }

/* ===== MENU ===== */
.menu-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 2rem; }
.menu-cat__title {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  color: var(--green);
  border-bottom: 2px solid var(--green-lt);
  padding-bottom: 0.4rem;
  margin-bottom: 1rem;
}
.menu-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.menu-list li { display: flex; flex-direction: column; gap: 0.1rem; }
.item-name { font-weight: 600; color: var(--text-dark); }
.item-note { font-size: 0.8rem; color: var(--text-mid); font-style: italic; }
.menu-note {
  margin-top: 2.5rem;
  font-size: 0.82rem;
  color: var(--text-mid);
  text-align: center;
}
.menu-note a { color: var(--green); text-decoration: underline; }

/* ===== ABOUT ===== */
.about-text p { margin-bottom: 1rem; font-size: 0.97rem; line-height: 1.75; color: var(--text-mid); }
.about-highlights {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  background: var(--green-lt);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  flex: 1;
  min-width: 80px;
  text-align: center;
}
.highlight-item strong {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: var(--green);
}
.highlight-item span { font-size: 0.75rem; color: var(--text-mid); }

.about-visual { display: flex; justify-content: center; }
.about-card {
  background: var(--cream);
  border: 1px solid var(--green-lt);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  max-width: 260px;
  width: 100%;
}
.about-logo {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--green-lt);
}
.about-card__name {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 0.25rem;
}
.about-card__desc { font-size: 0.88rem; color: var(--text-dark); margin-bottom: 0.15rem; }
.about-card__sub { font-size: 0.82rem; color: var(--coral); margin-bottom: 1rem; }
.about-social { display: flex; flex-direction: column; gap: 0.3rem; }
.about-social a { font-size: 0.8rem; color: var(--green); }
.about-social a:hover { text-decoration: underline; }

/* ===== CONTACT ===== */
.section--green .contact-block h3 {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-lt);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.contact-block { margin-bottom: 1.5rem; }
.contact-block p { font-size: 0.95rem; line-height: 1.6; }
.contact-block a { color: var(--green-lt); }
.contact-block a:hover { text-decoration: underline; }
.open-24 { color: var(--coral) !important; font-size: 1rem !important; }
.social-links { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 0.5rem; }

.map-wrap {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--brown);
  padding: 1.5rem 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,248,240,0.5);
}
.footer-credit strong { color: var(--coral); }

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .menu-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 820px) {
  .hero__inner { max-width: 60ch; padding: 3rem; }
  .hero__cta { flex-direction: row; flex-wrap: wrap; max-width: none; }
  .hero__cta .btn { width: auto; padding: 0.9rem 1.4rem; }

  .container--split { flex-direction: row; align-items: flex-start; gap: 4rem; }
  .about-text { flex: 1.2; }
  .about-visual { flex: 0.8; }
  .contact-info { flex: 1; }
  .map-wrap { flex: 1.2; }

  .footer-inner { flex-direction: row; justify-content: space-between; }

  .strip-inner { gap: 1rem 4rem; }
}
