:root {
  --bg: #f8f2ea;
  --bg-soft: #f4ece2;
  --panel: rgba(255, 255, 255, 0.72);
  --panel-strong: #efe3d5;
  --line: rgba(90, 64, 43, 0.12);
  --white: #ffffff;
  --text: #35281f;
  --muted: #7a6858;
  --accent: #b98b5d;
  --accent-2: #8b603e;
  --accent-dark: #8b603e;
  --green: #25d366;
  --shadow: 0 24px 60px rgba(54, 39, 25, 0.12);
  --radius: 24px;
  --container: 1240px;
  --transition: 280ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(185, 139, 93, 0.14), transparent 22%),
    radial-gradient(circle at left center, rgba(255, 255, 255, 0.45), transparent 18%),
    linear-gradient(180deg, #fffaf5 0%, #f7efe6 100%);
  color: var(--text);
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 249, 242, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.brand-sub {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  color: var(--muted);
  font-weight: 600;
  padding: 6px 2px;
  transition: color var(--transition);
}

/* underline effect */
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 260ms ease;
}

/* hover + active state */
.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--text);
}

/* animate underline */
.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 100%;
}


.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 18px 40px rgba(139, 94, 52, 0.35);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
}

.menu-toggle {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(185, 139, 93, 0.2);
  background: rgba(255, 255, 255, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
 background: var(--text); /* 🔥 visible */
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}


.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 0 20px 18px;
  border-top: 1px solid var(--line);
  background: rgba(255, 249, 242, 0.97);
}

.mobile-menu a {
  padding: 14px 16px;
  border-radius: 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.65);
}

.mobile-menu a.active {
  color: var(--text);
}

.hero-section {
  padding: 72px 0 88px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 42px;
  align-items: center;
}

.eyebrow,
.mini-label {
  display: inline-block;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
}

.hero-copy h1,
.section-head h2,
.cta-panel h2,
.site-footer h3 {
  font-family: "Playfair Display", serif;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  margin: 14px 0 18px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.96;
  max-width: 10ch;
}

.hero-text {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.03rem;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat-card,
.glass-card,
.showroom-shell,
.spotlight-card,
.review-card,
.cta-panel {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.72);
}

.stat-card {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.stat-card strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent-dark);
  margin-bottom: 6px;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
}

.hero-main-panel {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  min-height: 620px;
}

.hero-main-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.88);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 700;
}

.floating-panel {
  position: absolute;
  right: -24px;
  bottom: 36px;
  width: 280px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 250, 243, 0.92);
}

.floating-panel h3 {
  margin: 12px 0 10px;
  font-size: 1.2rem;
}

.floating-panel p {
  margin: 0;
  color: var(--muted);
}

section {
  padding: 96px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.split-head {
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 24px;
  align-items: end;
}

.section-head h2 {
  margin: 10px 0 0;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
}

.section-head p:last-child {
  margin: 0;
  color: var(--muted);
}

.showroom-shell {
  border-radius: 32px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
}

.showroom-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.tab-btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  color: var(--muted);
  font-weight: 700;
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  border-color: transparent;
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  border-color: transparent;
}

.showroom-panel {
  display: none;
}

.showroom-panel.active {
  display: block;
}

.showroom-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.showroom-image {
  border-radius: 24px;
  overflow: hidden;
  min-height: 520px;
}

.showroom-image img {
  height: 100%;
  object-fit: cover;
}

.showroom-info {
  padding: 12px 6px;
}

.showroom-info h3 {
  margin: 14px 0 14px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.showroom-info p {
  margin: 0 0 18px;
  color: var(--muted);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 10px;
}

.feature-list li {
  color: var(--text);
  padding-left: 18px;
  position: relative;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 20px;
}

.spotlight-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  transition: transform var(--transition), border-color var(--transition);
}

.spotlight-card:hover {
  transform: translateY(-8px);
  border-color: rgba(185, 139, 93, 0.32);
}


.spotlight-image {
  height: 300px;
  overflow: hidden;
}

.large-card .spotlight-image {
  height: 420px;
}

.spotlight-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.spotlight-card:hover .spotlight-image img {
  transform: scale(1.06);
}

.spotlight-content {
  padding: 22px;
}

.spotlight-content h3 {
  margin: 12px 0 10px;
  font-size: 1.32rem;
}

.spotlight-content p {
  margin: 0 0 18px;
  color: var(--muted);
}

.spotlight-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.spotlight-bottom strong {
  color: var(--white);
}

.text-link {
  color: var(--accent);
  font-weight: 800;
}

.reviews-wrap {
  max-width: 980px;
}

.review-slider {
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  gap: 18px;
  align-items: center;
}
.slider-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(185, 139, 93, 0.25);
  background: linear-gradient(135deg, #fffaf3, #f1e3d3);
  color: var(--accent-dark);
  font-size: 1.4rem;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 40px rgba(54, 39, 25, 0.12);
  transition: all 260ms ease;
}
.slider-btn:hover {
  transform: translateY(-3px) scale(1.05);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 24px 60px rgba(54, 39, 25, 0.2);
}

.review-track {
  position: relative;
  min-height: 260px;
}

.review-card {
  display: none;
  padding: 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
}

.review-card.active {
  display: block;
}

.review-stars {
  color: var(--accent);
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}

.review-card p {
  font-size: 1.06rem;
  color: var(--text);
  margin: 0 0 20px;
}

.review-card strong {
  display: block;
  margin-bottom: 4px;
}

.review-card span {
  color: var(--muted);
}

