:root {
  --bg: #fbf4e4;
  --bg-soft: #f8efdc;
  --bg-card: rgba(255, 250, 245, 0.92);
  --brown: #37261a;
  --brown-soft: #6c5847;
  --brown-deep: #24170f;
  --accent: #b56b35;
  --accent-deep: #8b4d22;
  --accent-soft: #f1dec8;
  --line: rgba(55, 38, 26, 0.1);
  --shadow: 0 22px 56px rgba(55, 38, 26, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --wrap: 1180px;
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--brown);
  line-height: 1.6;
  background:
    radial-gradient(
      circle at top left,
      rgba(215, 206, 181, 0.26),
      transparent 24%
    ),
    linear-gradient(180deg, var(--bg) 0%, #f7edd9 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.wrap {
  width: min(100% - 32px, var(--wrap));
  margin: 0 auto;
}

.site-page {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(167, 159, 134, 0.18);
  background: rgba(255, 250, 245, 0.86);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: auto;
  height: 46px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand-text strong {
  font-size: 0.92rem;
  font-weight: 800;
}

.brand-text small {
  font-size: 0.68rem;
  color: var(--brown-soft);
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.top-nav a {
  color: rgba(55, 38, 26, 0.82);
  transition: color 0.2s ease;
}

.top-nav a:hover {
  color: var(--brown);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.header-cta,
.btn-primary {
  color: #fff;
  background: linear-gradient(
    180deg,
    var(--accent) 0%,
    var(--accent-deep) 100%
  );
  box-shadow: 0 16px 32px rgba(181, 107, 53, 0.24);
}

.btn-secondary {
  color: var(--brown);
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(55, 38, 26, 0.14);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-1px);
}

.full {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(55, 38, 26, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--brown);
}

.mobile-nav-shell {
  position: absolute;
  top: calc(100% + 8px);
  left: 16px;
  right: 16px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.mobile-nav-shell.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(55, 38, 26, 0.08);
  border-radius: 20px;
  background: rgba(255, 250, 245, 0.96);
  box-shadow: var(--shadow);
}

.mobile-nav:not(.is-open) {
  display: none;
}

.mobile-nav-label,
.eyebrow,
.card-tag,
.footer-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.light {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

main {
  padding-bottom: 32px;
}

section {
  padding: 28px 0;
}

.hero-clean {
  padding-top: 30px;
}

.hero-clean-card {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 0.6fr);
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "title visual"
    "copy  visual";
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(55, 38, 26, 0.08);
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.hero-clean-title {
  grid-area: title;
  margin: 0;
  padding: 60px 8px 40px 32px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--brown);
}

.hero-clean-copy {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  min-width: 0;
  padding: 0 8px 28px 32px;
}

.hero-clean-copy p {
  margin: 0;
  max-width: 32ch;
  padding-bottom: 30px;
  color: var(--brown-soft);
  font-size: 0.9rem;
  line-height: 1.7;
}

.hero-clean-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-clean-visual {
  grid-area: visual;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 10px 2px 10px 0px;
  border: 1px solid rgba(55, 38, 26, 0.08);
  box-shadow: var(--shadow);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-clean-chef {
  width: auto;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  image-rendering: high-quality;
  filter: contrast(1.08) saturate(1.05);
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-bottom: 12px;
  text-align: center;
}

.section-heading h2,
.editorial-copy h2,
.contact-copy h2,
.course-content h1,
.course-panel h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--brown);
}

.section-heading h2 {
  max-width: 28ch;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
}

.section-heading p,
.editorial-copy p,
.contact-copy p,
.gallery-body p,
.course-intro,
.course-panel p {
  margin: 0;
  color: var(--brown-soft);
}

.production-slider,
.catalog-slider,
.course-media-gallery {
  position: relative;
}

.production-viewport,
.catalog-viewport,
.course-gallery-viewport {
  overflow: hidden;
}

.production-track,
.catalog-track,
.course-gallery-track {
  display: flex;
  gap: 18px;
  transition: transform 0.32s ease;
  will-change: transform;
}

.production-card,
.gallery-card,
.course-gallery-card {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.production-card {
  position: relative;
  flex: 0 0 calc((100% - 36px) / 3);
  height: 360px;
  background: rgba(255, 250, 245, 0.9);
  box-shadow: var(--shadow);
}

.production-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.production-card-tall {
  height: 380px;
}

.production-card span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(36, 23, 15, 0.7);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.filter-chip {
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(55, 38, 26, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brown);
  font-weight: 700;
  cursor: pointer;
}

.filter-chip.is-active {
  color: #fff;
  background: linear-gradient(
    180deg,
    var(--accent) 0%,
    var(--accent-deep) 100%
  );
  box-shadow: 0 12px 24px rgba(181, 107, 53, 0.22);
}

.catalog-grid {
  align-items: stretch;
}

.gallery-card {
  display: grid;
  grid-template-rows: auto 1fr;
  flex: 0 0 calc((100% - 18px) / 2);
  border: 1px solid rgba(55, 38, 26, 0.07);
  background: rgba(255, 250, 245, 0.96);
  box-shadow: var(--shadow);
}

.gallery-card[hidden] {
  display: none;
}

.gallery-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #efe5d4;
}

.gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-media-presential img {
  object-position: center 42%;
}

.gallery-media-bread img {
  object-position: center center;
}

.gallery-body {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 18px;
}

.gallery-body h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
}

.gallery-actions,
.course-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-actions .btn,
.course-actions .btn {
  flex: 0 0 auto;
  min-width: 0;
  min-height: 34px;
  padding: 0 14px;
  font-size: 0.8rem;
}

.catalog-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  border: 1px solid rgba(55, 38, 26, 0.1);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.94);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.catalog-arrow:disabled {
  opacity: 0.34;
  cursor: default;
}

