:root {
  --color-cream: #faf6f0;
  --color-cream-deep: #f3ebe1;
  --color-cream-dark: #ebe0d2;
  --color-blush: #e8b4a8;
  --color-blush-deep: #d4958a;
  --color-rose: #c97b84;
  --color-rose-deep: #b56872;
  --color-chocolate: #3d2314;
  --color-chocolate-light: #5c3d2e;
  --color-gold: #c9a962;
  --color-gold-light: #e8d5a3;
  --color-white: #ffffff;
  --color-text: #2c1810;
  --color-text-muted: #7a6358;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  --header-h: 76px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 44px;

  --shadow-soft: 0 4px 28px rgba(61, 35, 20, 0.07);
  --shadow-card: 0 10px 44px rgba(61, 35, 20, 0.11);
  --shadow-hover: 0 20px 60px rgba(61, 35, 20, 0.16);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --section-pad: clamp(4rem, 8vw, 7rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  font-family: var(--font-body);
  background: var(--color-cream);
  color: var(--color-text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  width: min(1160px, 90vw);
  margin-inline: auto;
}

.brand-de,
.logo-de {
  font-weight: 400;
  font-style: italic;
  opacity: 0.82;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(250, 246, 240, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
  border-bottom: 1px solid rgba(61, 35, 20, 0.06);
}

.header .nav.container {
  width: min(1200px, 100%);
  padding-inline: clamp(1.5rem, 5vw, 3rem);
  margin-inline: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--color-chocolate);
  flex-shrink: 0;
  max-width: 55%;
}

.logo-icon {
  color: var(--color-gold);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--color-chocolate-light);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
  padding: 0.35rem 0;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--color-rose);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--color-chocolate);
}

.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--color-chocolate);
  color: var(--color-cream) !important;
  padding: 0.6rem 1.3rem !important;
  border-radius: 100px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover,
.nav-cta.is-active {
  background: var(--color-rose) !important;
  color: var(--color-white) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 210;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-chocolate);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-overlay {
  display: none;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.85rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-chocolate);
  color: var(--color-cream);
}

.btn-primary:hover {
  background: var(--color-rose-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.5);
  color: var(--color-chocolate);
  border: 1.5px solid rgba(61, 35, 20, 0.25);
}

.btn-ghost:hover {
  background: var(--color-chocolate);
  color: var(--color-cream);
  border-color: var(--color-chocolate);
}

.btn-large {
  padding: 1.05rem 2.1rem;
  font-size: 1rem;
}

/* ── Sections ── */
.section-block {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-block--soft {
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-cream-deep) 100%);
}

.section-block--white {
  background: var(--color-white);
  border-block: 1px solid rgba(61, 35, 20, 0.06);
}

.section-block--dark {
  background: linear-gradient(145deg, #3d2314 0%, #2c1810 100%);
  color: var(--color-cream);
}

.section-block--cream {
  background: var(--color-cream);
}

.section-header {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-desc {
  margin-inline: auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.9rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3rem);
  font-weight: 600;
  color: var(--color-chocolate);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-desc {
  margin-top: 1rem;
  color: var(--color-text-muted);
  max-width: 520px;
  font-weight: 300;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.75;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 2rem) 0 8rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  animation: float 9s ease-in-out infinite;
}

.hero-orb--1 {
  width: min(520px, 80vw);
  height: min(520px, 80vw);
  background: var(--color-blush);
  top: -12%;
  right: -8%;
}

.hero-orb--2 {
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  background: var(--color-gold-light);
  bottom: 8%;
  left: -12%;
  animation-delay: -3s;
}

.hero-orb--3 {
  width: min(320px, 55vw);
  height: min(320px, 55vw);
  background: var(--color-cream-dark);
  top: 38%;
  left: 28%;
  animation-delay: -5s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(18px, -18px) scale(1.04); }
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-content {
  max-width: 640px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-rose-deep);
  margin-bottom: 1.75rem;
  animation: fadeUp 0.8s ease both;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero-title-line {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--color-chocolate);
  letter-spacing: -0.02em;
}