.cta-panel {
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, #fffaf3, #f1e1cf);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-panel h2 {
  margin: 10px 0 10px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.cta-panel p:last-child {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  padding: 34px 0 40px;
  border-top: 1px solid var(--line);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.site-footer h3 {
  margin: 0 0 10px;
  font-size: 2rem;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 600;
}
.floating-whatsapp,
.back-to-top {
  position: fixed;
  right: 18px;
  z-index: 90;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.back-to-top {
  bottom: 80px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
  color: var(--text);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.floating-whatsapp {
  bottom: 18px;
  background: linear-gradient(135deg, #25d366, #1e9f4d);
  color: #fff;
}



.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 1100px) {
  .hero-layout,
  .split-head,
  .showroom-grid,
  .cta-panel {
    display: grid;
    grid-template-columns: 1fr;
  }

  .split-head {
    gap: 16px;
  }

  .spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .large-card {
    grid-column: span 2;
  }

  .floating-panel {
    position: static;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 16px;
  }

  .hero-main-panel {
    min-height: 520px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head h2 {
    line-height: 1.05;
  }

  .cta-panel {
    gap: 20px;
  }
}

@media (max-width: 860px) {
  .desktop-nav,
  .desktop-only {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu.show {
    display: flex;
  }

  .hero-section,
  section {
    padding: 72px 0;
  }

  .nav-wrap,
  .footer-wrap {
    gap: 16px;
  }

  .hero-layout,
  .showroom-grid,
  .spotlight-grid,
  .cta-panel,
  .footer-wrap {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .large-card {
    grid-column: auto;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .hero-main-panel {
    min-height: 420px;
  }

  .showroom-image {
    min-height: 360px;
  }

  .showroom-tabs {
    gap: 10px;
  }

  .review-slider {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }

  .review-track {
    order: 1;
    min-height: auto;
  }

  .slider-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.3rem;
    flex: 0 0 auto;
  }

  #prevReview {
    order: 2;
    align-self: flex-start;
  }

  #nextReview {
    order: 2;
    align-self: flex-end;
    margin-top: -52px;
  }

  .cta-actions {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .site-header {
    padding: 0;
  }

  .nav-wrap {
    min-height: 74px;
    gap: 12px;
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    flex-shrink: 0;
    overflow: hidden;
  }

  .brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-name {
    font-size: 1.05rem;
    line-height: 1.1;
  }

  .brand-sub {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
    max-width: 100%;
  }

  .hero-text {
    font-size: 0.96rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .stat-card strong {
    font-size: 2rem;
  }

  .hero-main-panel {
    min-height: 300px;
    border-radius: 22px;
  }

  .showroom-shell,
  .review-card,
  .spotlight-content,
  .cta-panel {
    padding: 18px;
  }

  .showroom-image {
    min-height: 250px;
  }

  .showroom-info h3 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .spotlight-image,
  .large-card .spotlight-image {
    height: 220px;
  }

  .spotlight-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .reviews-wrap {
    max-width: 100%;
  }

  .review-slider {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }

  .review-track {
    order: 1;
    min-height: auto;
  }

  .review-card {
    border-radius: 22px;
  }

  .review-card p {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .slider-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.3rem;
  }

  #prevReview {
    order: 2;
    align-self: flex-start;
  }

  #nextReview {
    order: 2;
    align-self: flex-end;
    margin-top: -52px;
  }

  .footer-links {
    gap: 12px;
  }

  .floating-whatsapp,
  .back-to-top {
    right: 12px;
    min-height: 46px;
    padding: 0 14px;
    font-size: 0.85rem;
  }

  .floating-whatsapp {
    bottom: 14px;
  }

  .back-to-top {
    bottom: 68px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(var(--container), calc(100% - 16px));
  }

  .site-header {
    backdrop-filter: blur(10px);
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-sub {
    display: none;
  }

  .hero-section,
  section {
    padding: 56px 0;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .hero-text,
  .section-head p:last-child,
  .showroom-info p,
  .spotlight-content p,
  .review-card p,
  .cta-panel p:last-child {
    font-size: 0.92rem;
  }

  .section-head h2,
  .cta-panel h2 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .stat-card,
  .showroom-shell,
  .review-card,
  .spotlight-content,
  .cta-panel {
    padding: 16px;
  }

  .stat-card strong {
    font-size: 1.8rem;
  }

  .hero-main-panel {
    min-height: 260px;
  }

  .showroom-image {
    min-height: 220px;
  }

  .spotlight-image,
  .large-card .spotlight-image {
    height: 210px;
  }

  .panel-badge {
    left: 14px;
    bottom: 14px;
    padding: 8px 12px;
    font-size: 0.78rem;
  }

  .floating-whatsapp,
  .back-to-top {
    right: 10px;
    font-size: 0.82rem;
  }
}

.hidden {
  display: none !important;
}

body.notice-open {
  overflow: hidden;
  touch-action: none;
}

.notice-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(30, 22, 16, 0.42);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 300ms ease;
}

.notice-overlay:not(.hidden) {
  opacity: 1;
}

.notice-box {
  width: min(100%, 560px);
  position: relative;
  padding: 42px 34px 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, #fffaf5 0%, #f5e9dc 100%);
  border: 1px solid rgba(185, 139, 93, 0.22);
  box-shadow: 0 30px 80px rgba(54, 39, 25, 0.2);
  text-align: center;
  overflow: hidden;
  transform: translateY(30px) scale(0.96);
  opacity: 0;
  transition: transform 320ms ease, opacity 320ms ease;
}

.notice-overlay:not(.hidden) .notice-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.notice-box::before {
  content: "";
  position: absolute;
  inset: auto -10% -18% auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(185, 139, 93, 0.12), transparent 65%);
  pointer-events: none;
}

.notice-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(185, 139, 93, 0.08), transparent 60%);
  pointer-events: none;
}

.notice-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.notice-box h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  color: var(--text);
}

.notice-box p {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
}

.notice-highlight {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(185, 139, 93, 0.18);
  color: var(--accent-2);
  font-weight: 700;
}

.notice-footer {
  position: relative;
  z-index: 1;
  color: var(--muted) !important;
  margin-bottom: 22px !important;
}

.notice-btn {
  position: relative;
  z-index: 1;
  min-height: 52px;
  width: 100%;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(139, 96, 62, 0.24);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.notice-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(139, 96, 62, 0.28);
}

.notice-btn:active {
  transform: scale(0.97);
}

.notice-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(185, 139, 93, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 220ms ease, background 220ms ease;
}

.notice-close:hover {
  background: #fff;
  transform: rotate(90deg) scale(1.05);
}

@media (max-width: 640px) {
  .notice-overlay {
    padding: 16px;
  }

  .notice-box {
    padding: 34px 18px 20px;
    border-radius: 22px;
  }

  .notice-box h2 {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
  }

  .notice-box p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .notice-highlight {
    padding: 12px 14px;
    border-radius: 16px;
  }

  .notice-btn {
    min-height: 48px;
  }

  .notice-close {
    width: 36px;
    height: 36px;
    top: 12px;
    right: 12px;
  }
}

@media (max-height: 600px) {
  .notice-overlay {
    align-items: flex-start;
    padding-top: 40px;
  }
}

@media (max-width: 480px) {
  .notice-box {
    padding: 28px 16px 18px;
  }

  .notice-box p,
  .notice-highlight {
    font-size: 0.92rem;
  }
}

.menu-toggle {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 1px solid rgba(185, 139, 93, 0.25);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
  cursor: pointer;
}


.menu-toggle span {
  width: 20px;
  height: 1px;
  background: #2b2b2b; /* visible dark color */
  border-radius: 2px;
  display: block;
  transition: all 0.3s ease;
}

:root {
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 251, 245, 0.9);
  --surface-soft: rgba(255, 255, 255, 0.52);
  --shadow-soft: 0 18px 40px rgba(54, 39, 25, 0.08);
  --shadow-strong: 0 32px 80px rgba(54, 39, 25, 0.14);
  --transition-smooth: 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  background: #fffaf5;
}

body {
  min-height: 100vh;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-ready {
  opacity: 1;
  transform: none;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  filter: blur(10px);
}

body::before {
  top: 96px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(185, 139, 93, 0.16), transparent 68%);
}

body::after {
  left: -140px;
  bottom: 8%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6), transparent 72%);
}

.site-header {
  transition: background var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth), transform var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(255, 250, 244, 0.94);
  box-shadow: 0 18px 44px rgba(54, 39, 25, 0.08);
}

