/* ============================================================
   Artisan Delight by Vera Beschieru — main stylesheet
   Palette: ivory cream / deep bottle green / antique gold
   Type:    Cormorant Garamond (display) · Jost (text) · Great Vibes (script)
   ============================================================ */

:root {
  --cream: #faf6ef;
  --cream-2: #f2ebdd;
  --cream-3: #ece3d1;
  --white: #fffdf9;
  --ink: #2b2620;
  --ink-soft: #5c544a;
  --green: #1f3128;
  --green-2: #2a4136;
  --green-3: #16241d;
  --gold: #b08d4f;
  --gold-2: #c9a961;
  --gold-3: #e6d3a8;
  --line: #e4dac7;
  --danger: #b3453f;
  --shadow-sm: 0 2px 10px rgba(43, 38, 32, 0.07);
  --shadow-md: 0 12px 40px rgba(43, 38, 32, 0.12);
  --shadow-lg: 0 24px 70px rgba(31, 49, 40, 0.22);
  --radius: 14px;
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;
  --font-script: 'Great Vibes', cursive;
  --header-h: 82px;
}

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

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  overflow-x: clip;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

::selection { background: var(--gold-3); color: var(--ink); }

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

/* ---------- typography helpers ---------- */

.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--gold);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.1;
  display: block;
  margin-bottom: 10px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
}

.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2.1rem, 4vw, 3rem); }
.section-head p { margin-top: 14px; color: var(--ink-soft); }

.divider {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  color: var(--gold);
}
.divider::before, .divider::after {
  content: '';
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-2));
}
.divider::after { background: linear-gradient(90deg, var(--gold-2), transparent); }
.divider svg { width: 12px; height: 12px; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex: none; }

.btn-primary {
  background: var(--green);
  color: var(--cream);
  box-shadow: 0 10px 24px rgba(31, 49, 40, 0.28);
}
.btn-primary:hover {
  background: var(--green-3);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(31, 49, 40, 0.34);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #fff;
  box-shadow: 0 10px 24px rgba(176, 141, 79, 0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(176, 141, 79, 0.45); }

.btn-outline {
  border-color: var(--green);
  color: var(--green);
  background: transparent;
}
.btn-outline:hover { background: var(--green); color: var(--cream); }

.btn-light-outline {
  border-color: rgba(250, 246, 239, 0.55);
  color: var(--cream);
  background: transparent;
}
.btn-light-outline:hover { background: var(--cream); color: var(--green); border-color: var(--cream); }

.btn-whatsapp {
  background: #1faf5c;
  color: #fff;
  box-shadow: 0 10px 24px rgba(31, 175, 92, 0.3);
}
.btn-whatsapp:hover { transform: translateY(-2px); background: #189950; }

/* ---------- top bar + header ---------- */

.topbar {
  background: var(--green);
  color: rgba(250, 246, 239, 0.85);
  font-size: 12.5px;
  letter-spacing: 0.08em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
  gap: 16px;
}
.topbar a { display: inline-flex; align-items: center; gap: 7px; transition: color 0.2s; white-space: nowrap; }
.topbar a:hover { color: var(--gold-3); }
.topbar svg { width: 13px; height: 13px; }
.topbar-areas { display: inline-flex; align-items: center; gap: 7px; }
.topbar-contacts { display: flex; gap: 22px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(250, 246, 239, 0.97);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.site-header .container {
  display: flex;
  align-items: center;
  gap: 28px;
  height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 13px; flex: none; }
.brand img { width: 52px; height: 52px; }
.brand-text { line-height: 1; }
.brand-script {
  font-family: var(--font-script);
  font-size: 27px;
  color: var(--green);
  display: block;
}
.brand-sub {
  display: block;
  font-size: 9.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
  font-weight: 500;
}

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 34px; }
.main-nav a {
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px 0;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--gold);
  transition: right 0.3s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.main-nav a.active { color: var(--green); font-weight: 500; }

.header-actions { display: flex; align-items: center; gap: 16px; flex: none; }
.header-cta { padding: 12px 26px; }

/* language switcher */
.lang-switch { position: relative; }
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 15px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s;
}
.lang-btn:hover { border-color: var(--gold-2); }
.lang-btn svg { width: 13px; height: 13px; transition: transform 0.25s; }
.lang-switch.open .lang-btn svg { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 8px;
  min-width: 158px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.22s ease;
}
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: 0;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s;
}
.lang-menu button:hover { background: var(--cream-2); }
.lang-menu button.current { color: var(--gold); font-weight: 500; }
.lang-menu button span.code { font-size: 11px; letter-spacing: 0.1em; color: var(--ink-soft); }