.catalog-arrow-prev {
  left: -18px;
}

.catalog-arrow-next {
  right: -18px;
}

.catalog-arrow span {
  font-size: 1.3rem;
  line-height: 1;
}

.editorial-section,
.contact-banner {
  padding-top: 12px;
}

.editorial-grid {
  width: min(100%, 980px);
  margin: 0 auto;
}

/* ── Scroll-reveal ──────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal][data-delay="1"] { transition-delay: 0.12s; }
[data-reveal][data-delay="2"] { transition-delay: 0.24s; }
[data-reveal][data-delay="3"] { transition-delay: 0.36s; }

/* ── Social buttons ─────────────────────────────────── */
.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  border: none;
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}
.social-btn svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.social-btn-instagram {
  background: rgba(55, 38, 26, 0.1);
  color: var(--brown);
}
.social-btn-facebook {
   background: rgba(55, 38, 26, 0.1);
  color: var(--brown);
}

/* ── Calendar ───────────────────────────────────────── */
.course-calendar-wrap {
  display: grid;
  gap: 6px;
}
.course-calendar-wrap > strong {
  font-size: 0.82rem;
  color: var(--brown-soft);
}
.course-calendar {
  border: 1px solid rgba(55, 38, 26, 0.1);
  border-radius: 20px;
  overflow: hidden;
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  background: var(--accent-soft);
}
.cal-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--accent-deep);
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.15s;
}
.cal-nav:hover { background: #fff; }
.cal-title {
  font-weight: 800;
  font-size: 0.84rem;
  color: var(--accent-deep);
  text-transform: capitalize;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.82);
}
.cal-day-name {
  text-align: center;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--brown-soft);
  padding: 3px 0 6px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  background: transparent;
  padding: 0;
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--brown-soft);
  cursor: default;
}
.cal-day.is-available {
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-weight: 800;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cal-day.is-available:hover,
.cal-day.is-selected {
  background: var(--accent);
  color: #fff;
}
.cal-day.is-past {
  color: rgba(108, 88, 71, 0.25);
}
.cal-day.is-unavailable {
  text-decoration: line-through;
  text-decoration-color: rgba(108, 88, 71, 0.4);
  color: rgba(108, 88, 71, 0.45);
}
.cal-day.is-empty {
  pointer-events: none;
}
.cal-info {
  padding: 10px 14px 12px;
  background: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(55, 38, 26, 0.07);
  font-size: 0.78rem;
  color: var(--brown-soft);
  min-height: 40px;
  display: flex;
  align-items: center;
}
.cal-info a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-deep);
  font-weight: 700;
}
.cal-info a:hover { text-decoration: underline; }

.editorial-copy {
  display: grid;
  justify-items: center;
  gap: 20px;
  padding: 40px 44px;
  border: 1px solid rgba(55, 38, 26, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 245, 0.94);
  box-shadow: var(--shadow);
  text-align: center;
}

.editorial-avatar {
  width: 110px;
  height: 110px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.editorial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.editorial-copy h2 {
  max-width: 30ch;
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
  line-height: 1.15;
}

.editorial-copy p {
  max-width: 60ch;
  font-size: 0.93rem;
  line-height: 1.75;
}

.site-footer {
  margin-top: 10px;
  padding: 20px 0 14px;
  background: linear-gradient(
    180deg,
    rgba(55, 38, 26, 0.98),
    rgba(36, 23, 15, 1)
  );
  color: rgba(255, 250, 245, 0.88);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.footer-branding,
.footer-column {
  display: grid;
  gap: 8px;
}

.footer-logo {
  width: auto;
  height: 46px;
  object-fit: contain;
}

.footer-column a,
.footer-copy,
.footer-branding p {
  color: rgba(255, 250, 245, 0.78);
  font-size: 0.88rem;
  line-height: 1.65;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
}

.footer-bottom a {
  color: #ffd9ba;
  font-weight: 700;
}

.course-page {
  padding: 30px 0 44px;
}

.course-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr) minmax(
      280px,
      0.62fr
    );
  gap: 24px;
  align-items: start;
}