.brand-mark {
  overflow: hidden;
  background: linear-gradient(135deg, rgba(185, 139, 93, 0.94), rgba(139, 96, 62, 0.94));
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a::after {
  transition: width var(--transition-smooth);
}

.btn,
.filter-chip,
.tab-btn,
.slider-btn,
.mini-pill-button,
.product-card-shop,
.about-card,
.about-info-card,
.about-value-card,
.about-social-card,
.about-cta-box,
.contact-card,
.contact-side-card,
.social-card,
.info-card,
.faq-card,
.contact-cta,
.shop-top-tools-wrap,
.stat-card,
.spotlight-card,
.review-card,
.cta-panel {
  transition:
    transform var(--transition-smooth),
    box-shadow var(--transition-smooth),
    border-color var(--transition-smooth),
    background var(--transition-smooth),
    opacity var(--transition-smooth);
}

.btn:hover,
.filter-chip:hover,
.tab-btn:hover,
.mini-pill-button:hover {
  transform: translateY(-3px);
}

.btn-primary:hover {
  box-shadow: 0 24px 50px rgba(139, 94, 52, 0.32);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.86);
}

.menu-toggle {
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-smooth), background var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.menu-toggle:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  transition: transform var(--transition-smooth), opacity 240ms ease, background var(--transition-smooth);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
  display: flex;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: max-height var(--transition-smooth), opacity var(--transition-smooth), transform var(--transition-smooth), padding var(--transition-smooth);
}

.mobile-menu.show {
  max-height: 360px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu a {
  transition: transform var(--transition-smooth), background var(--transition-smooth), color var(--transition-smooth);
}

.mobile-menu a:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
}

main {
  position: relative;
  z-index: 1;
}

section {
  scroll-margin-top: 110px;
}

.hero-section {
  padding-top: 82px;
}

.hero-layout,
body .about-hero-wrap,
body .contact-hero-wrap,
body .shop-hero-wrap {
  gap: clamp(26px, 4vw, 54px);
  align-items: stretch;
}

.hero-copy,
body .about-hero-copy,
body .contact-hero-copy,
body .shop-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy h1,
body .about-hero-copy h1,
body .contact-hero-copy h1,
body .shop-hero-copy h1 {
  max-width: 10.5ch;
  margin-bottom: 20px;
}

.hero-text,
body .about-hero-copy p,
body .contact-hero-copy p,
body .shop-hero-copy p {
  font-size: 1rem;
  line-height: 1.8;
}

.hero-main-panel,
body .about-hero-card,
body .contact-hero-card,
body .shop-hero-card {
  position: relative;
  isolation: isolate;
  min-height: clamp(340px, 52vw, 620px);
  border-radius: 34px;
  background: var(--surface-strong);
  box-shadow: var(--shadow-strong);
}

.hero-main-panel::after,
body .about-hero-card::after,
body .contact-hero-card::after,
body .shop-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(32, 22, 15, 0.2) 100%);
  opacity: 0.8;
  pointer-events: none;
}

.hero-main-panel img,
body .about-hero-card img,
body .contact-hero-card img,
body .shop-hero-card img {
  height: 100%;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-main-panel:hover img,
body .about-hero-card:hover img,
body .contact-hero-card:hover img,
body .shop-hero-card:hover img {
  transform: scale(1.04);
}

.panel-badge,
body .about-hero-badge,
body .contact-hero-badge,
body .shop-hero-badge {
  z-index: 1;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.floating-panel {
  box-shadow: var(--shadow-strong);
}

.stat-card,
.showroom-shell,
.spotlight-card,
.review-card,
.cta-panel,
body .about-card,
body .about-info-card,
body .about-value-card,
body .about-social-card,
body .about-cta-box,
body .contact-card,
body .contact-side-card,
body .social-card,
body .info-card,
body .faq-card,
body .contact-cta,
body .shop-top-tools-wrap {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 249, 242, 0.72));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.stat-card:hover,
.spotlight-card:hover,
.review-card:hover,
body .about-card:hover,
body .about-info-card:hover,
body .about-value-card:hover,
body .about-social-card:hover,
body .contact-card:hover,
body .contact-side-card:hover,
body .social-card:hover,
body .info-card:hover,
body .faq-card:hover,
body .product-card-shop:hover {
  box-shadow: var(--shadow-strong);
}

.showroom-shell {
  padding: clamp(20px, 2.8vw, 30px);
}

.showroom-tabs {
  margin-bottom: 28px;
}

.tab-btn {
  box-shadow: 0 10px 24px rgba(54, 39, 25, 0.06);
}

.showroom-panels,
.review-track {
  display: grid;
}

.showroom-panel,
.review-card {
  grid-area: 1 / 1;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.985);
  pointer-events: none;
}

.showroom-panel.active,
.review-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.showroom-image,
.spotlight-image,
.product-media {
  position: relative;
}

.showroom-image::after,
.spotlight-image::after,
.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(30, 21, 14, 0.08) 100%);
  pointer-events: none;
}

.spotlight-bottom strong,
.product-price,
.cart-row-price,
.summary-total strong,
.tracking-order-code {
  color: var(--text);
}

.text-link {
  position: relative;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}

.text-link:hover::after {
  transform: scaleX(1);
}

.review-slider {
  gap: 22px;
}

.review-track {
  min-height: 300px;
}

.cta-panel,
body .about-cta-box,
body .contact-cta {
  gap: 26px;
  border-radius: 32px;
  box-shadow: var(--shadow-strong);
}

.site-footer {
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.24), rgba(255, 250, 244, 0.8));
}

.footer-links a {
  transition: color var(--transition-smooth), transform var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--text);
  transform: translateY(-2px);
}

.floating-whatsapp,
.back-to-top {
  transition: opacity var(--transition-smooth), transform var(--transition-smooth), box-shadow var(--transition-smooth), background var(--transition-smooth);
}