.hero-title-line--accent {
  font-style: italic;
  font-weight: 500;
  color: var(--color-rose-deep);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--color-text-muted);
  max-width: 540px;
  margin-bottom: 2.75rem;
  font-weight: 300;
  line-height: 1.8;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-aside {
  display: flex;
  justify-content: center;
  animation: fadeUp 0.8s 0.35s ease both;
}

.hero-card {
  width: min(300px, 100%);
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  background: linear-gradient(155deg, rgba(255,255,255,0.75), rgba(255,255,255,0.35));
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 2rem;
  text-align: center;
}

.hero-card-label {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 600;
  color: var(--color-chocolate);
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.hero-card-emoji {
  font-size: clamp(3rem, 8vw, 4.5rem);
  line-height: 1;
}

.hero-card-note {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--color-text-muted);
  animation: fadeUp 0.8s 0.55s ease both;
  padding: 0.5rem;
}

.hero-scroll-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-blush-deep), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.9); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Featured & Catalog ── */
.featured-grid,
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

.loading-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 1rem;
  color: var(--color-text-muted);
}

.loading-spinner {
  width: 42px;
  height: 42px;
  border: 3px solid var(--color-cream-dark);
  border-top-color: var(--color-rose);
  border-radius: 50%;
  margin: 0 auto 1rem;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Kake Card ── */
.kake-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: var(--transition);
  animation: fadeUp 0.6s ease both;
  border: 1px solid rgba(61, 35, 20, 0.05);
  display: flex;
  flex-direction: column;
}

.kake-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.kake-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-cream-dark), var(--color-blush));
}

.kake-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.kake-card:hover .kake-card-image img {
  transform: scale(1.07);
}

.kake-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 24, 16, 0.55) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.kake-card:hover .kake-card-overlay {
  opacity: 1;
}

.kake-card-overlay-text {
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kake-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: var(--color-gold-light);
  color: var(--color-chocolate);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  box-shadow: var(--shadow-soft);
}

.kake-card-body {
  padding: 1.5rem 1.5rem 1.65rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.65rem;
}

.kake-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.45rem);
  font-weight: 600;
  color: var(--color-chocolate);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.kake-card-desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 300;
  line-height: 1.65;
  flex: 1;
}

.kake-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(61, 35, 20, 0.07);
  margin-top: auto;
}

.kake-card-price {
  font-weight: 600;
  color: var(--color-rose-deep);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.kake-card-link {
  font-size: 0.85rem;
  color: var(--color-chocolate);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap var(--transition), color var(--transition);
}

.kake-card:hover .kake-card-link {
  gap: 0.55rem;
  color: var(--color-rose-deep);
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-frame {
  position: relative;
  width: min(300px, 80vw);
  height: min(380px, 95vw);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, var(--color-blush-deep), var(--color-rose));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
}

.about-pattern {
  position: absolute;
  inset: 14px;
  border-radius: calc(var(--radius-xl) - 14px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.16) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.about-badge {
  position: relative;
  z-index: 1;
  text-align: center;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 50%;
  width: 168px;
  height: 168px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-badge-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.88;
  margin-top: 0.25rem;
}

.about-content .section-tag {
  color: var(--color-gold-light);
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.about-content p {
  opacity: 0.88;
  margin-bottom: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.about-features {
  list-style: none;
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.feature-icon {
  font-size: 1.45rem;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
}

.about-features strong {
  display: block;
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.about-features span {
  font-size: 0.88rem;
  opacity: 0.72;
}

/* ── Contact ── */
.contact-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3.75rem);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(61, 35, 20, 0.06);
  overflow: hidden;
}

.contact-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--color-chocolate);
  margin-bottom: 1.1rem;
  line-height: 1.15;
}

.contact-content p {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  font-weight: 300;
  max-width: 460px;
  line-height: 1.8;
}

.contact-email {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.contact-decoration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.contact-ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 2px solid var(--color-blush);
  border-radius: 50%;
  opacity: 0.45;
  animation: ringPulse 4s ease-in-out infinite;
}

.contact-ring--2 {
  width: 240px;
  height: 240px;
  animation-delay: -2s;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.06); opacity: 0.55; }
}

