

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: hsl(36, 33%, 95%);
  --fg: hsl(20, 25%, 14%);
  --card: hsl(36, 30%, 92%);
  --card-fg: hsl(20, 25%, 14%);
  --primary: hsl(12, 55%, 38%);
  --primary-fg: hsl(36, 33%, 95%);
  --secondary: hsl(32, 25%, 86%);
  --muted: hsl(32, 20%, 90%);
  --muted-fg: hsl(20, 12%, 45%);
  --accent: hsl(35, 70%, 50%);
  --border: hsl(30, 18%, 82%);
  --warm-cream: hsl(38, 40%, 97%);
  --warm-wood: hsl(20, 30%, 25%);
  --warm-gold: hsl(35, 75%, 52%);
  --warm-sage: hsl(145, 12%, 85%);
  --warm-charcoal: hsl(20, 15%, 18%);
  --radius: 0.5rem;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Outfit", sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  cursor: pointer;
  font: inherit;
  border: none;
  background: none;
}
ul {
  list-style: none;
}

/* ── Font helpers ── */
.font-display {
  font-family: "DM Serif Display", serif;
}
.font-handwritten {
  font-family: "Reenie Beanie", cursive;
}
.font-korean {
  font-family: "Nanum Pen Script",  cursive;
}
.text-warm-gold {
  color: var(--warm-gold);
}
.text-muted {
  color: var(--muted-fg);
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsla(36, 33%, 95%, 0.8);
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}
.navbar.scrolled {
  background: hsla(36, 33%, 95%, 0.95);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}
.navbar-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  position: relative;
}
.navbar-brand .brand-k {
  font-family: "Reenie Beanie", cursive;
  font-size: 2.25rem;
  color: var(--primary);
  line-height: 1;
}
.navbar-brand .brand-s {
  font-family: "Caveat", cursive;
  font-size: 1.5rem;
  color: var(--warm-gold);
  line-height: 1;
  margin-left: -2px;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  color: var(--muted-fg);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--warm-gold);
}

.mobile-toggle {
  display: none;
  padding: 0.5rem;
}
.mobile-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--fg);
  transition: all 0.3s;
  transform-origin: center;
}
.mobile-toggle span:nth-child(2) {
  width: 1rem;
  background: var(--warm-gold);
  margin: 5px 0;
}
.mobile-menu {
  display: none;
  border-top: 1px dashed var(--border);
  background: var(--bg);
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: var(--muted-fg);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--primary);
  background: hsla(12, 55%, 38%, 0.05);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
}

/* ── Hero ── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 4rem;
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
.hero-greeting {
  /* font-family: "Caveat", cursive; */
   font-family: "Nanum Pen Script",  cursive;
  color: var(--warm-gold);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-title .gold {
  font-family: "Caveat", cursive;
  color: var(--warm-gold);
}
.hero-subtitle {
  color: var(--muted-fg);
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 28rem;
  margin: 0 auto 0.75rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.btn-primary {
  background: var(--primary);
  color: var(--primary-fg);
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 2px;
  transition: opacity 0.2s;
}
.btn-primary:hover {
  opacity: 0.9;
}
.btn-outline {
  border: 2px dashed hsla(12, 55%, 38%, 0.4);
  color: var(--fg);
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  border-radius: 2px;
  transition: all 0.3s;
}
.btn-outline:hover {
  border-color: var(--primary);
  background: hsla(12, 55%, 38%, 0.05);
}
.hero-scroll {
  font-family: "Reenie Beanie", cursive;
  color: var(--muted-fg);
  opacity: 0.5;
  font-size: 1.5rem;
  margin-top: 3rem;
  transform: rotate(-2deg);
}

/* ── Doodles (CSS-only placeholders) ── */
.doodle {
  position: absolute;
  pointer-events: none;
  opacity: 0.3;
  color: var(--warm-gold);
  font-size: 1.25rem;
}

/* ── Marquee ── */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 0.75rem 0;
}
.marquee.primary-strip {
  background: var(--primary);
  color: var(--primary-fg);
}
.marquee.dark-strip {
  background: var(--warm-charcoal);
  color: var(--warm-cream);
}
.marquee-track {
  display: inline-block;
  animation: marquee-scroll 50s linear infinite;
}
.marquee-track span {
  font-family: "Reenie Beanie", cursive;
  font-size: 1.5rem;
}
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── Section common ── */
.section {
  padding: 5rem 0;
  position: relative;
}
.section-inner {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-wide {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-heading {
  /* font-family: "Reenie Beanie", cursive; */
   font-family: "Nanum Pen Script",  cursive;
  color: var(--warm-gold);
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
  transform: rotate(-2deg);
  display: inline-block;
}
.section-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: 2rem;
  line-height: 1.2;
}
.section-bg {
  background: var(--card);
}

/* ── Tape decoration ── */
.tape {
  position: absolute;
  width: 80px;
  height: 24px;
  background: hsla(35, 75%, 52%, 0.15);
  backdrop-filter: blur(1px);
  border-left: 1px dashed hsla(35, 75%, 52%, 0.3);
  border-right: 1px dashed hsla(35, 75%, 52%, 0.3);
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  top: -12px;
}

/* ── About snippet ── */
.about-snippet p {
  border-left: 2px dashed hsla(35, 75%, 52%, 0.3);
  padding-left: 1.5rem;
  color: var(--muted-fg);
  font-size: 1.125rem;
  line-height: 1.7;
}

/* ── Featured / Polaroid cards ── */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 48rem;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }
}
.polaroid {
  background: var(--bg);
  padding: 0.75rem;
  padding-bottom: 1.25rem;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.5s;
  position: relative;
  cursor: default;
}
.polaroid:nth-child(1) {
  transform: rotate(-2deg);
}
.polaroid:nth-child(2) {
  transform: rotate(1.5deg);
  margin-top: 2rem;
}
.polaroid:nth-child(3) {
  transform: rotate(2deg);
  margin-top: 1rem;
}
.polaroid:nth-child(4) {
  transform: rotate(-1.5deg);
  margin-top: 3rem;
}
.polaroid:hover {
  transform: rotate(0) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.polaroid-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}