.floating-whatsapp:hover,
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.reveal-block {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 720ms ease, transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

body.shop-page .reveal-block,
body.shop-page .shop-top-tools-wrap,
body.shop-page .shop-results,
body.shop-page .collection-grid,
body.shop-page .product-card-shop {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

body .about-page,
body .contact-page,
body .shop-page {
  padding-bottom: 100px;
}

body .about-hero,
body .contact-hero,
body .shop-hero {
  padding: 82px 0 34px;
}

body .about-story,
body .contact-main,
body .shop-top-tools,
body .shop-results {
  position: relative;
}

body .about-story-grid,
body .contact-grid,
body .shop-top-tools-wrap,
body .shop-info-bar {
  gap: 24px;
}

body .about-card,
body .about-info-card,
body .about-value-card,
body .about-social-card,
body .about-cta-box,
body .contact-card,
body .contact-side-card,
body .social-card,
body .info-card,
body .faq-card,
body .contact-cta {
  border-radius: 30px;
}

body .about-card,
body .contact-card {
  padding: 28px;
}

body .about-side-stack,
body .contact-stack {
  gap: 22px;
}

body .about-values,
body .about-socials,
body .social-grid,
body .info-grid,
body .faq-grid {
  margin-top: 26px;
  gap: 22px;
}

body .about-stat {
  border-radius: 24px;
}

body .contact-item {
  align-items: center;
}

body .shop-top-tools-wrap {
  padding: 26px;
}

body .collection-grid {
  gap: 22px;
}

body .product-card-shop {
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 244, 236, 0.88));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

body .product-body {
  padding: 22px;
}

body .product-tag {
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

body .shop-search,
body .shop-sort,
body .track-input,
body .checkout-input,
body .checkout-select,
body .checkout-textarea,
body .contact-input,
body .contact-select,
body .contact-textarea {
  transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth), background var(--transition-smooth), transform var(--transition-smooth);
}

body .shop-search:hover,
body .shop-sort:hover,
body .track-input:hover,
body .checkout-input:hover,
body .checkout-select:hover,
body .checkout-textarea:hover,
body .contact-input:hover,
body .contact-select:hover,
body .contact-textarea:hover {
  background: #fff;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body,
  .reveal-block,
  .btn,
  .filter-chip,
  .tab-btn,
  .slider-btn,
  .mini-pill-button,
  .product-card-shop,
  .spotlight-card,
  .review-card,
  .showroom-panel,
  .mobile-menu,
  .hero-main-panel img,
  body .about-hero-card img,
  body .contact-hero-card img,
  body .shop-hero-card img {
    transition: none !important;
    animation: none !important;
  }

  .reveal-block {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 1100px) {
  body .about-hero-wrap,
  body .contact-hero-wrap,
  body .shop-hero-wrap {
    grid-template-columns: 1fr;
  }

  body .shop-top-tools-wrap,
  body .shop-info-bar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .mobile-menu {
    padding-left: 20px;
    padding-right: 20px;
  }

  .mobile-menu.show {
    padding-bottom: 18px;
  }

  .showroom-panel,
  .review-card {
    transform: none;
  }

  .review-track {
    min-height: 260px;
  }

  body .about-card,
  body .contact-card,
  body .shop-top-tools-wrap {
    padding: 22px;
  }
}

@media (max-width: 640px) {
  body::before,
  body::after {
    display: none;
  }

  .hero-section,
  body .about-hero,
  body .contact-hero,
  body .shop-hero,
  section {
    padding-top: 64px;
  }

  .hero-main-panel,
  body .about-hero-card,
  body .contact-hero-card,
  body .shop-hero-card {
    min-height: 300px;
    border-radius: 24px;
  }

  .cta-panel,
  body .about-cta-box,
  body .contact-cta {
    border-radius: 26px;
  }

  .review-track {
    min-height: 240px;
  }
}

:root {
  --bg: #f5efe8;
  --bg-soft: #efe6dc;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #fffaf5;
  --line: rgba(76, 57, 39, 0.12);
  --text: #2f241d;
  --muted: #756252;
  --accent: #a77749;
  --accent-2: #7c5636;
  --shadow-soft: 0 18px 40px rgba(53, 36, 24, 0.08);
  --shadow-strong: 0 28px 60px rgba(53, 36, 24, 0.14);
}

body {
  background:
    radial-gradient(circle at top left, rgba(167, 119, 73, 0.08), transparent 24%),
    linear-gradient(180deg, #fcf8f3 0%, #f4ece3 100%);
  color: var(--text);
}

section {
  padding: 72px 0;
}

.site-header {
  background: rgba(252, 248, 243, 0.88);
  border-bottom: 1px solid rgba(76, 57, 39, 0.08);
}

.brand-mark {
  overflow: hidden;
  padding: 0;
  background: linear-gradient(135deg, #f4e3d0, #d8bb99);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-layout-clean,
.about-hero-wrap,
.contact-hero-wrap,
.shop-hero-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.hero-copy,
.about-hero-copy,
.contact-hero-copy,
.shop-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-copy h1,
.about-hero-copy h1,
.contact-hero-copy h1,
.shop-hero-copy h1 {
  margin: 0;
  max-width: 12ch;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-text,
.about-hero-copy p,
.contact-hero-copy p,
.shop-hero-copy p {
  margin: 0;
  max-width: 60ch;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-chip,
.status-pill,
.mini-pill,
.mini-pill-button {
  border-radius: 999px;
  border: 1px solid rgba(76, 57, 39, 0.1);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  box-shadow: none;
}

.hero-chip {
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-main-panel,
.about-hero-card,
.contact-hero-card,
.shop-hero-card,
.category-card,
.about-card,
.about-info-card,
.about-value-card,
.about-social-card,
.about-cta-box,
.contact-card,
.contact-side-card,
.social-card,
.info-card,
.faq-card,
.shop-panel,
.product-card-shop,
.spotlight-card,
.cta-panel,
.editorial-note,
.trust-item,
.process-card,
.contact-quick-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 243, 236, 0.92));
  box-shadow: var(--shadow-soft);
}

.hero-main-panel,
.about-hero-card,
.contact-hero-card,
.shop-hero-card {
  min-height: 420px;
  overflow: hidden;
  border-radius: 32px;
}

.hero-main-panel img,
.about-hero-card img,
.contact-hero-card img,
.shop-hero-card img,
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-panel,
.panel-badge,
.about-hero-badge,
.contact-hero-badge,
.shop-hero-badge {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(47, 36, 29, 0.74);
  color: #fff;
}

.trust-strip-section {
  padding-top: 0;
}

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

.trust-item,
.process-card,
.contact-quick-card {
  padding: 24px;
  border-radius: 24px;
}

.trust-item strong,
.process-card strong,
.contact-quick-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.trust-item span,
.process-card span,
.contact-quick-card span {
  color: var(--muted);
  line-height: 1.7;
}

.home-section {
  padding-top: 44px;
}

.home-section-soft {
  padding: 28px 0 72px;
}

.align-end {
  align-items: end;
}

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

.category-card {
  overflow: hidden;
  border-radius: 28px;
}

.category-card img {
  height: 260px;
}

.category-card-body {
  padding: 24px;
}

.category-card-body h3,
.editorial-copy h2,
.about-card h2,
.contact-card h2,
.section-head h2 {
  margin: 8px 0 12px;
  letter-spacing: -0.03em;
}

.category-card-body p,
.editorial-copy p,
.editorial-note li,
.contact-card p,
.about-card p,
.about-info-card p,
.about-value-card p,
.about-social-card p,
.info-card p,
.faq-card p,
.shop-panel p {
  color: var(--muted);
  line-height: 1.8;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 24px;
}

.editorial-note {
  height: 100%;
  padding: 28px;
  border-radius: 28px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.section-head {
  margin-bottom: 28px;
}

.section-head.center {
  text-align: center;
}

.split-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.text-link {
  color: var(--accent-2);
  font-weight: 700;
}

.spotlight-grid,
.about-values,
.about-socials,
.info-grid,
.faq-grid {
  gap: 22px;
}

.spotlight-card,
.about-value-card,
.about-social-card,
.info-card,
.faq-card {
  border-radius: 28px;
}

.spotlight-content,
.about-value-card,
.about-social-card,
.info-card,
.faq-card {
  padding: 24px;
}

.about-story-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.9fr);
  gap: 24px;
}

.about-side-stack,
.contact-stack {
  display: grid;
  gap: 18px;
}

.about-card,
.contact-card,
.contact-side-card,
.about-info-card {
  padding: 28px;
  border-radius: 28px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.about-stat {
  padding: 18px;
  border-radius: 20px;
  background: rgba(167, 119, 73, 0.08);
}

.about-stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.contact-form,
.form-grid,
.contact-actions,
.about-cta-actions {
  display: grid;
  gap: 14px;
}

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

.contact-input,
.contact-select,
.contact-textarea {
  min-height: 54px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
}

.contact-textarea {
  min-height: 160px;
  padding: 16px;
  resize: vertical;
}

.contact-message {
  display: none;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(51, 140, 92, 0.12);
  color: #24573d;
}

.contact-item {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item:last-child {
  border-bottom: 0;
}

.shop-top-tools-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
  padding: 26px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 241, 233, 0.92));
  box-shadow: var(--shadow-soft);
}

.search-row {
  grid-template-columns: minmax(0, 1.15fr) 180px 180px auto;
  align-items: center;
}

.filter-chip,
.shop-sort,
.shop-search,
.track-input,
.checkout-input,
.checkout-select,
.checkout-textarea,
.toolbar-button {
  border-color: var(--line);
  border-radius: 16px;
}

.toolbar-button {
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.shop-info-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.shop-meta-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.shop-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 26px;
}

.highlight-card {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.highlight-card strong {
  display: block;
  margin-bottom: 6px;
}

.highlight-card span {
  color: var(--muted);
  line-height: 1.6;
}

.product-card-shop {
  border-radius: 26px;
}

.product-body {
  padding: 22px;
}

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

.shop-panels {
  margin-top: 32px;
}

.site-footer {
  background: rgba(255, 250, 245, 0.78);
}

.footer-wrap {
  align-items: center;
}

.floating-whatsapp,
.back-to-top {
  box-shadow: var(--shadow-soft);
}

@media (max-width: 1100px) {
  .search-row,
  .category-grid,
  .contact-quick-grid,
  .trust-strip,
  .process-grid,
  .shop-highlights,
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-layout-clean,
  .about-story-grid,
  .contact-grid,
  .editorial-grid,
  .about-hero-wrap,
  .contact-hero-wrap,
  .shop-hero-wrap,
  .shop-top-tools-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  section,
  .hero-section,
  .about-hero,
  .contact-hero,
  .shop-hero {
    padding: 56px 0;
  }

  .hero-copy h1,
  .about-hero-copy h1,
  .contact-hero-copy h1,
  .shop-hero-copy h1 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
    max-width: none;
  }

  .search-row,
  .category-grid,
  .contact-quick-grid,
  .trust-strip,
  .process-grid,
  .shop-highlights,
  .about-stats,
  .form-grid,
  .product-actions {
    grid-template-columns: 1fr;
  }

  .split-head,
  .shop-info-bar,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-main-panel,
  .about-hero-card,
  .contact-hero-card,
  .shop-hero-card {
    min-height: 300px;
  }

  .shop-top-tools-wrap,
  .contact-card,
  .contact-side-card,
  .about-card,
  .about-info-card {
    padding: 22px;
  }
}

/* Refined customer-facing layout refresh */
.hero-section-v2,
.about-hero-v2,
.contact-hero-v2 {
  padding: 78px 0 42px;
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
}

.hero-lead {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-lead h1 {
  margin: 0;
  max-width: 11ch;
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 5.4vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.hero-proof-item,
.intro-pill,
.room-link-card,
.quick-connect-card {
  padding: 18px 18px 16px;
  border: 1px solid rgba(76, 57, 39, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 30px rgba(53, 36, 24, 0.05);
}

.hero-proof-item strong,
.intro-pill strong,
.room-link-card strong,
.quick-connect-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.98rem;
}

.hero-proof-item span,
.intro-pill span,
.room-link-card span,
.quick-connect-card span {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.94rem;
}

.social-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-link-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(76, 57, 39, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.hero-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 18px;
  align-items: stretch;
}

.hero-gallery-main,
.hero-gallery-side,
.narrative-photo,
.room-edit-image,
.preview-card,
.preview-card--tall {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.9);
}

.hero-gallery-main img,
.hero-gallery-side img,
.narrative-photo img,
.room-edit-image img,
.preview-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-gallery-main {
  min-height: 580px;
}

.hero-gallery-stack {
  display: grid;
  gap: 18px;
}

.hero-gallery-side {
  min-height: 290px;
}

.hero-gallery-note {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(76, 57, 39, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 239, 230, 0.94));
  box-shadow: var(--shadow-soft);
}

.hero-gallery-note h3,
.room-edit-copy h2,
.narrative-copy h2,
.contact-info-panel h2,
.contact-form-panel h2,
.about-card-large h2 {
  margin: 8px 0 12px;
  letter-spacing: -0.03em;
}

.hero-gallery-note p,
.room-edit-copy p,
.narrative-copy p,
.contact-info-panel p,
.contact-form-panel p,
.about-card-large p {
  color: var(--muted);
  line-height: 1.75;
}

.home-intro-band {
  padding: 18px 0 56px;
}

.intro-band-grid,
.quick-connect-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.room-edit-section,
.collection-preview-section,
.narrative-section,
.about-panel-section {
  padding: 34px 0 72px;
}

.room-edit-grid,
.narrative-grid,
.about-layout-v2,
.contact-layout-v2 {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 1.02fr);
  gap: 26px;
  align-items: center;
}

.room-edit-image,
.narrative-photo {
  min-height: 540px;
}

.room-edit-copy,
.narrative-copy,
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.room-links,
.about-panel-grid {
  display: grid;
  gap: 14px;
}

.room-link-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.room-link-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(167, 119, 73, 0.28);
}

.collection-preview-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr 0.82fr;
  gap: 22px;
}

