:root {
  --bg: #fbf7f1;
  --bg-soft: #f3e9df;
  --paper: #fffdf9;
  --paper-strong: #fff8ef;
  --text: #2f2a26;
  --muted: #756b62;
  --line: rgba(72, 54, 42, 0.14);
  --accent: #9d7866;
  --accent-dark: #65473a;
  --accent-soft: #ead4ca;
  --rose: #e8c9c8;
  --sage: #b8b79a;
  --shadow: 0 28px 80px rgba(83, 58, 42, 0.14);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(circle at 18% 7%, rgba(232, 201, 200, 0.42), transparent 30%),
    radial-gradient(circle at 84% 22%, rgba(184, 183, 154, 0.28), transparent 32%),
    var(--bg);
  overflow-x: hidden;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.33;
  background-image:
    linear-gradient(rgba(255,255,255,0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.45) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

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

.section-pad {
  padding: 110px 0;
}

.soft-section {
  background: linear-gradient(180deg, rgba(243, 233, 223, 0.78), rgba(251, 247, 241, 0.86));
  border-block: 1px solid var(--line);
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 50;
  transform: translateX(-50%);
  width: min(100% - 28px, 1220px);
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px 16px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.72);
  box-shadow: 0 18px 55px rgba(69, 46, 30, 0.10);
  backdrop-filter: blur(20px);
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 18px 70px rgba(69, 46, 30, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.brand-logo {
  width: 136px;
  height: auto;
  display: block;
}

.brand-tagline {
  max-width: 112px;
  padding-left: 13px;
  border-left: 1px solid rgba(101, 71, 58, 0.18);
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(101, 71, 58, 0.045);
}

.nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.74);
}

.header-action {
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--accent-dark);
  color: #fffaf3;
  font-size: 13px;
  font-weight: 800;
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--accent-dark);
  cursor: pointer;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #fffaf3;
}

.hero {
  min-height: 100vh;
  padding-top: 158px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
  align-items: center;
  gap: 68px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(54px, 7vw, 104px);
  line-height: 0.88;
  letter-spacing: -0.055em;
}

h1 em,
h2 em {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.hero-lead {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
}

.hero-actions,
.contact-actions,
.showroom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent-dark);
  color: #fffaf3;
  box-shadow: 0 18px 36px rgba(101, 71, 58, 0.22);
}

.btn-secondary {
  border-color: rgba(101, 71, 58, 0.2);
  background: rgba(255, 253, 249, 0.62);
  color: var(--accent-dark);
}

.btn-link {
  padding-inline: 8px;
  color: var(--accent-dark);
  background: transparent;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 42px;
}

.hero-meta span {
  padding: 9px 14px;
  border: 1px solid rgba(101, 71, 58, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.48);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 660px;
}

.image-slot {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(232, 201, 200, 0.34), rgba(184, 183, 154, 0.22)),
    #efe3d6;
}

.image-slot::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: inherit;
  pointer-events: none;
}

.image-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(.22,.61,.36,1);
}

.image-slot:hover img {
  transform: scale(1.035);
}

.hero-photo {
  position: absolute;
  margin: 0;
  box-shadow: var(--shadow);
}

.hero-photo-main {
  inset: 0 5% 8% 15%;
  border-radius: 46% 46% var(--radius-lg) var(--radius-lg);
}

.hero-photo-small {
  left: 0;
  bottom: 0;
  width: 44%;
  height: 44%;
  border: 12px solid var(--bg);
  border-radius: var(--radius-lg);
}

.floating-card {
  position: absolute;
  right: 0;
  bottom: 9%;
  width: 230px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 26px;
  background: rgba(255, 253, 249, 0.74);
  box-shadow: 0 20px 60px rgba(63, 45, 32, 0.14);
  backdrop-filter: blur(18px);
}

.floating-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 25px;
  font-style: italic;
}

.floating-card strong {
  font-size: 15px;
  line-height: 1.35;
}

.intro-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.56);
}

.intro-strip-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  padding: 34px 0;
}

.intro-strip p {
  margin: 0;
  color: var(--accent-dark);
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.1;
}

.intro-strip p + p {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
}