/* burger */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 42px;
  height: 42px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.8px;
  background: var(--ink);
  transition: all 0.3s;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.8px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.8px) rotate(-45deg); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(201, 169, 97, 0.14), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(31, 49, 40, 0.08), transparent 55%),
    var(--cream);
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  padding: clamp(56px, 8vh, 110px) 0 clamp(64px, 9vh, 120px);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 22px;
}
.hero-eyebrow::before { content: ''; width: 44px; height: 1px; background: var(--gold-2); }

.hero h1 {
  font-size: clamp(2.7rem, 5.4vw, 4.4rem);
  font-weight: 500;
  margin-bottom: 10px;
}
.hero h1 em {
  font-style: italic;
  color: var(--green);
}
.hero .hero-script {
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--gold);
  display: block;
  margin: 4px 0 22px;
}
.hero-sub {
  color: var(--ink-soft);
  max-width: 480px;
  font-size: 17.5px;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-areas {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-areas svg { width: 15px; height: 15px; color: var(--gold); flex: none; }

.hero-visual { position: relative; }
.hero-frame {
  position: relative;
  border-radius: 300px 300px var(--radius) var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5.1;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -16px 16px 16px -16px;
  border: 1.5px solid var(--gold-2);
  border-radius: 320px 320px calc(var(--radius) + 8px) calc(var(--radius) + 8px);
  opacity: 0.55;
  pointer-events: none;
}

.hero-card {
  position: absolute;
  left: -34px;
  bottom: 42px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
}
.hero-card .num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  color: var(--green);
  line-height: 1;
}
.hero-card .lbl { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); max-width: 130px; line-height: 1.45; }

/* ---------- marquee band ---------- */

.band {
  background: var(--green);
  color: var(--gold-3);
  overflow: hidden;
  padding: 15px 0;
  border-block: 1px solid rgba(201, 169, 97, 0.25);
}
.band-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: band-scroll 34s linear infinite;
}
.band-track span {
  display: inline-flex;
  align-items: center;
  gap: 56px;
  font-size: 12.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
}
.band-track span::after { content: '✦'; font-size: 10px; color: var(--gold-2); }
@keyframes band-scroll { to { transform: translateX(-50%); } }

/* ---------- generic sections ---------- */

.section { padding: clamp(70px, 10vh, 120px) 0; }
.section.tinted { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }

/* ---------- about preview / about page ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.about-visual { position: relative; }
.about-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
}
.about-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-visual::after {
  content: '';
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1.5px solid var(--gold-2);
  border-radius: var(--radius);
  opacity: 0.5;
  z-index: -1;
}
.about-badge {
  position: absolute;
  top: -22px;
  right: -18px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold-3);
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.5;
  padding: 14px;
  box-shadow: var(--shadow-md);
}

.about-copy h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); margin-bottom: 20px; }
.about-copy p { color: var(--ink-soft); margin-bottom: 16px; }
.about-signature {
  font-family: var(--font-script);
  font-size: 34px;
  color: var(--gold);
  margin-top: 26px;
}
.about-points { margin: 26px 0 34px; display: grid; gap: 14px; }
.about-points li { display: flex; gap: 13px; align-items: flex-start; color: var(--ink); font-weight: 400; }
.about-points svg { width: 19px; height: 19px; color: var(--gold); flex: none; margin-top: 3px; }

/* ---------- collections ---------- */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.card-img { aspect-ratio: 4 / 4.4; overflow: hidden; position: relative; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 24px; margin-bottom: 10px; }
.card-body p { color: var(--ink-soft); font-size: 15px; flex: 1; }
.card-foot {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.card-price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--green);
}
.card-link {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: gap 0.25s;
}
.card-link:hover { gap: 11px; }
.card-link svg { width: 14px; height: 14px; }

/* ---------- process ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  counter-reset: step;
}
.step { text-align: center; padding: 0 8px; position: relative; }
.step-num {
  width: 74px;
  height: 74px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-2);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 600;
  color: var(--gold);
  background: var(--white);
  position: relative;
}
.step-num::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px dashed rgba(176, 141, 79, 0.45);
}
.step h3 { font-size: 21px; margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: 14.5px; }
.step:not(:last-child)::before {
  content: '';
  position: absolute;
  top: 37px;
  left: calc(50% + 52px);
  width: calc(100% - 104px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold-2), transparent 85%);
  opacity: 0.5;
}

/* ---------- portfolio ---------- */

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 46px;
}
.filter-btn {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.25s;
}
.filter-btn:hover { border-color: var(--gold-2); color: var(--ink); }
.filter-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--cream);
  font-weight: 500;
}