.contact-emoji {
  font-size: clamp(3rem, 8vw, 4.25rem);
  position: relative;
  z-index: 1;
  animation: float 4s ease-in-out infinite;
}

/* ── Footer ── */
.footer {
  padding: 2.75rem 0;
  border-top: 1px solid var(--color-cream-dark);
  background: var(--color-white);
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.45rem);
  font-weight: 600;
  color: var(--color-chocolate);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.footer-copy {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

/* ── Modal ── */
.modal {
  /* El reset global quita margin:auto del <dialog>; sin esto queda arriba a la izquierda */
  position: fixed;
  inset: 0;
  margin: auto;
  border: none;
  padding: 0;
  background: transparent;
  max-width: 920px;
  width: min(92vw, 920px);
  max-height: min(92vh, 760px);
  border-radius: var(--radius-lg);
  overflow: visible;
}

.modal::backdrop {
  background: rgba(44, 24, 16, 0.65);
  backdrop-filter: blur(8px);
  animation: backdropIn 0.35s ease both;
}

@keyframes backdropIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-inner {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: min(90vh, 720px);
  box-shadow: var(--shadow-hover);
  animation: modalIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.88) translateY(24px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

body.modal-open {
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 42px;
  height: 42px;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-chocolate);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1;
  box-shadow: var(--shadow-soft);
}

.modal-close:hover {
  background: var(--color-rose);
  color: white;
}

.modal-image-wrap {
  background: var(--color-cream-dark);
  min-height: 280px;
}

.modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.modal-body {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  overflow-y: auto;
}

.modal-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  color: var(--color-chocolate);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.modal-price {
  color: var(--color-rose-deep);
  font-weight: 600;
  margin-bottom: 1.1rem;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.modal-desc {
  color: var(--color-text-muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.modal-ingredients h3 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.55rem;
  font-weight: 600;
}

.modal-ingredients p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 1.5rem;
  color: var(--color-text-muted);
}

.empty-state span {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    margin-inline: auto;
  }

  .hero-subtitle {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-aside {
    order: -1;
  }

  .hero-card {
    aspect-ratio: auto;
    min-height: 180px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1.5rem 2rem;
    gap: 0.75rem 1.5rem;
  }

  .hero-card-emoji {
    font-size: 2.5rem;
  }
}

@media (max-width: 900px) {
  .about-grid,
  .contact-card,
  .modal-inner {
    grid-template-columns: 1fr;
  }

  .contact-decoration {
    display: none;
  }

  .modal-image-wrap {
    max-height: 260px;
  }

  .modal-image {
    min-height: 260px;
    max-height: 260px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 68px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 86vw);
    height: 100dvh;
    background: rgba(250, 246, 240, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 0.25rem;
    padding: calc(var(--header-h) + 1rem) 2rem 2rem;
    box-shadow: var(--shadow-card);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 205;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 0.85rem 0;
    font-size: 1.05rem;
    white-space: normal;
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.75rem;
  }

  .hero {
    padding-bottom: 7rem;
  }

  .hero-scroll {
    bottom: 1.75rem;
    gap: 0.85rem;
  }

  .hero-scroll-line {
    height: 36px;
  }

  .contact-card {
    padding: 1.75rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions .btn {
    width: auto;
    flex: 1 1 auto;
    min-width: 140px;
  }
}

@media (max-width: 480px) {
  .container {
    width: 92vw;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-card {
    flex-direction: column;
    min-height: auto;
    padding: 1.25rem;
  }

  .kake-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
