:root {
  --ink: #24120d;
  --muted: #786b61;
  --paper: #fffdf8;
  --soft: #f4f1eb;
  --line: rgba(36, 18, 13, 0.13);
  --brown: #4a2c20;
  --clay: #ad6145;
  --navy: #0f2741;
  --shadow: 0 24px 70px rgba(34, 20, 14, 0.18);
  --header-h: 64px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

body.locked {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--paper);
  padding: 8px 12px;
  border: 1px solid var(--line);
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 35;
  height: 32px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(244, 241, 235, 0.78);
  backdrop-filter: blur(12px);
  white-space: nowrap;
}

.marquee {
  display: inline-flex;
  gap: 28px;
  min-width: 200%;
  height: 100%;
  align-items: center;
  animation: ticker 28s linear infinite;
  font-size: 13px;
}

.marquee span::after {
  content: "·";
  margin-left: 28px;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.site-header {
  --logo-progress: 0;
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 34;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 220px 1fr 1.5fr auto;
  align-items: center;
  padding: 0 16px;
  color: #fff;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  left: 16px;
  top: calc(var(--header-h) + 24px);
  z-index: -1;
  width: min(96vw, 1880px);
  aspect-ratio: 1742 / 643;
  pointer-events: none;
  background: url("assets/images/logo_AcorCompany_horz72dpi.webp") left top / contain no-repeat;
  opacity: calc(1 - var(--logo-progress));
  transform: translate3d(
      calc(var(--logo-progress) * -14px),
      calc(var(--logo-progress) * -70px),
      0
    )
    scale(calc(1 - var(--logo-progress) * 0.88));
  transform-origin: left top;
  transition: opacity 0.08s linear;
  will-change: opacity, transform;
}

.site-header.scrolled,
.site-header.searching,
.site-header.menu-open {
  background: #1B0F0C;
  color: rgba(255, 253, 248, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 31px);
  letter-spacing: -0.02em;
}

.site-header > .brand {
  display: inline-flex;
  align-items: center;
  width: clamp(140px, 12vw, 176px);
}

.site-header > .brand img {
  width: 100%;
  height: auto;
}

.site-header > .brand {
  opacity: var(--logo-progress);
  transition: opacity 0.08s linear;
}

.site-header.scrolled > .brand,
.site-header.searching > .brand,
.site-header.menu-open > .brand {
  opacity: 1;
}

.site-header.searching::before,
.site-header.menu-open::before {
  opacity: 0;
}

.site-header nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
}

.site-header a,
.text-action {
  position: relative;
  background: none;
  border: 0;
  padding: 6px 0;
  cursor: pointer;
  font-size: 16px;
 
}

.site-header nav a::after,
.text-action::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 0.2s ease;
}

.site-header nav a:hover::after,
.text-action:hover::after {
  transform: scaleX(1);
}

.nav-left {
  justify-content: center;
}

.nav-center {
  justify-content: center;
}

.header-actions {
  justify-content: flex-end;
  gap: 14px;
}

[data-open-wishlist],
[data-open-cart],
.wish,
.ecommerce-drawer {
  display: none !important;
}

.icon-button {
  position: relative;
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.icon-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-button span:not(.badge) {
  width: 20px;
  height: 1px;
  background: currentColor;
  margin: 3px 0;
}

.badge {
  position: absolute;
  right: -3px;
  top: 1px;
  min-width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brown);
  color: #fff;
  font-size: 10px;
}

.mobile-only {
  display: none;
}

.mega-menu {
  position: fixed;
  top: calc(32px + var(--header-h));
  left: 0;
  right: 0;
  z-index: 31;
  display: grid;
  grid-template-columns: 1fr 1fr minmax(260px, 360px);
  gap: 38px;
  padding: 24px 18px 28px;
  background: rgba(255, 253, 248, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateY(-14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.mega-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mega-menu a {
  display: block;
  width: max-content;
  margin: 12px 0;
  font-size: 22px;
}

.eyebrow,
.section-head p,
.hero-copy p,
.collection-panel p,
.member-band p {
  margin: 0 0 10px;
  font-size: 12px;
  text-transform: uppercase;
  color: currentColor;
}

.mega-feature {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.mega-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mega-feature span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  color: #fff;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #15100e;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 9, 6, 0.38), rgba(15, 9, 6, 0.04) 55%, rgba(15, 9, 6, 0.14));
}

.hero-copy {
  position: absolute;
  left: 16px;
  bottom: 58px;
  z-index: 2;
  color: #fff;
}

.hero-copy h1 {
  margin: 0 0 24px;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.88;
   letter-spacing: 0.04em; 
  font-family: 'Kokomo Breeze' !important;
  font-weight: 400;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 118px;
  padding: 0 21px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.pill:hover {
  transform: translateY(-2px);
  background: #fff;
  color: var(--ink);
}

.pill.dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.pill.dark:hover {
  background: var(--paper);
  color: var(--ink);
}

.product-section,
.editors {
  padding: 18px 18px 64px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 44px 0 18px;
}

.section-head h2,
.collection-panel h2,
.member-band h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 76px);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.section-head a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.product-card {
  position: relative;
  min-width: 0;
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1.18;
  overflow: hidden;
  background: var(--soft);
}

.no-image-menu,
.no-image-menu img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

.no-image-menu img {
  pointer-events: none;
}

.product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.55s ease, transform 0.65s ease;
}

.product-img.primary {
  opacity: 1;
}

.product-img.alternate {
  opacity: 0;
}

.product-card:hover .product-img.primary,
.product-card.is-hovered .product-img.primary,
.product-card:focus-within .product-img.primary {
  opacity: 0;
  transform: scale(1.012);
}

.product-card:hover .product-img.alternate,
.product-card.is-hovered .product-img.alternate,
.product-card:focus-within .product-img.alternate {
  opacity: 1;
  transform: scale(1.018);
}

.label {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.82);
  font-size: 12px;
}

.wish {
  position: absolute;
  top: 9px;
  right: 10px;
  z-index: 2;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.68);
  border-radius: 50%;
}