.masonry {
  columns: 3;
  column-gap: 24px;
}
.masonry .ph-item { margin-bottom: 24px; break-inside: avoid; }

.ph-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
  animation: ph-in 0.5s ease both;
}
@keyframes ph-in { from { opacity: 0; transform: translateY(14px); } }
.ph-item img { width: 100%; transition: transform 0.6s ease; }
.ph-item:hover img { transform: scale(1.045); }
.ph-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(22, 36, 29, 0.82));
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: var(--cream);
}
.ph-item:hover .ph-overlay { opacity: 1; }
.ph-overlay .t { font-family: var(--font-display); font-size: 21px; font-weight: 600; }
.ph-overlay .c { font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-3); margin-top: 5px; }

.portfolio-more { text-align: center; margin-top: 52px; }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(22, 30, 26, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  padding: 30px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(92vw, 900px);
  max-height: 82vh;
  border-radius: 10px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}
.lightbox-caption {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--cream);
}
.lightbox-caption .t { font-family: var(--font-display); font-size: 22px; }
.lightbox-caption .c { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-3); }
.lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(250, 246, 239, 0.1);
  border: 1px solid rgba(250, 246, 239, 0.3);
  color: var(--cream);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.25s;
}
.lb-btn:hover { background: rgba(250, 246, 239, 0.22); }
.lb-btn svg { width: 20px; height: 20px; }
.lb-prev { left: 26px; }
.lb-next { right: 26px; }
.lb-close { top: 26px; right: 26px; transform: none; width: 46px; height: 46px; }

/* ---------- testimonials ---------- */

.testimonials { position: relative; }
.quote-mark {
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 0.6;
  color: var(--gold-2);
  opacity: 0.5;
  display: block;
  text-align: center;
  margin-bottom: 8px;
}
.ts-slider { position: relative; max-width: 780px; margin-inline: auto; text-align: center; min-height: 240px; }
.ts-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.ts-slide.active { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.ts-text {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.8rem);
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 26px;
  line-height: 1.5;
}
.ts-author { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.ts-author span { color: var(--ink-soft); font-weight: 300; }
.ts-dots { display: flex; justify-content: center; gap: 10px; margin-top: 36px; }
.ts-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}
.ts-dot.active { background: var(--gold); transform: scale(1.25); }

/* ---------- CTA band ---------- */

