:root {
  --bg: #fdf1e9;
  --bg-deep: #f7e2d4;
  --paper: #fff8f3;
  --ink: #59220e;
  --muted: #a6654e;
  --line: #d99873;
  --accent: #f25c05;
  --accent-2: #f25c05;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --max: 1180px;
  --shadow-soft: 0 12px 35px rgba(89, 34, 14, 0.1);
  --shadow-card: 0 16px 35px rgba(89, 34, 14, 0.14);
  --font-heading: "Woodland", "Kyiv Type Serif", "Georgia", serif;
  --font-body: "Neue Montreal", "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

@font-face {
  font-family: "Woodland";
  src: url("assets/fonts/PPWoodland-Ultralight.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Woodland";
  src: url("assets/fonts/PPWoodland-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Montreal";
  src: url("assets/fonts/PPNeueMontreal-Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Montreal";
  src: url("assets/fonts/PPNeueMontreal-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Montreal";
  src: url("assets/fonts/PPNeueMontreal-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(50rem 28rem at 85% -8%, #ffe8f6 0%, transparent 72%),
    radial-gradient(34rem 20rem at -10% 22%, #ffe8dc 0%, transparent 75%),
    radial-gradient(24rem 18rem at 55% 12%, #ffd9c4 0%, transparent 82%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  color: var(--ink);
  line-height: 1.55;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(var(--max), 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: 0.005em;
}

.logo-mark {
  display: none;
}

.nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  font-family: var(--font-body);
  font-size: 1.06rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  background: rgba(255, 248, 243, 0.95);
  border: 1px solid rgba(217, 152, 115, 0.45);
  border-radius: 999px;
  padding: 10px 18px;
  box-shadow: 0 8px 24px rgba(89, 34, 14, 0.08);
}

.nav a {
  position: relative;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav a::after {
  content: none;
}

.nav a:hover::after,
.nav a.active::after {
  transform: none;
}

.nav a:hover,
.nav a.active {
  background: rgba(217, 152, 115, 0.2);
}

main {
  padding-bottom: 110px;
}

.hero {
  padding-top: 84px;
}

.hero-stage {
  --hero-size: clamp(92px, 10vw, 132px);
  display: grid;
  gap: 40px;
  padding: 42px 0 56px;
}

.hero-top {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: clamp(18px, 3vw, 30px);
  width: 100%;
  min-height: clamp(260px, 44vh, 420px);
}

.hero-name {
  margin: 0;
}

.hero-name-inline {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(10px, 1.6vw, 18px);
  margin: 0;
}

.hero-word {
  font-family: var(--font-heading);
  font-size: clamp(2.7rem, 8.6vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.hero-word-amp {
  margin-inline: clamp(-4px, -0.3vw, -1px);
}

.hero-kicker {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.16rem);
}

.hero-portrait {
  position: absolute;
  margin: 0;
  width: var(--hero-size);
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  border: 4px solid #fffaf7;
  box-shadow: var(--shadow-card);
  --hero-x: 0px;
  --hero-y: 0px;
  --hero-shift: 0px;
  --hero-tilt: 15deg;
  --hero-hover-y: 0px;
  --hero-hover-scale: 1;
  transform: translate3d(
      calc(-50% + var(--hero-x)),
      calc(-50% + var(--hero-y) + var(--hero-shift) + var(--hero-hover-y)),
      0
    )
    rotate(var(--hero-tilt))
    scale(var(--hero-hover-scale));
  left: calc(99% + 90px);
  top: calc(-2% - 50px);
  transition: transform 0.45s cubic-bezier(0.2, 0.75, 0.2, 1);
  will-change: transform;
  z-index: 2;
}

@media (max-width: 1200px) {
  .hero-portrait {
    left: calc(100% + 34px);
    top: calc(-2% - 28px);
  }
}

.hero-portrait:hover {
  --hero-hover-y: -8px;
  --hero-hover-scale: 1.04;
  box-shadow: 0 20px 42px rgba(89, 34, 14, 0.22);
}

.hero-portrait img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  animation: heroPortraitIn 900ms cubic-bezier(0.22, 0.76, 0.2, 1) both;
}

.hero-meta {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 58ch;
  text-align: center;
}

.hero-subtitle {
  margin: 0;
  padding: 0;
  color: var(--muted);
  text-align: center;
  font-size: clamp(1.08rem, 1.6vw, 1.34rem);
  line-height: 1.5;
}

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

.hero-cta {
  display: flex;
  justify-content: center;
  margin-top: 14px;
  margin-bottom: 0;
}

.btn-ghost {
  background: var(--accent);
  color: #fff8f2;
  border: 0;
}

.hero-marquee {
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  margin-top: 36px;
  padding: 6px 0 14px;
}

.hero-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  transform: translate3d(var(--marquee-x, 0px), 0, 0);
  will-change: transform;
}

.hero-marquee-item {
  margin: 0;
  width: clamp(180px, 18vw, 260px);
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 6px 16px rgba(89, 34, 14, 0.16);
  flex: 0 0 auto;
  transition: box-shadow 0.32s ease;
}

.hero-marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-marquee-item:hover {
  box-shadow: 0 6px 16px rgba(89, 34, 14, 0.16);
}

@keyframes heroPortraitIn {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.section {
  margin-top: 112px;
}

.about-section {
  margin-bottom: 0;
}

.about-section + #contact.section {
  margin-top: 142px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.section-head-centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 34px;
}

.section-head-centered p {
  max-width: 42ch;
}

.insta-head p {
  font-size: clamp(1.12rem, 1.65vw, 1.34rem);
  line-height: 1.5;
}

.locations-subpage .section-head h2,
.instagram-subpage .section-head h2 {
  font-size: clamp(2.3rem, 4.5vw, 4rem);
  line-height: 0.92;
}

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

.feature-card {
  background: #fff2e9;
  border: 1px solid rgba(166, 101, 78, 0.24);
  border-radius: 36px;
  padding: 18px 18px 22px;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  gap: 18px;
  height: 500px;
  text-align: left;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.feature-visual {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: transparent;
  padding: 0;
}

.feature-visual::after {
  content: none;
}

.feature-visual img {
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  object-fit: cover;
}

.feature-content {
  display: grid;
  gap: 8px;
  justify-items: start;
  text-align: left;
}

.feature-content h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 2.1rem;
  line-height: 0.95;
  text-align: left;
  width: 100%;
}

.feature-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
  text-align: left;
  width: 100%;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
  justify-content: flex-start;
  width: 100%;
}

.feature-tags span {
  background: #fff5ef;
  border: 1px solid rgba(217, 152, 115, 0.36);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 14px;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1;
}

.about {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  align-items: start;
  width: min(980px, 100%);
  margin-inline: auto;
  gap: clamp(28px, 5vw, 68px);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.about-side {
  display: grid;
  justify-items: center;
  gap: 0;
}

.about-portrait-card {
  margin: 0;
  width: min(100%, 300px);
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(89, 34, 14, 0.22);
  border: 1px solid rgba(166, 101, 78, 0.25);
  --about-shift: 0px;
  --about-tilt: -4deg;
  --about-hover-y: 0px;
  --about-hover-scale: 1;
  transform: translate3d(0, calc(var(--about-shift) + var(--about-hover-y)), 0)
    rotate(var(--about-tilt))
    scale(var(--about-hover-scale));
  transition: transform 0.36s ease, box-shadow 0.36s ease;
  will-change: transform;
}

.about-portrait-card:hover {
  --about-hover-y: -6px;
  --about-hover-scale: 1.02;
  box-shadow: 0 20px 36px rgba(89, 34, 14, 0.26);
}

.about-portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-copy {
  padding: clamp(4px, 1.3vw, 14px) 0;
  background: transparent;
}

.about-copy h2 {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 4.5vw, 4rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.about-copy p {
  color: var(--ink);
  max-width: 58ch;
  margin: 0 0 16px;
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.55;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.form-wrap {
  display: grid;
  gap: 14px;
  background: #fff7f0;
  border: 1px solid rgba(166, 101, 78, 0.22);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 40px);
  box-shadow: var(--shadow-soft);
}

.form-wrap h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.9rem;
  line-height: 1;
}

.form-wrap p {
  margin: 0;
  color: var(--muted);
}

.form-grid {
  display: grid;
  gap: 12px;
}

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

input,
textarea {
  width: 100%;
  border: 1px solid rgba(217, 152, 115, 0.45);
  background: #fffdfb;
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--ink);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button,
.btn {
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff8f2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

button:hover,
.btn:hover {
  transform: translateY(-1px);
  opacity: 0.94;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.notice {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

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

.location-card {
  background: #fff7f0;
  border: 1px solid rgba(166, 101, 78, 0.22);
  border-radius: var(--radius-md);
  padding: 18px;
}

.location-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 1.45rem;
}

.location-card p {
  margin: 0 0 6px;
}

.map-frame {
  width: 100%;
  border: 0;
  border-radius: var(--radius-lg);
  min-height: 420px;
  box-shadow: var(--shadow-soft);
}

.location-card .map-frame {
  min-height: 260px;
  margin-top: 12px;
}

.insta-embed {
  border: 1px solid rgba(166, 101, 78, 0.22);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.insta-embed iframe {
  width: 100%;
  min-height: 930px;
  border: 0;
}

.insta-posts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.insta-post-card {
  background: #fff7f0;
  border: 1px solid rgba(166, 101, 78, 0.24);
  border-radius: 24px;
  padding: 14px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.insta-post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(89, 34, 14, 0.16);
}

.insta-posts .instagram-media {
  margin: 0 !important;
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  border-radius: 16px !important;
  overflow: hidden !important;
}

.gallery-hero {
  margin-top: 80px;
}

.locations-intro-block p {
  margin: 0 0 12px;
  max-width: 58ch;
  font-size: clamp(1.16rem, 1.8vw, 1.34rem);
  line-height: 1.52;
}

.locations-stockists-head {
  margin-bottom: 8px;
}

.locations-stockists-lead {
  margin: 0 0 24px;
  font-size: clamp(1.16rem, 1.8vw, 1.34rem);
  line-height: 1.52;
  color: var(--muted);
}

.gallery-grid {
  margin-top: 26px;
  columns: 3 280px;
  column-gap: 12px;
}

.gallery-grid img {
  border-radius: 14px;
  margin-bottom: 12px;
  break-inside: avoid;
}

.site-footer {
  margin-top: 90px;
  padding: 40px 0 34px;
  border-top: 1px solid rgba(217, 152, 115, 0.45);
  background: linear-gradient(180deg, rgba(255, 242, 233, 0.68), rgba(247, 226, 212, 0.82));
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 22px;
  align-items: start;
}

.footer-newsletter {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  width: min(520px, 100%);
  background: rgba(255, 248, 243, 0.7);
  border: 1px solid rgba(166, 101, 78, 0.22);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.footer-newsletter h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1;
}

.footer-newsletter p {
  margin: 0 0 14px;
}

.footer-news-form {
  display: grid;
  gap: 10px;
}

.footer-news-form input {
  width: 100%;
}

.footer-news-form .notice {
  margin-top: 2px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
  grid-column: 1;
  grid-row: 1;
  align-self: stretch;
}

.footer-brand h4 {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  color: var(--ink);
  font-size: 1.25rem;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.footer-menu a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.footer-menu a:hover {
  color: var(--ink);
}

.footer-brand p {
  margin: 0;
}

.footer-brand p:last-child {
  margin-top: auto;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].shown {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero-portrait {
    transition: none;
  }

  .hero-portrait img {
    animation: none;
  }

  .hero-marquee-track {
    animation: none;
  }

  .about-portrait-card {
    transition: none;
  }
}

@media (max-width: 940px) {
  .about {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .locations-grid,
  .insta-posts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav {
    gap: 8px;
    font-size: 0.98rem;
    padding: 8px 12px;
  }

  .nav a {
    padding: 7px 10px;
  }

  .hero-top {
    gap: 20px;
  }

  .hero-meta {
    justify-items: center;
    max-width: 52ch;
  }

  .hero-word {
    font-size: clamp(2.8rem, 12vw, 5.2rem);
  }

  .hero-name-inline {
    display: inline-grid;
    grid-template-columns: auto auto;
    grid-template-areas:
      "left amp"
      "right right";
    align-items: baseline;
    column-gap: 10px;
    row-gap: 2px;
    padding-right: 84px;
  }

  .hero-word-left { grid-area: left; }

  .hero-word-amp { grid-area: amp; }

  .hero-word-right { grid-area: right; }

  .hero-portrait {
    width: clamp(82px, 14vw, 108px);
    left: calc(100% + 2px);
    top: 64%;
  }

  .hero-marquee-item {
    width: clamp(180px, 26vw, 240px);
  }

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

  .footer-newsletter { justify-self: stretch; }
}

@media (max-width: 620px) {
  .section {
    margin-top: 78px;
  }

  .feature-grid,
  .locations-grid,
  .insta-posts,
  .form-row {
    grid-template-columns: 1fr;
  }

  .feature-card {
    height: auto;
  }

  .site-header .container {
    min-height: 64px;
  }

  .nav {
    width: min(100%, 420px);
    gap: 6px;
    padding: 8px 10px;
    font-size: 0.94rem;
  }

  .nav a {
    padding: 6px 9px;
  }

  .logo {
    font-size: 1.2rem;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-stage {
    gap: 26px;
    padding-top: 24px;
    padding-bottom: 28px;
  }

  .hero-word {
    font-size: clamp(2.2rem, 13vw, 3.3rem);
  }

  .hero-name-inline {
    display: block;
    padding-right: 70px;
  }

  .hero-portrait {
    width: clamp(74px, 21vw, 92px);
    left: calc(100% + 2px);
    right: auto;
    top: -14px;
  }

  .hero-subtitle {
    font-size: 1.06rem;
  }

  .hero-marquee-track {
    gap: 12px;
  }

  .hero-marquee-item {
    width: 170px;
    border-radius: 18px;
  }

  .site-footer {
    margin-top: 72px;
    padding-top: 28px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-newsletter {
    grid-column: 1;
    grid-row: 1;
  }

  .footer-brand {
    grid-column: 1;
    grid-row: 2;
  }

  .insta-embed iframe {
    min-height: 760px;
  }

  .about-section + #contact.section {
    margin-top: 112px;
  }
}