.polaroid-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.polaroid:hover .polaroid-img img {
  transform: scale(1.1);
}
.polaroid-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.polaroid-price {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: hsla(36, 33%, 95%, 0.9);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-family: "Reenie Beanie", cursive;
  font-size: 1.5rem;
  color: var(--warm-gold);
}
.polaroid-info {
  padding: 1rem 0.25rem 0;
}
.polaroid-info h3 {
  font-family: "DM Serif Display", serif;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}
.polaroid-info p {
  color: var(--muted-fg);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.polaroid-note {
  font-family: "Reenie Beanie", cursive;
  color: hsla(12, 55%, 38%, 0.5);
  font-size: 1.25rem;
  transform: rotate(-1deg);
  display: inline-block;
}

/* ── Hours ── */
.hours-card {
  display: inline-block;
  text-align: left;
  position: relative;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  background: hsla(36, 30%, 92%, 0.5);
}
.hours-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.hours-row .day {
  color: var(--muted-fg);
  font-size: 0.875rem;
  width: 7rem;
}
.hours-row .time {
  font-family: "Reenie Beanie", cursive;
  font-size: 1.5rem;
}
.hours-divider {
  border: none;
  border-top: 1px dashed var(--border);
  margin: 1rem 0;
}

/* ── Find Us ── */
.find-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .find-grid {
    grid-template-columns: 1fr;
  }
}
.find-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.find-info-item .icon {
  font-size: 1.25rem;
  margin-top: 2px;
}
.find-info-item .text {
  color: var(--muted-fg);
  font-size: 0.875rem;
  line-height: 1.6;
}
.find-info-item .text strong {
  color: var(--fg);
  font-weight: 500;
}
.map-placeholder {
  background: var(--card);
  border-radius: var(--radius);
  height: 18rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--border);
  position: relative;
}
.map-placeholder p {
  font-family: "Reenie Beanie", cursive;
  font-size: 1.75rem;
  color: var(--muted-fg);
  opacity: 0.3;
}

/* ── Menu page ── */
.menu-header {
  margin-bottom: 1rem;
}

.menu-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
}
.menu-tabs::-webkit-scrollbar {
  display: none;
}
.menu-tab {
  flex-shrink: 0;
  padding: 0.625rem 1.25rem;
  border-radius: 999px;
  font-size: 0.875rem;
  border: 2px dashed var(--border);
  color: var(--muted-fg);
  transition: all 0.2s;
  white-space: nowrap;
}
.menu-tab:hover {
  border-color: hsla(12, 55%, 38%, 0.3);
  color: var(--fg);
}
.menu-tab.active {
  background: var(--primary);
  color: var(--primary-fg);
  border-color: var(--primary);
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem 1rem;
  border-bottom: 1px dashed hsla(30, 18%, 82%, 0.6);
  margin: 0 -1rem;
  border-radius: 2px;
  transition: background 0.2s;
}
.menu-item:hover {
  background: hsla(36, 30%, 92%, 0.5);
}
.menu-item-name {
  font-family: "DM Serif Display", serif;
  font-size: 1.125rem;
  margin-bottom: 0.375rem;
}
.menu-item-name .fav {
  font-family: "Reenie Beanie", cursive;
  color: var(--warm-gold);
  font-size: 0.875rem;
  margin-left: 0.5rem;
  transform: rotate(-3deg);
  display: inline-block;
}
.menu-item-tags {
  display: flex;
  gap: 0.375rem;
  margin-top: 0.25rem;
  flex-wrap: wrap;
}
.menu-tag {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
}
.menu-tag.v {
  background: var(--warm-sage);
}
.menu-tag.gf {
  background: var(--secondary);
}
.menu-tag.seasonal {
  background: hsla(35, 70%, 50%, 0.2);
}
.menu-item-desc {
  color: var(--muted-fg);
  font-size: 0.875rem;
  line-height: 1.6;
}
.menu-item-price {
  font-family: "Reenie Beanie", cursive;
  font-size: 1.5rem;
  color: var(--warm-gold);
  flex-shrink: 0;
  padding-top: 0.25rem;
}
.menu-note {
  margin-top: 3.5rem;
  padding: 2rem;
  background: var(--card);
  border-radius: var(--radius);
  border: 2px dashed var(--border);
  position: relative;
}