.cta {
  background:
    radial-gradient(800px 400px at 15% 0%, rgba(201, 169, 97, 0.16), transparent 55%),
    var(--green);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta .script { color: var(--gold-3); }
.cta h2 { color: var(--cream); font-size: clamp(2.1rem, 4.4vw, 3.2rem); max-width: 720px; margin-inline: auto; }
.cta p { color: rgba(250, 246, 239, 0.75); max-width: 560px; margin: 18px auto 38px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- page hero (inner pages) ---------- */

.page-hero {
  background:
    radial-gradient(900px 380px at 80% -20%, rgba(201, 169, 97, 0.16), transparent 60%),
    linear-gradient(180deg, var(--cream-2), var(--cream));
  text-align: center;
  padding: clamp(54px, 8vh, 90px) 0 clamp(44px, 6vh, 70px);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2.4rem, 4.6vw, 3.6rem); font-weight: 500; }
.page-hero p { color: var(--ink-soft); max-width: 560px; margin: 14px auto 0; }
.breadcrumbs {
  display: inline-flex;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { color: var(--gold); }

/* ---------- contact page ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: start;
}

.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 14px; }
.contact-info > p { color: var(--ink-soft); margin-bottom: 30px; }

.contact-channels { display: grid; gap: 16px; margin-bottom: 34px; }
.channel {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 17px 20px;
  transition: all 0.25s;
}
.channel:hover { border-color: var(--gold-2); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.channel-ico {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cream-2);
  color: var(--green);
}
.channel-ico svg { width: 20px; height: 20px; }
.channel.wa .channel-ico { background: #e5f7ec; color: #189950; }
.channel.ig .channel-ico { background: #fbeaf2; color: #c13584; }
.channel.fb .channel-ico { background: #e9f0fc; color: #1877f2; }
.channel b { display: block; font-weight: 500; font-size: 15.5px; }
.channel small { color: var(--ink-soft); font-size: 13px; letter-spacing: 0.04em; }

.contact-social { display: grid; gap: 16px; }
.contact-social:empty { display: none; }

.contact-areas {
  background: var(--green);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 26px 28px;
}
.contact-areas h3 { color: var(--gold-3); font-size: 19px; margin-bottom: 8px; }
.contact-areas p { font-size: 14px; color: rgba(250, 246, 239, 0.8); }
.contact-areas .areas-line { margin-top: 10px; font-family: var(--font-display); font-size: 19px; letter-spacing: 0.06em; color: var(--cream); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--shadow-md);
}
.contact-form-card h2 { font-size: 26px; margin-bottom: 6px; }
.contact-form-card > p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 28px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.18);
  background: var(--white);
}
.form-submit { margin-top: 26px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-note { font-size: 12.5px; color: var(--ink-soft); }

.form-status {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14.5px;
  display: none;
}
.form-status.ok { display: block; background: #eaf6ee; color: #1c6b3c; border: 1px solid #bfe3cc; }
.form-status.err { display: block; background: #fbeeed; color: #94322d; border: 1px solid #eccfcd; }
/* the “open WhatsApp” fallback link shown after a request is handed over */
.form-status a { color: inherit; font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.form-status a:hover { opacity: 0.75; }

/* honeypot */
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ---------- footer ---------- */

.site-footer {
  background: var(--green-3);
  color: rgba(250, 246, 239, 0.78);
  padding-top: clamp(56px, 8vh, 84px);
  font-size: 14.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  padding-bottom: 48px;
}
.footer-brand .brand-script { color: var(--cream); font-size: 30px; }
.footer-brand .brand-sub { color: var(--gold-2); }
.footer-brand p { margin-top: 16px; max-width: 300px; line-height: 1.7; }
.footer-brand img { width: 58px; height: 58px; margin-bottom: 14px; }

.site-footer h4 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.site-footer h4::after {
  content: '';
  display: block;
  width: 30px;
  height: 1.5px;
  background: var(--gold);
  margin-top: 9px;
}
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { transition: color 0.2s; display: inline-flex; align-items: center; gap: 9px; }
.footer-col a:hover { color: var(--gold-3); }
.footer-col svg { width: 15px; height: 15px; color: var(--gold-2); flex: none; }

.footer-areas li { display: flex; align-items: center; gap: 9px; }
.footer-areas svg { width: 14px; height: 14px; color: var(--gold-2); }

.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(250, 246, 239, 0.25);
  display: grid;
  place-items: center;
  transition: all 0.25s;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }

.footer-bottom {
  border-top: 1px solid rgba(250, 246, 239, 0.14);
  padding: 22px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: rgba(250, 246, 239, 0.55);
}
.admin-star {
  color: rgba(201, 169, 97, 0.4);
  font-size: 13px;
  transition: all 0.3s;
  padding: 4px 6px;
}
.admin-star:hover { color: var(--gold-3); transform: rotate(90deg) scale(1.2); }

/* ---------- recipes: flavours & ingredients ---------- */

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.recipe-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.recipe-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.recipe-img { position: relative; aspect-ratio: 4 / 3.2; overflow: hidden; cursor: pointer; }
.recipe-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.recipe-card:hover .recipe-img img { transform: scale(1.05); }
.recipe-cat {
  position: absolute;
  left: 14px;
  top: 14px;
  background: rgba(31, 49, 40, 0.82);
  color: var(--gold-3);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.recipe-cat.static { position: static; display: inline-block; margin-bottom: 13px; }
.recipe-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.recipe-body h3 { font-size: 23px; margin-bottom: 9px; }
.recipe-body p { color: var(--ink-soft); font-size: 14.5px; flex: 1; }

.recipe-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--cream-2);
  color: var(--ink-soft);
  border: 1px solid var(--line);
}
.tag-clean { background: #eaf6ee; color: #1c6b3c; border-color: #cfe7d8; }

.recipe-more {
  margin-top: 18px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.25s ease;
}
.recipe-more:hover { gap: 12px; }
.recipe-more svg { width: 14px; height: 14px; }
.recipe-empty { text-align: center; color: var(--ink-soft); padding: 40px 0; }

/* recipe detail */

.rc-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  background: rgba(22, 30, 26, 0.72);
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
  overflow-y: auto;
}
.rc-modal.open { opacity: 1; visibility: visible; }
.rc-modal-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  width: min(900px, 100%);
  max-height: min(88vh, 780px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  box-shadow: var(--shadow-lg);
}
.rc-modal-media { min-height: 100%; }
.rc-modal-media img { width: 100%; height: 100%; object-fit: cover; }
.rc-modal-body { padding: 34px 34px 36px; overflow-y: auto; min-height: 0; }
.rc-modal-body h3 { font-size: clamp(1.6rem, 3vw, 1.95rem); margin-bottom: 10px; }
.rc-modal-body .rc-desc { color: var(--ink-soft); font-size: 15px; }
.rc-modal-body h4 {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 26px 0 12px;
}
.rc-ing { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 18px; }
.rc-ing li { position: relative; padding-left: 17px; font-size: 14.5px; }
.rc-ing li::before {
  content: '\2726';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 9px;
  line-height: 2.1;
  color: var(--gold-2);
}
.rc-order { margin-top: 28px; width: 100%; }
.rc-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(250, 246, 239, 0.92);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.rc-close:hover { background: var(--cream-3); }
.rc-close svg { width: 18px; height: 18px; }

/* allergen note */

.allergen-note {
  margin-top: 56px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 30px 32px;
}
.allergen-note-ico {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--gold);
  display: grid;
  place-items: center;
  flex: none;
}
.allergen-note-ico svg { width: 22px; height: 22px; }
.allergen-note h3 { font-size: 22px; margin-bottom: 8px; }
.allergen-note p { color: var(--ink-soft); font-size: 14.5px; max-width: 760px; }
.allergen-note .btn { margin-top: 20px; }