.preview-card,
.preview-card--tall {
  min-height: 460px;
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto;
}

.preview-card--tall {
  grid-row: span 2;
  min-height: 100%;
}

.preview-card-body {
  padding: 22px;
}

.preview-card-body h3 {
  margin: 8px 0 10px;
}

.preview-card-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.about-card-large,
.contact-form-panel,
.contact-side-card,
.contact-info-panel {
  align-self: stretch;
}

.about-card-large,
.contact-form-panel {
  padding: 30px;
  border-radius: 30px;
}

.about-panel-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-panel-grid .about-info-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.about-panel-grid .about-info-card strong {
  font-size: 1.8rem;
  line-height: 1;
}

.contact-layout-v2 {
  align-items: stretch;
}

.contact-info-panel,
.contact-form-panel {
  padding-top: 8px;
}

.contact-form-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.97), rgba(248, 241, 233, 0.96));
}

.site-footer-v2 {
  padding: 36px 0 46px;
  border-top: 1px solid rgba(76, 57, 39, 0.08);
}

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

.footer-brand-block h3 {
  margin: 0 0 10px;
  font-size: 2rem;
  font-family: "Playfair Display", serif;
}

.footer-brand-block p,
.footer-contact-mini span,
.footer-contact-mini a {
  color: var(--muted);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-icon-link {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(76, 57, 39, 0.12);
  background: rgba(255, 255, 255, 0.82);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.social-icon-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(167, 119, 73, 0.28);
}

.social-icon-link svg,
.floating-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-icon-inline {
  width: 36px;
  height: 36px;
}

.footer-links-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.footer-contact-mini {
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
}

.floating-whatsapp {
  gap: 10px;
}

.narrative-copy .feature-list {
  margin-top: 4px;
}

.narrative-copy .feature-list li {
  margin-bottom: 10px;
}

.shop-hero-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: center;
}

.shop-hero-copy p {
  max-width: 56ch;
}