/* ── About page ── */
.story-block {
  border-left: 2px dashed hsla(35, 75%, 52%, 0.3);
  padding-left: 1.5rem;
  color: var(--muted-fg);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.story-block:nth-child(even) {
  border-color: hsla(12, 55%, 38%, 0.2);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}
.value-card {
  position: relative;
  background: var(--bg);
  padding: 1.5rem;
  padding-top: 2rem;
  border-radius: 2px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.5s;
}
.value-card:nth-child(1) {
  transform: rotate(-2deg);
}
.value-card:nth-child(2) {
  transform: rotate(1.5deg);
  margin-top: 1.5rem;
}
.value-card:nth-child(3) {
  transform: rotate(-1deg);
  margin-top: 0.5rem;
}
.value-card:hover {
  transform: rotate(0);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.value-card .emoji {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  display: block;
}
.value-card h3 {
  font-family: "DM Serif Display", serif;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.value-card p {
  color: var(--muted-fg);
  font-size: 0.875rem;
  line-height: 1.6;
}
.value-card-footer {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border);
  font-family: "Reenie Beanie", cursive;
  color: hsla(35, 75%, 52%, 0.4);
  font-size: 1.125rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}
.team-card {
  text-align: center;
}
.team-card:nth-child(2) {
  margin-top: 2rem;
}
.team-avatar {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: var(--card);
  border: 2px dashed var(--border);
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-avatar span {
  font-family: "Reenie Beanie", cursive;
  font-size: 3rem;
  color: var(--warm-gold);
}
.team-card h3 {
  font-family: "DM Serif Display", serif;
  font-size: 1.25rem;
}
.team-card .role {
  font-family: "Reenie Beanie", cursive;
  color: var(--warm-gold);
  font-size: 1.25rem;
  transform: rotate(-1deg);
  display: inline-block;
  margin-bottom: 0.75rem;
}
.team-card .bio {
  color: var(--muted-fg);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ── Contact page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  color: var(--muted-fg);
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px dashed var(--border);
  padding: 0.75rem 0.25rem;
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus {
  border-color: var(--primary);
}
.form-textarea {
  width: 100%;
  background: transparent;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--fg);
  outline: none;
  resize: none;
  transition: border-color 0.2s;
}
.form-textarea:focus {
  border-color: var(--primary);
}
.btn-full {
  width: 100%;
}

/* ── Footer ── */
.footer {
  background: var(--warm-charcoal);
  color: var(--warm-cream);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
#footer-credit a {
  font-family: "Reenie Beanie", cursive;
  font-size: 1.25rem;
  color: #E09429;
  text-decoration: none;
  border-bottom: 1px dashed hsla(35, 75%, 52%, 0.4);
  padding-bottom: 1px;
  opacity: 0.8;
  line-height: 1.8;
}
#footer-credit a:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
  }
}
.footer h3 {
  font-family: "Reenie Beanie", cursive;
  font-size: 3rem;
  margin-bottom: 1rem;
}
.footer h4 {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.4;
  margin-bottom: 1rem;
}
.footer p,
.footer a {
  font-size: 0.875rem;
  opacity: 0.6;
  line-height: 1.8;
}
.footer a:hover {
  opacity: 1;
}
.footer-bottom {
  border-top: 1px solid hsla(38, 40%, 97%, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.footer-bottom p {
  font-size: 0.75rem;
  opacity: 0.3;
}

/* ── Utility ── */
.text-center {
  text-align: center;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.inline-block {
  display: inline-block;
}
.relative {
  position: relative;
}

.gs-hidden {
  opacity: 0;
  transform: translateY(30px);
}