.split-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 72px;
  align-items: start;
}

.section-heading {
  position: sticky;
  top: 128px;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.about-copy > p,
.section-heading > p:not(.eyebrow),
.workshop-content > p,
.delivery-card > p,
.showroom-grid .section-heading > p,
.final-cta p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.about-features {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.about-features article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 8px 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 249, 0.54);
}

.about-features span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
}

.about-features h3,
.product-card h3,
.event-list h3,
.mood-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.12;
}

.about-features p,
.product-card p,
.event-list p,
.mood-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.section-title-row {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}

.section-note {
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.65;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  min-height: 485px;
  display: grid;
  grid-template-rows: 260px 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.72);
  box-shadow: 0 18px 48px rgba(83, 58, 42, 0.08);
  overflow: hidden;
}

.product-card figure {
  margin: 0;
}

.product-card > div {
  padding: 24px;
}

.card-number {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
}

.mood-section {
  background: var(--accent-dark);
  color: #fffaf3;
}

.mood-section .eyebrow,
.mood-section .section-heading > p:not(.eyebrow) {
  color: rgba(255, 250, 243, 0.74);
}

.mood-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(620px, 1.28fr);
  gap: clamp(42px, 5vw, 68px);
  align-items: start;
}

.mood-section .section-heading {
  position: static;
}

.mood-panel {
  display: grid;
  grid-template-columns: minmax(220px, 250px) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.mood-tabs {
  display: grid;
  grid-auto-rows: 66px;
  gap: 10px;
  align-self: stretch;
}

.mood-tab {
  width: 100%;
  height: 66px;
  min-height: 66px;
  max-height: 66px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 22px;
  border: 1px solid rgba(255, 250, 243, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.08);
  color: rgba(255, 250, 243, 0.72);
  font: 800 13px/1.15 var(--sans);
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.mood-tab:hover,
.mood-tab.is-active {
  background: #fffaf3;
  color: var(--accent-dark);
  border-color: #fffaf3;
}

.mood-card {
  min-height: 372px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 3.4vw, 40px);
  border: 1px solid rgba(255, 250, 243, 0.18);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 84% 16%, rgba(232, 201, 200, 0.24), transparent 36%),
    rgba(255, 250, 243, 0.08);
  overflow: hidden;
}

.mood-kicker {
  max-width: 100%;
  margin-bottom: 16px;
  color: rgba(255, 250, 243, 0.68) !important;
  font-family: var(--serif);
  font-size: clamp(22px, 1.75vw, 28px);
  font-style: italic;
  line-height: 1.35;
}

.mood-card h3 {
  max-width: 100%;
  color: #fffaf3;
  font-size: clamp(30px, 2.55vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

.mood-card p:last-child {
  max-width: 100%;
  color: rgba(255, 250, 243, 0.76);
  font-size: 16px;
}

.workshop-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-lg) + 14px);
  background: rgba(255, 253, 249, 0.72);
  box-shadow: var(--shadow);
}

.workshop-media {
  min-height: 600px;
  border-radius: 34px;
}

.workshop-content {
  padding: 28px 34px 28px 0;
}

.soft-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 28px 0 32px;
  list-style: none;
}

.soft-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 700;
}

.soft-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 5px rgba(232, 201, 200, 0.24);
}

.showroom-grid,
.delivery-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: center;
}

.showroom-card,
.delivery-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.74);
  box-shadow: 0 20px 58px rgba(83, 58, 42, 0.08);
}

.address-box {
  display: grid;
  gap: 8px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.address-box span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.address-box strong {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.schedule-toggle {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--accent-dark);
  font: 800 15px/1 var(--sans);
  cursor: pointer;
}

.schedule-toggle span {
  font-size: 24px;
  transition: transform 0.2s ease;
}

.schedule-toggle.is-open span {
  transform: rotate(45deg);
}

.schedule {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.28s ease, opacity 0.2s ease, padding-top 0.28s ease;
}

.schedule.is-open {
  max-height: 150px;
  opacity: 1;
  padding-top: 16px;
}

.schedule p {
  margin: 0;
  padding: 5px 0;
  color: var(--muted);
  font-weight: 700;
}

.showroom-actions {
  margin-top: 24px;
}

.delivery-section {
  padding-top: 70px;
}

.delivery-card h2 {
  max-width: 560px;
}

.delivery-photo {
  height: 620px;
  margin: 0;
  border-radius: 48% 48% var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow);
}