.shop-top-tools {
  padding-top: 28px;
}

.shop-top-tools-wrap,
.shop-panel,
.highlight-card,
.product-card-shop {
  border-color: rgba(76, 57, 39, 0.1);
}

.shop-info-bar > div:first-child {
  display: grid;
  gap: 6px;
}

.shop-panel p {
  color: var(--muted);
}

@media (max-width: 1180px) {
  .hero-stage,
  .room-edit-grid,
  .narrative-grid,
  .about-layout-v2,
  .contact-layout-v2,
  .footer-shell,
  .shop-hero-wrap {
    grid-template-columns: 1fr;
  }

  .hero-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .hero-proof,
  .intro-band-grid,
  .quick-connect-grid,
  .collection-preview-grid,
  .about-panel-grid {
    grid-template-columns: 1fr 1fr;
  }

  .preview-card--tall {
    grid-row: auto;
  }

  .footer-contact-mini {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .hero-section-v2,
  .about-hero-v2,
  .contact-hero-v2,
  .room-edit-section,
  .collection-preview-section,
  .narrative-section,
  .about-panel-section,
  .contact-main {
    padding: 56px 0;
  }

  .hero-lead h1 {
    max-width: none;
    font-size: clamp(2.3rem, 10vw, 3.4rem);
  }

  .hero-gallery,
  .hero-proof,
  .intro-band-grid,
  .quick-connect-grid,
  .collection-preview-grid,
  .about-panel-grid,
  .shop-highlights,
  .shop-top-tools-wrap,
  .search-row {
    grid-template-columns: 1fr;
  }

  .hero-gallery-main,
  .room-edit-image,
  .narrative-photo,
  .hero-gallery-side,
  .preview-card,
  .preview-card--tall {
    min-height: 300px;
  }

  .footer-shell,
  .footer-links-v2 {
    justify-content: flex-start;
  }

  .footer-shell {
    gap: 22px;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp {
    width: 56px;
    padding: 0;
    justify-content: center;
  }
}

@media (min-width: 861px) {
  .menu-toggle {
    display: none !important;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: flex !important;
  }

  .desktop-nav,
  .desktop-only {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

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

.sale-placeholder-card,
.delivery-pricing-card,
.community-rating-card,
.rating-modal-box {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.sale-placeholder-card,
.delivery-pricing-card,
.community-rating-card {
  padding: 24px;
}

.promo-note {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(185, 139, 93, 0.08);
  color: var(--accent-2);
  font-weight: 700;
}

.delivery-price-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.delivery-price-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.9);
  border: 1px solid rgba(185, 139, 93, 0.14);
}

.delivery-price-row span:first-child {
  color: var(--muted);
}

.delivery-price-row strong {
  color: var(--text);
}

.split-payment-banner {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(185, 139, 93, 0.12), rgba(255, 250, 244, 0.94));
  border: 1px solid rgba(185, 139, 93, 0.16);
}

.split-payment-banner strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-2);
}

.product-community-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 6px 0 14px;
  font-size: 0.9rem;
  color: var(--muted);
}

.product-community-rating strong {
  color: var(--accent-2);
}

.product-community-rating .stars {
  color: #d39c58;
  letter-spacing: 0.08em;
}

.shop-community-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
}

.community-feed {
  display: grid;
  gap: 14px;
}

.community-feed-list {
  display: grid;
  gap: 12px;
}

.community-feed-item {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 250, 244, 0.92);
  border: 1px solid rgba(185, 139, 93, 0.14);
}

.community-feed-item strong {
  display: block;
  margin-bottom: 6px;
}

.community-feed-item span {
  color: var(--muted);
  line-height: 1.6;
}

.image-modal-body {
  display: grid;
  gap: 14px;
}

.image-modal-gallery {
  display: grid;
  gap: 12px;
}

.image-modal-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.gallery-thumb {
  flex: 0 0 auto;
  width: 78px;
  height: 64px;
  border: 1px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  opacity: 0.72;
  transition: transform 220ms ease, opacity 220ms ease, border-color 220ms ease;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb.active {
  border-color: rgba(185, 139, 93, 0.5);
  opacity: 1;
  transform: translateY(-2px);
}

.gallery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rating-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(46, 33, 23, 0.5);
  backdrop-filter: blur(10px);
  z-index: 10020;
}

.rating-modal.hidden {
  display: none !important;
}

.rating-modal-box {
  width: min(100%, 720px);
  padding: 26px;
  position: relative;
}

.rating-stars {
  display: flex;
  gap: 10px;
  margin: 14px 0 16px;
}

.rating-star {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(185, 139, 93, 0.16);
  background: rgba(255, 250, 244, 0.96);
  color: var(--accent);
  font-size: 1.3rem;
}

.rating-star.active {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
}

.rating-note {
  width: 100%;
  min-height: 120px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  resize: vertical;
  font: inherit;
}

.rating-summary-line {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.tracking-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0 18px;
}

.tracking-status-grid div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.92);
  border: 1px solid rgba(185, 139, 93, 0.14);
}

.tracking-status-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tracking-status-grid strong {
  color: var(--text);
  line-height: 1.4;
}

@media (max-width: 860px) {
  .shop-promo-grid,
  .shop-community-layout,
  .tracking-status-grid {
    grid-template-columns: 1fr;
  }
}

.old-price {
  margin-right: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: line-through;
}

.secure-payment-note,
.account-auth-card,
.account-order {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 70px rgba(54, 39, 25, 0.13);
}

.secure-payment-note {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 20px;
}

.secure-payment-note strong {
  color: var(--accent-2);
}

.secure-payment-note span {
  color: var(--muted);
  line-height: 1.65;
}

.account-section {
  min-height: calc(100vh - 86px);
  padding: 56px 0 78px;
  display: flex;
  align-items: center;
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(390px, 0.78fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
}

.account-copy {
  display: grid;
  gap: 18px;
}

.account-copy h1 {
  margin: 0;
  max-width: 12ch;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 5.2vw, 5.25rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.account-copy p:last-child {
  color: var(--muted);
  line-height: 1.75;
  max-width: 58ch;
}

.account-visual-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(76, 57, 39, 0.1);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.82);
}

.account-visual-card img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.account-visual-overlay {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(47, 36, 29, 0.78);
  color: #fff;
  backdrop-filter: blur(12px);
}

.account-visual-overlay span,
.account-visual-overlay strong {
  display: block;
}

.account-visual-overlay span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

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

.account-trust-row div {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(76, 57, 39, 0.1);
  background: rgba(255, 255, 255, 0.76);
}

.account-trust-row strong,
.account-trust-row span {
  display: block;
}

.account-trust-row strong {
  margin-bottom: 6px;
}

.account-trust-row span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.account-auth-card {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 30px;
}

.account-auth-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 7px;
  background: linear-gradient(90deg, var(--accent), #d7b58e, var(--accent-2));
}

.account-card-head {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.account-card-head h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.account-card-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.account-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 20px;
  padding: 6px;
  border-radius: 18px;
  background: #f4ece2;
  border: 1px solid rgba(76, 57, 39, 0.08);
}