.product-info {
  display: grid;
  gap: 4px;
  padding: 10px 0 0;
}

.product-info h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.05;
  font-weight: 500;
}

.price,
.presentation {
  font-size: 14px;
}

.presentation {
  color: var(--muted);
}

.collection-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0 18px 64px;
}

.collection-panel {
  position: relative;
  min-height: 72svh;
  overflow: hidden;
  background: #ddd;
  color: #fff;
}

.collection-panel img {
  width: 100%;
  height: 100%;
  min-height: 72svh;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.collection-panel:hover img {
  transform: scale(1.035);
}

.collection-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.34));
}

.collection-panel div {
  position: absolute;
  left: 18px;
  bottom: 22px;
  z-index: 2;
}

.story-rail {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 10px;
}

.story {
  min-width: 0;
}

.story-media {
  overflow: hidden;
}

.story img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--soft);
  transition: transform 0.7s ease;
}

.story:hover img {
  transform: scale(1.035);
}

.footer .brand {
  display: inline-flex;
  align-items: center;
  width: min(280px, 100%);
}

.footer .brand img {
  width: 100%;
  height: auto;
}

.story h3 {
  margin: 10px 0 0;
  font-size: clamp(22px, 3vw, 44px);
  letter-spacing: -0.035em;
}

.member-band {
  margin: 0 18px 74px;
  padding: 58px 18px;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.member-band h2 {
  max-width: 900px;
  margin: 0 auto 24px;
}

.footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  padding: 42px 18px 50px;
  background: var(--brown);
  color: #fff;
}

.footer p {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.72);
}

.footer h3 {
  margin: 0 0 12px;
  font-size: 14px;
  text-transform: uppercase;
}

.footer a:not(.brand) {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.8);
}

.modal,
.page-scrim {
  position: fixed;
  inset: 0;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.modal.active,
.page-scrim.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-scrim,
.page-scrim {
  background: rgba(16, 11, 8, 0.55);
  backdrop-filter: blur(6px);
}

.locale-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(92vw, 490px);
  transform: translate(-50%, -50%);
  background: var(--paper);
  box-shadow: var(--shadow);
  text-align: center;
}

.locale-card h2 {
  margin: 30px 20px 20px;
}

.locale-card p,
.locale-card ul {
  margin: 0 auto 16px;
  max-width: 310px;
  text-align: left;
}

.locale-card li {
  margin: 4px 0;
}

.locale-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.locale-fields label {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-right: 1px solid var(--line);
  text-align: left;
}

.locale-fields label:last-child {
  border-right: 0;
}

.locale-fields span {
  font-size: 12px;
}

.locale-fields select {
  width: 100%;
  border: 0;
  background: transparent;
  min-width: 0;
}

.confirm,
.checkout {
  width: 100%;
  min-height: 44px;
  border: 0;
  background: var(--brown);
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
}

.search-panel {
  position: fixed;
  left: 0;
  right: 0;
  top: 32px;
  z-index: 42;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(calc(-100% - 32px));
  transition: transform 0.25s ease;
  box-shadow: var(--shadow);
}

.search-panel.active {
  transform: translateY(0);
}

.search-inner {
  height: calc(var(--header-h) + 42px);
  display: grid;
  grid-template-columns: 28px 1fr 40px;
  align-items: end;
  gap: 12px;
  padding: 0 42px 20px;
}

.search-inner svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.search-inner input {
  width: 100%;
  border: 0;
  outline: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  font-size: 18px;
}

.search-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-height: 58vh;
  overflow: auto;
  padding: 0 18px 18px;
}

.search-results:empty {
  display: none;
}

.drawer,
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 65;
  width: min(440px, 100vw);
  background: var(--paper);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  display: grid;
  grid-template-rows: auto 1fr auto;
  box-shadow: var(--shadow);
}

