:root {
  --color-bg: #fff8f3;
  --color-surface: #ffffff;
  --color-surface-warm: #fff0e4;
  --color-text: #29170c;
  --color-muted: #6f5a50;
  --color-border: #e6c7b6;
  --color-accent: #a63b00;
  --color-accent-dark: #7f2b00;
  --color-gold: #d99016;
  --shadow-soft: 0 18px 44px rgba(53, 24, 7, 0.12);
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-label: "Outfit", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(217, 144, 22, 0.13), transparent 28rem),
    var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.65;
}

body,
button,
input,
select {
  font: inherit;
}

a {
  color: inherit;
}

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

.container,
.site-header__inner,
.site-footer__inner {
  margin: 0 auto;
  max-width: 1200px;
  padding-left: 24px;
  padding-right: 24px;
}

.skip-link {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  left: 1rem;
  padding: 0.65rem 0.85rem;
  position: absolute;
  top: -5rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  background: rgba(255, 248, 243, 0.94);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header__inner {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 72px;
}

.site-brand {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.site-nav__menu {
  align-items: center;
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__menu a {
  color: var(--color-muted);
  font-family: var(--font-label);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav__menu a:hover {
  color: var(--color-accent);
}

.site-main {
  overflow: clip;
}

.button {
  align-items: center;
  background: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  font-family: var(--font-label);
  font-weight: 700;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.25rem;
  text-decoration: none;
}

.button:hover {
  background: var(--color-accent-dark);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.72);
}

.eyebrow {
  color: var(--color-accent);
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.home-hero {
  align-items: center;
  color: #ffffff;
  display: flex;
  min-height: 720px;
  position: relative;
}

.home-hero__media,
.home-hero__overlay {
  inset: 0;
  position: absolute;
}

.home-hero__media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.home-hero__overlay {
  background:
    linear-gradient(90deg, rgba(38, 14, 2, 0.82), rgba(38, 14, 2, 0.46) 58%, rgba(38, 14, 2, 0.24)),
    linear-gradient(0deg, rgba(41, 23, 12, 0.78), transparent 45%);
}

.home-hero__content {
  padding-bottom: 72px;
  padding-top: 72px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.home-hero .eyebrow {
  color: #ffd6b8;
}

.home-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.55rem, 6vw, 5.2rem);
  line-height: 1.03;
  margin: 0;
  max-width: 900px;
}

.home-hero__summary {
  color: #fff0e4;
  font-size: 1.16rem;
  margin: 22px 0 0;
  max-width: 720px;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.workshop-search {
  align-items: end;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  color: var(--color-text);
  display: flex;
  gap: 12px;
  margin-top: 42px;
  max-width: 680px;
  padding: 12px;
}

.workshop-search label {
  display: grid;
  flex: 1;
  gap: 4px;
}

.workshop-search span {
  color: var(--color-muted);
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.workshop-search select {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  min-height: 48px;
  padding: 0 12px;
  width: 100%;
}

.section {
  padding: 84px 0;
}

.section--warm {
  background: var(--color-surface-warm);
  border-bottom: 1px solid var(--color-border);
  border-top: 1px solid var(--color-border);
}

.section--faq {
  background: #ffffff;
}

.section-header {
  margin-bottom: 34px;
  max-width: 820px;
}

.section-header h2,
.guide-layout h2,
.story-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  margin: 0;
}

.section-header p,
.guide-layout p,
.story-card p {
  color: var(--color-muted);
  margin: 14px 0 0;
}

.workshop-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.workshop-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  box-shadow: 0 8px 26px rgba(53, 24, 7, 0.06);
  overflow: hidden;
}

.workshop-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.workshop-card__image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.workshop-card__image span {
  background: #ffd790;
  border-radius: 999px;
  color: #4f2600;
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 800;
  left: 14px;
  padding: 6px 10px;
  position: absolute;
  text-transform: uppercase;
  top: 14px;
}

.workshop-card__body {
  padding: 22px;
}

.workshop-card__rating {
  align-items: center;
  color: var(--color-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.9rem;
}

.workshop-card__rating strong {
  color: var(--color-accent);
}

.workshop-card h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  line-height: 1.18;
  margin: 12px 0 8px;
}

.workshop-card p {
  color: var(--color-muted);
  margin: 0;
}

.workshop-card__facts {
  border-top: 1px solid var(--color-border);
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
  margin: 20px 0 0;
  padding-top: 18px;
}

.workshop-card__facts div,
.workshop-card__facts dt,
.workshop-card__facts dd {
  margin: 0;
}

.workshop-card__facts dt {
  color: var(--color-muted);
  font-size: 0.8rem;
}

.workshop-card__facts dd {
  font-family: var(--font-label);
  font-weight: 800;
}

.guide-layout {
  align-items: start;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
}

.guide-checklist {
  display: grid;
  gap: 14px;
}

.guide-checklist div,
.trust-panel,
.faq-list details {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
}

.guide-checklist div {
  padding: 22px;
}

.guide-checklist strong,
.trust-panel h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
}

.editorial-layout {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 360px;
}

.story-card {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
}

.story-card img {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  width: 100%;
}

.trust-panel {
  padding: 26px;
}

.trust-panel ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.trust-panel li {
  color: var(--color-muted);
}

.faq-layout {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--font-label);
  font-weight: 800;
  list-style: none;
  padding: 20px 22px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  margin: 0;
  padding: 18px 22px 22px;
}

.site-footer {
  background: #29170c;
  color: #fff0e4;
}

.site-footer__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 92px;
}

@media (max-width: 980px) {
  .workshop-grid,
  .guide-layout,
  .editorial-layout,
  .story-card,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .workshop-grid {
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  .container,
  .site-header__inner,
  .site-footer__inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-header__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 16px;
    padding-top: 16px;
  }

  .site-nav__menu {
    flex-wrap: wrap;
    gap: 14px;
  }

  .home-hero {
    min-height: 680px;
  }

  .home-hero__overlay {
    background: linear-gradient(0deg, rgba(38, 14, 2, 0.84), rgba(38, 14, 2, 0.44));
  }

  .workshop-search {
    align-items: stretch;
    flex-direction: column;
  }

  .section {
    padding: 62px 0;
  }
}