.events-section {
  padding-top: 70px;
}

.event-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.event-list article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 249, 0.58);
}

.event-list span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.final-cta {
  padding: 110px 0;
  background:
    linear-gradient(rgba(47, 42, 38, 0.58), rgba(47, 42, 38, 0.72)),
    url("../img/hands.jpg") center/cover;
  color: #fffaf3;
}

.final-cta-inner {
  max-width: 860px;
  text-align: center;
}

.final-cta .eyebrow,
.final-cta p {
  color: rgba(255, 250, 243, 0.78);
}

.final-cta h2 {
  margin-inline: auto;
}

.contact-actions {
  justify-content: center;
  margin-top: 32px;
}

.final-cta .btn-secondary {
  border-color: rgba(255, 250, 243, 0.36);
  background: rgba(255, 250, 243, 0.12);
  color: #fffaf3;
}

.site-footer {
  padding: 34px 0;
  background: #2f2a26;
  color: rgba(255, 250, 243, 0.78);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.site-footer .brand-logo {
  filter: invert(1) brightness(2.6);
}

.site-footer .brand-tagline {
  border-left-color: rgba(255, 250, 243, 0.2);
  color: rgba(255, 250, 243, 0.62);
}

.site-footer p {
  color: rgba(255, 250, 243, 0.62);
}

.footer-links {
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  font-weight: 800;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav,
  .header-action {
    display: none;
  }

  .burger {
    display: inline-block;
  }

  .nav.is-open {
    position: fixed;
    top: 86px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 6px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 253, 249, 0.96);
    box-shadow: var(--shadow);
  }

  .nav.is-open a {
    padding: 16px 18px;
    font-size: 16px;
  }

  .hero-grid,
  .split-section,
  .mood-grid,
  .workshop-card,
  .showroom-grid,
  .delivery-grid {
    grid-template-columns: 1fr;
  }

  .mood-panel {
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  }

  .hero {
    padding-top: 130px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .section-heading {
    position: static;
  }

  .product-grid,
  .event-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .workshop-content {
    padding: 10px 12px 18px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer .brand {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section-pad {
    padding: 72px 0;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 64px;
    padding: 10px 12px;
  }

  .brand-logo {
    width: 118px;
  }

  .brand-tagline {
    display: none;
  }

  h1 {
    font-size: clamp(50px, 16vw, 76px);
  }

  h2 {
    font-size: clamp(36px, 11vw, 56px);
  }

  .hero-grid {
    gap: 42px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .hero-photo-main {
    inset: 0 0 9% 8%;
  }

  .hero-photo-small {
    width: 48%;
    height: 42%;
    border-width: 8px;
  }

  .floating-card {
    right: 0;
    bottom: 7%;
    width: 190px;
    padding: 18px;
  }

  .intro-strip-inner,
  .section-title-row,
  .mood-panel {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .event-list {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: auto;
    grid-template-rows: 290px 1fr;
  }

  .about-features article {
    grid-template-columns: 1fr;
  }

  .workshop-card {
    padding: 14px;
    border-radius: 34px;
  }

  .workshop-media,
  .delivery-photo {
    min-height: auto;
    height: 430px;
  }

  .showroom-card,
  .delivery-card,
  .mood-card {
    padding: 26px;
  }

  .mood-tabs {
    width: 100%;
    display: flex;
    flex-direction: row;
    grid-template-rows: none;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .mood-tab {
    width: auto;
    min-width: max-content;
    height: 56px;
    min-height: 56px;
    max-height: 56px;
    padding-inline: 18px;
  }

  .mood-card {
    min-height: auto;
    height: auto;
  }

  .mood-card h3 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 430px) {
  .hero-actions,
  .contact-actions,
  .showroom-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-meta span {
    flex: 1 1 45%;
    text-align: center;
  }
}