.drawer.active,
.mobile-menu.active {
  transform: translateX(0);
}

.drawer-head {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
}

.drawer-head h2 {
  margin: 0;
  font-size: 22px;
}

.drawer-body {
  overflow: auto;
  padding: 16px;
}

.drawer-foot {
  border-top: 1px solid var(--line);
  padding: 16px;
}

.drawer-foot div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}

.line-item {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 12px;
  padding: 0 0 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.line-item img {
  width: 88px;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--soft);
}

.line-item h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.line-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.line-item button {
  border: 0;
  background: transparent;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  margin-top: 10px;
}

.qty button {
  width: 28px;
  height: 28px;
  text-decoration: none;
}

.qty span {
  min-width: 30px;
  text-align: center;
}

.contact-drawer {
  width: min(680px, 100vw);
  background: var(--paper);
}

.contact-drawer .drawer-head {
  height: auto;
  align-items: flex-start;
  padding: 36px 36px 6px;
  border-bottom: 0;
}

.contact-drawer .drawer-head h2 {
  max-width: 360px;
  margin: 0;
  color: #1B0F0C;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 0.88;
  text-transform: uppercase;
}

.account-form {
  padding: 28px 36px 40px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.account-form label {
  display: grid;
  gap: 10px;
  margin-bottom: 30px;
}

.account-form label span {
  color: #1B0F0C;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.account-form input,
.account-form select,
.account-form textarea {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(27, 15, 12, 0.42);
  background: transparent;
  color: #1B0F0C;
  padding: 0 14px;
  outline: 0;
}

.account-form textarea {
  min-height: 140px;
  padding-top: 16px;
  resize: vertical;
}

.account-form input::placeholder,
.account-form textarea::placeholder {
  color: rgba(27, 15, 12, 0.24);
}

.account-form .checkout {
  min-height: 54px;
  background: #1B0F0C;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.account-form .checkout:disabled {
  cursor: wait;
  opacity: 0.62;
}

.account-form [data-account-message] {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.mobile-menu {
  left: auto;
  grid-template-rows: auto;
  align-content: start;
}

.mobile-menu a {
  display: block;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 28px;
}

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 48;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  background: var(--brown);
  color: #fff;
  transform: translateY(120%);
  transition: transform 0.25s ease;
  font-size: 12px;
  text-transform: uppercase;
}

.cookie-bar.active {
  transform: translateY(0);
}

.cookie-bar p {
  margin: 0;
}

.cookie-bar a {
  text-decoration: underline;
}

.cookie-bar button {
  border: 0;
  background: transparent;
  color: inherit;
  text-transform: uppercase;
  cursor: pointer;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 80;
  transform: translate(-50%, 40px);
  opacity: 0;
  padding: 12px 16px;
  background: var(--ink);
  color: #fff;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.active {
  opacity: 1;
  transform: translate(-50%, 0);
}

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

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 42px 1fr auto;
  }

  .site-header::before {
    left: 10px;
    top: calc(var(--header-h) + 26px);
    font-size: clamp(58px, 20vw, 150px);
    transform: translate3d(
        calc(var(--logo-progress) * -8px),
        calc(var(--logo-progress) * -56px),
        0
      )
      scale(calc(1 - var(--logo-progress) * 0.82));
  }

  .mobile-only {
    display: inline-grid;
  }

  .nav-left,
  .nav-center {
    display: none !important;
  }

  .brand {
    text-align: center;
  }

  .site-header > .brand {
    opacity: 1;
  }

  .site-header::before {
    opacity: calc((1 - var(--logo-progress)) * 0.88);
  }

  .text-action {
    font-size: 14px;
  }

  .product-grid,
  .search-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-panels,
  .story-rail,
  .footer {
    grid-template-columns: 1fr;
  }

  .collection-panel,
  .collection-panel img {
    min-height: 58svh;
  }

  .mega-menu {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 58px;
  }

  .announcement {
    height: 28px;
  }

  .site-header,
  .search-panel {
    top: 28px;
  }

  .search-panel {
    transform: translateY(calc(-100% - 28px));
  }

  .search-panel.active {
    transform: translateY(0);
  }

  .site-header {
    padding: 0 10px;
  }

  .header-actions {
    gap: 2px;
  }

  .header-actions .icon-button:nth-of-type(1),
  .header-actions .icon-button:nth-of-type(2) {
    display: none;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-copy {
    left: 14px;
    right: 14px;
    bottom: 36px;
  }

  .product-section,
  .editors,
  .collection-panels {
    padding-left: 10px;
    padding-right: 10px;
  }

  .product-grid,
  .search-results {
    gap: 20px 8px;
  }

  .product-info h3 {
    font-size: 14px;
  }

  .locale-fields {
    grid-template-columns: 1fr;
  }

  .locale-fields label {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .search-inner {
    padding: 0 12px 16px;
  }

  .cookie-bar {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