/* ---------- reveal animations ---------- */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .band-track { animation: none; }
  .ph-item { animation: none; }
  .ts-slide { transition: none; }
  .main-nav { transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */

@media (max-width: 1060px) {
  .main-nav ul { gap: 24px; }
  .header-cta { display: none; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .recipe-grid { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::before { display: none; }
  .masonry { columns: 2; }
}

@media (max-width: 860px) {
  .topbar-areas { display: none; }
  .topbar .container { justify-content: center; }

  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 84vw);
    background: var(--cream);
    box-shadow: -20px 0 60px rgba(43, 38, 32, 0.18);
    transform: translateX(105%);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 95;
    padding: 110px 40px 40px;
    margin-left: 0;
  }
  body.nav-open .main-nav { transform: none; }
  /* the nav is out of flow here, so the actions need their own auto margin */
  .header-actions { margin-left: auto; }
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(22, 30, 26, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.38s ease, visibility 0.38s;
    z-index: 94;
  }
  body.nav-open::after { opacity: 1; visibility: visible; }
  .main-nav ul { flex-direction: column; gap: 8px; }
  .main-nav a { font-size: 17px; display: block; padding: 13px 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { z-index: 100; }

  .hero .container { grid-template-columns: 1fr; padding-top: 44px; }
  .hero-visual { order: -1; max-width: 430px; margin-inline: auto; width: 100%; }
  .hero-card { left: -8px; bottom: 26px; padding: 14px 18px; }
  .hero-sub { max-width: none; }

  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .rc-modal { padding: 14px; }
  .rc-modal-card { grid-template-columns: 1fr; max-height: 92vh; }
  .rc-modal-media { height: 210px; min-height: 0; }
  .rc-modal-body { padding: 26px 24px 30px; }
  .allergen-note { flex-direction: column; gap: 16px; padding: 26px 24px; }
  .about-visual { max-width: 430px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 15.5px; }
  .topbar { font-size: 11px; }
  .topbar .container { gap: 8px; }
  .topbar-contacts { gap: 12px; flex-wrap: wrap; justify-content: center; }
  .container { width: calc(100% - 36px); }
  .cards-grid, .steps, .recipe-grid { grid-template-columns: 1fr; }
  .rc-ing { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .form-grid { grid-template-columns: 1fr; }
  /* iOS zooms the page in when a focused field is under 16px */
  .form-field input, .form-field select, .form-field textarea { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; }
  .cta-buttons .btn { width: 100%; }
  .footer-bottom .container { justify-content: center; text-align: center; }
  /* the logo and the actions are both flex:none — on narrow phones they have
     to give way, otherwise the burger is pushed past the viewport edge */
  .site-header .container { gap: 12px; }
  .brand { flex: 0 1 auto; min-width: 0; gap: 10px; }
  .brand-text { min-width: 0; overflow: hidden; }
  .brand img { width: 44px; height: 44px; }
  .brand-script { font-size: 23px; white-space: nowrap; }
  .brand-sub { letter-spacing: 0.16em; white-space: nowrap; }
  .header-actions { gap: 8px; }
  .lang-btn { padding: 8px 11px; letter-spacing: 0.1em; }
  .nav-toggle { width: 38px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
}