.account-tab {
  min-height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.account-tab.active {
  color: var(--text);
  background: #fff;
  box-shadow: 0 12px 28px rgba(54, 39, 25, 0.08);
}

.account-form {
  display: grid;
  gap: 13px;
}

.account-form-shell {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(76, 57, 39, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(250, 245, 239, 0.9));
}

.account-field {
  display: grid;
  gap: 7px;
}

.account-field span {
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 800;
}

.account-field input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(76, 57, 39, 0.13);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  outline: none;
  font: inherit;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.account-field input:focus {
  border-color: rgba(185, 139, 93, 0.55);
  box-shadow: 0 0 0 4px rgba(185, 139, 93, 0.1);
  background: #fff;
}

.account-form .btn {
  width: 100%;
  min-height: 56px;
  margin-top: 4px;
}

.account-message {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(139, 96, 62, 0.1);
  color: var(--accent-2);
  font-weight: 700;
}

.account-message.show {
  display: block;
}

.dashboard-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.dashboard-head h2 {
  margin: 6px 0 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.order-list {
  display: grid;
  gap: 12px;
}

.account-order {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border-radius: 18px;
}

.account-order strong,
.account-order span {
  display: block;
}

.account-order span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
  text-transform: capitalize;
}

@media (max-width: 860px) {
  .account-section {
    padding: 42px 0 64px;
    align-items: flex-start;
  }

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

  .account-copy h1 {
    max-width: none;
  }

  .dashboard-head,
  .account-order {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 560px) {
  .account-auth-card,
  .account-form-shell {
    border-radius: 22px;
  }

  .account-trust-row,
  .account-tabs {
    grid-template-columns: 1fr;
  }

  .account-visual-card,
  .account-visual-card img {
    min-height: 240px;
  }

  .account-visual-overlay {
    position: static;
    border-radius: 0;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Calm professional layout refresh */
body {
  background: linear-gradient(180deg, #fffaf4 0%, #f7efe6 46%, #fbf7f1 100%);
}

.container {
  width: min(1160px, calc(100% - 40px));
}

.site-header {
  background: rgba(255, 250, 244, 0.92);
}

.nav-wrap {
  min-height: 78px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

section,
.hero-section,
.about-hero,
.contact-hero,
.shop-hero {
  padding: 64px 0;
}

.hero-section-v2 {
  padding: 58px 0 34px;
}

.hero-stage {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(30px, 4.5vw, 58px);
}

.hero-lead {
  gap: 15px;
}

.hero-lead h1 {
  max-width: 12.5ch;
  font-size: clamp(2.8rem, 4.8vw, 4.9rem);
  line-height: 1;
}

.hero-text,
.shop-hero-copy p,
.account-copy p:last-child {
  font-size: 1rem;
  line-height: 1.75;
}

.hero-actions {
  margin: 8px 0 8px;
}

.hero-proof {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 14px;
  border: 1px solid rgba(76, 57, 39, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
  box-shadow: none;
}

.hero-proof-item {
  padding: 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-proof-item + .hero-proof-item {
  border-left: 1px solid rgba(76, 57, 39, 0.08);
}

.social-badges {
  margin-top: 4px;
}

.social-link-inline {
  padding: 8px 12px;
  border-radius: 12px;
  box-shadow: none;
}

.hero-gallery {
  grid-template-columns: 1fr;
}

.hero-gallery-stack {
  display: none;
}

.hero-gallery-main,
.shop-hero-card,
.room-edit-image,
.narrative-photo,
.preview-card,
.preview-card--tall {
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(54, 39, 25, 0.1);
}

.hero-gallery-main {
  min-height: 540px;
}

.panel-badge,
.shop-hero-badge {
  border-radius: 12px;
}

.home-intro-band {
  padding: 24px 0 38px;
}

.intro-band-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(76, 57, 39, 0.1);
  border-bottom: 1px solid rgba(76, 57, 39, 0.1);
}

.intro-pill {
  padding: 18px 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.intro-pill + .intro-pill {
  border-left: 1px solid rgba(76, 57, 39, 0.08);
}

.room-edit-section,
.collection-preview-section,
.narrative-section,
.about-panel-section {
  padding: 58px 0;
}

.room-edit-grid,
.narrative-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(24px, 4vw, 46px);
}

.room-edit-image,
.narrative-photo {
  min-height: 440px;
}

.room-edit-copy,
.narrative-copy {
  gap: 14px;
}

.room-edit-copy h2,
.narrative-copy h2,
.section-head h2,
.cta-panel h2 {
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 1.04;
}

.room-links {
  gap: 0;
  border-top: 1px solid rgba(76, 57, 39, 0.1);
}

.room-link-card {
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid rgba(76, 57, 39, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.room-link-card:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(76, 57, 39, 0.1);
}

.collection-preview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.preview-card,
.preview-card--tall {
  min-height: auto;
  grid-row: auto;
  grid-template-rows: 270px auto;
}

.preview-card-body {
  padding: 20px;
}

.preview-card .spotlight-bottom strong {
  color: var(--accent-2);
}

.narrative-section {
  display: none;
}

.cta-panel {
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 46px rgba(54, 39, 25, 0.08);
}

.shop-page {
  padding-bottom: 58px;
}

.shop-hero {
  padding: 52px 0 28px;
}

.shop-hero-wrap {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.85fr);
  gap: clamp(24px, 4vw, 48px);
}

.shop-hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 4.4vw, 4.2rem);
  line-height: 1;
}

.shop-hero-card {
  min-height: 320px;
}

.split-payment-banner {
  border-radius: 16px;
}

.shop-top-tools {
  padding: 18px 0 26px;
}

.shop-top-tools-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 22px;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(54, 39, 25, 0.07);
}

.filter-chips {
  gap: 8px;
}

.filter-chip,
.shop-sort,
.shop-search,
.toolbar-button {
  min-height: 44px;
  border-radius: 12px;
}

.search-row {
  grid-template-columns: minmax(0, 1fr) 150px 150px 78px;
  gap: 10px;
}

.shop-info-bar {
  margin-bottom: 18px;
}

.shop-meta-note {
  max-width: 58ch;
}

.shop-highlights {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.highlight-card {
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: none;
}

body .collection-grid {
  gap: 18px;
}

body .product-card-shop {
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(54, 39, 25, 0.08);
}

.product-media {
  border-radius: 14px;
  padding: 10px;
}

.product-tag,
.zoom-hint {
  border-radius: 10px;
}

.product-body {
  padding: 18px;
}

.product-body h3 {
  margin-bottom: 8px;
}

.product-body p {
  margin-bottom: 12px;
  line-height: 1.55;
}

.product-actions {
  grid-template-columns: 1fr 1fr;
}

.product-actions .btn {
  min-height: 42px;
  border-radius: 12px;
}

.product-actions .btn-cart {
  grid-column: span 2;
  order: -1;
  position: relative;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 2px solid var(--accent-2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent-2);
  box-shadow: none;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  overflow: hidden;
}

.product-actions .btn-cart::before,
.product-actions .btn-cart::after {
  display: none;
  content: none;
}

.product-actions .btn-cart:hover {
  transform: translateY(-2px);
  background: #fffaf4;
  box-shadow: 0 14px 26px rgba(139, 96, 62, 0.13);
}

/* Unified button language */
body .btn,
body .toolbar-button,
body .filter-chip,
body .mini-pill-button,
body .cart-checkout-btn,
body .cart-clear-btn,
body .cart-row-remove,
body .account-tab,
body .cart-toast-link,
body .payment-method-card {
  min-height: 42px;
  padding: 0 16px;
  border: 1.5px solid var(--accent-2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent-2);
  box-shadow: none;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

body .btn:hover,
body .toolbar-button:hover,
body .filter-chip:hover,
body .mini-pill-button:hover,
body .cart-checkout-btn:hover,
body .cart-clear-btn:hover,
body .cart-row-remove:hover,
body .account-tab:hover,
body .cart-toast-link:hover,
body .payment-method-card:hover {
  transform: translateY(-2px);
  background: #fffaf4;
  box-shadow: 0 14px 26px rgba(139, 96, 62, 0.13);
}

body .btn-primary,
body .cart-checkout-btn,
body .filter-chip.active,
body .account-tab.active,
body .payment-method-card.active,
body .btn-wishlist.active {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: #fff;
  box-shadow: 0 14px 28px rgba(139, 96, 62, 0.18);
}

body .btn-primary:hover,
body .cart-checkout-btn:hover,
body .filter-chip.active:hover,
body .account-tab.active:hover,
body .payment-method-card.active:hover,
body .btn-wishlist.active:hover {
  background: #765035;
  border-color: #765035;
  color: #fff;
}

body .btn-ghost {
  background: rgba(255, 255, 255, 0.86);
  color: var(--accent-2);
}

body .product-actions .btn,
body .gallery-actions .btn,
body .checkout-actions .btn,
body .success-actions .btn {
  border-radius: 999px;
}

body .hero-actions .btn,
body .cta-actions .btn {
  min-height: 44px;
  padding: 0 18px;
}

body .nav-actions .btn {
  min-height: 40px;
  padding: 0 15px;
}

body .product-actions .btn {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.84rem;
}

body .product-actions a.btn {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent-2);
  box-shadow: none;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 800;
  justify-content: flex-start;
}

body .product-actions a.btn:hover {
  transform: none;
  background: transparent;
  box-shadow: none;
  color: #765035;
  text-decoration: underline;
  text-underline-offset: 4px;
}

body .product-actions .btn-cart {
  min-height: 44px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent-2);
  box-shadow: none;
}

body .product-actions .btn-cart:hover {
  background: #fffaf4;
  color: var(--accent-2);
}

body .payment-method-card {
  min-height: auto;
  padding: 16px;
  text-transform: none;
  letter-spacing: 0;
  border-radius: 20px;
}

body .account-tabs {
  background: transparent;
  border: 0;
  padding: 0;
}

.shop-panels {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
}

.shop-panel {
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(54, 39, 25, 0.07);
}

.site-footer-v2 {
  margin-top: 22px;
}

@media (max-width: 1180px) {
  .hero-stage,
  .shop-hero-wrap,
  .room-edit-grid,
  .narrative-grid {
    grid-template-columns: 1fr;
  }

  .hero-gallery-main {
    min-height: 420px;
  }
}

@media (max-width: 860px) {
  .desktop-nav,
  .desktop-only {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .menu-toggle {
    display: flex !important;
  }

  .container {
    width: min(1160px, calc(100% - 24px));
  }

  section,
  .hero-section,
  .about-hero,
  .contact-hero,
  .shop-hero,
  .room-edit-section,
  .collection-preview-section,
  .cta-section {
    padding: 46px 0;
  }

  .hero-proof,
  .intro-band-grid,
  .collection-preview-grid,
  .shop-top-tools-wrap,
  .shop-highlights,
  .shop-panels {
    grid-template-columns: 1fr;
  }

  .hero-proof-item + .hero-proof-item,
  .intro-pill + .intro-pill {
    border-left: 0;
    border-top: 1px solid rgba(76, 57, 39, 0.08);
  }

  .search-row {
    grid-template-columns: 1fr;
  }

  .shop-info-bar {
    grid-template-columns: 1fr;
  }

  .shop-action-pills {
    justify-content: flex-start;
  }

  .preview-card,
  .preview-card--tall {
    grid-template-rows: 240px auto;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(1160px, calc(100% - 18px));
  }

  .hero-lead h1,
  .shop-hero-copy h1 {
    font-size: clamp(2.15rem, 9vw, 3rem);
  }

  .hero-gallery-main,
  .room-edit-image,
  .shop-hero-card {
    min-height: 280px;
  }

  .cta-panel,
  .shop-top-tools-wrap,
  .shop-panel {
    padding: 18px;
  }
}

/* Typography, icons, and product gallery polish */
body {
  font-family: "Outfit", "Manrope", sans-serif;
}

body .shop-hero-copy h1,
body .product-body h3,
body .image-modal-content h3,
body .cart-header h3,
body .checkout-title,
body .tracking-title,
body .success-title,
body .shop-panel h3 {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
}

.brand-name,
.hero-copy h1,
.hero-lead h1,
.shop-hero-copy h1,
.account-copy h1,
.section-head h2,
.room-edit-copy h2,
.narrative-copy h2,
.cta-panel h2,
.site-footer h3,
.checkout-title,
.tracking-title,
.success-title,
.cart-header h3,
.shop-panel h3,
.account-card-head h2,
.dashboard-head h2 {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  letter-spacing: -0.015em;
}

.product-media {
  position: relative;
}

.card-view-strip {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  gap: 7px;
  padding: 7px;
  border-radius: 14px;
  background: rgba(255, 250, 244, 0.9);
  border: 1px solid rgba(76, 57, 39, 0.12);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 28px rgba(54, 39, 25, 0.12);
}

.card-view-thumb {
  width: 42px;
  height: 42px;
  padding: 0;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid transparent;
  background: #fff;
  opacity: 0.72;
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.card-view-thumb:hover,
.card-view-thumb.active {
  opacity: 1;
  transform: translateY(-1px);
  border-color: rgba(139, 96, 62, 0.45);
}

.card-view-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body .image-modal-box {
  width: min(100%, 1040px);
  border-radius: 24px;
}

body .image-modal-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  min-height: min(760px, 86vh);
}

body .image-modal-media {
  min-height: 560px;
  background: linear-gradient(180deg, #f3ebe1, #fffaf4);
}

body .image-modal-media img {
  max-height: 78vh;
}

body .image-modal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  border-top: 0;
  border-left: 1px solid rgba(76, 57, 39, 0.1);
}

body .image-modal-content h3 {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
}

body .image-modal-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  overflow: visible;
  padding: 4px 0;
}

body .gallery-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 12px;
}

body .gallery-actions .btn {
  border-radius: 12px;
}

@media (max-width: 860px) {
  body .image-modal-body {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  body .image-modal-media {
    min-height: 320px;
  }

  body .image-modal-content {
    border-left: 0;
    border-top: 1px solid rgba(76, 57, 39, 0.1);
  }
}

@media (max-width: 560px) {
  .card-view-strip {
    position: static;
    margin-top: 8px;
    box-shadow: none;
  }

  .card-view-thumb {
    flex: 1 1 0;
    height: 38px;
  }

  body .image-modal-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