.course-media,
.course-content,
.course-panel {
  border: 1px solid rgba(55, 38, 26, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 245, 0.94);
  box-shadow: var(--shadow);
}

.course-media {
  position: relative;
  overflow: hidden;
  min-height: 620px;
}

.course-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.course-media-presential > img {
  object-position: center 34%;
}

.course-media-gallery {
  min-height: 620px;
  padding: 0;
}

.course-gallery-viewport {
  height: 100%;
}

.course-gallery-track {
  height: 100%;
}

.course-gallery-card {
  flex: 0 0 100%;
  height: 100%;
}

.course-gallery-card img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center;
}

.course-content,
.course-panel {
  padding: 24px;
}

.course-content {
  display: grid;
  align-content: start;
  gap: 18px;
}

.course-content h1 {
  font-size: clamp(1.6rem, 2.6vw, 2.6rem);
}

.course-highlights,
.course-meta {
  display: grid;
  gap: 12px;
}

.course-highlights div,
.course-meta div {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(55, 38, 26, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
}

.course-highlights strong,
.course-meta strong {
  font-size: 0.94rem;
}

.course-highlights span,
.course-meta span {
  color: var(--brown-soft);
}

.course-panel {
  display: grid;
  align-content: start;
  gap: 18px;
}

.course-panel h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
}

@media (max-width: 1080px) {
  .header-inner {
    min-height: 60px;
  }

  .top-nav {
    gap: 14px;
    font-size: 0.68rem;
  }

  .hero-clean-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "title"
      "visual"
      "copy";
    gap: 0;
  }

  .hero-clean-title {
    padding: 24px 20px 12px;
    text-align: center;
    font-size: clamp(2.2rem, 7vw, 2.8rem);
  }

  .hero-clean-visual {
    min-height: 320px;
  }

  .hero-clean-copy {
    padding: 16px 20px 28px;
    text-align: center;
    align-items: center;
  }

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

  .gallery-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .course-shell {
    grid-template-columns: 1fr;
  }

  .course-media,
  .course-media-gallery {
    min-height: 460px;
  }

  .course-gallery-card img {
    height: 460px;
  }
}

@media (max-width: 900px) {
  .top-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .production-card {
    flex-basis: calc((100% - 18px) / 2);
    height: 320px;
  }

  .gallery-card {
    flex-basis: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 22px, var(--wrap));
  }

  section {
    padding: 20px 0;
  }

  .header-inner {
    min-height: 56px;
  }

  .brand-logo {
    height: 38px;
  }

  .brand-text strong {
    font-size: 0.82rem;
  }

  .brand-text small {
    font-size: 0.62rem;
  }

  .hero-clean {
    padding-top: 18px;
  }

  .hero-clean-card {
    gap: 0;
  }

  .hero-clean-copy {
    gap: 14px;
    padding: 28px 22px 24px;
    text-align: center;
    align-items: center;
  }

  .hero-clean-copy h1 {
    font-size: clamp(2.2rem, 9.8vw, 3.2rem);
    max-width: 13ch;
    margin: 0 auto;
  }

  .hero-clean-copy p {
    font-size: 0.88rem;
    margin: 0 auto;
  }

  .hero-clean-actions {
    flex-direction: column;
  }

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

  .hero-clean-visual {
    min-height: 360px;
  }

  .section-heading h2 {
    max-width: 15ch;
    font-size: 1.8rem;
  }

  .production-card,
  .production-card-tall {
    flex-basis: 100%;
    height: 300px;
  }

  .catalog-arrow {
    width: 40px;
    height: 40px;
    margin-top: -20px;
  }

  .catalog-arrow-prev {
    left: -8px;
  }

  .catalog-arrow-next {
    right: -8px;
  }

  .gallery-media {
    aspect-ratio: 4 / 3;
  }

  .gallery-body {
    padding: 16px;
  }

  .gallery-actions,
  .course-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .editorial-copy,
  .contact-grid {
    padding: 22px 18px;
  }

  .editorial-copy h2,
  .contact-copy h2 {
    font-size: 1.6rem;
    max-width: 22ch;
  }

  .editorial-copy p,
  .contact-copy p {
    font-size: 0.9rem;
  }

  .contact-card {
    padding: 18px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .course-page {
    padding-top: 20px;
  }

  .course-media,
  .course-media-gallery {
    min-height: 300px;
  }

  .course-gallery-card img {
    height: 300px;
  }

  .course-content,
  .course-panel {
    padding: 18px;
  }

  .course-content h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 460px) {
  .hero-clean-copy h1 {
    max-width: 11ch;
    font-size: 1.76rem;
  }

  .hero-clean-copy p {
    font-size: 0.82rem;
  }

  .hero-clean-visual {
    min-height: 310px;
  }

  .gallery-media,
  .course-gallery-card img {
    height: 240px;
  }

  .production-card,
  .production-card-tall {
    height: 260px;
  }
}
