:root {
  --bg: #f4f0e9;
  --bg-deep: #1f1a16;
  --text: #1d1713;
  --text-soft: #4c3f33;
  --accent: #8b3a24;
  --accent-2: #0f6b6f;
  --surface: #fffaf3;
  --surface-2: #efe3d6;
  --line: #dbc8b6;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 50px rgba(28, 18, 10, 0.12);
  --shadow-depth: 0 16px 30px rgba(33, 22, 12, 0.16), 0 3px 8px rgba(33, 22, 12, 0.1);
  --shadow-depth-hover: 0 22px 38px rgba(33, 22, 12, 0.2), 0 6px 14px rgba(33, 22, 12, 0.12);
  --container: min(1280px, calc(100vw - 3rem));
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 90% 0%, rgba(15, 107, 111, 0.2), transparent 35%),
    radial-gradient(circle at 0% 40%, rgba(139, 58, 36, 0.18), transparent 32%),
    var(--bg);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(244, 240, 233, 0.84);
  border-bottom: 1px solid rgba(219, 200, 182, 0.8);
}

.announce {
  display: none;
  background: linear-gradient(90deg, #0f6b6f, #184f67);
  color: #f7fcff;
  text-align: center;
  font-size: 0.92rem;
  padding: 0.45rem 1rem;
}

.nav-wrap {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-with-logo {
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  width: clamp(46px, 5vw, 60px);
  height: clamp(46px, 5vw, 60px);
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(29, 23, 19, 0.18));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  letter-spacing: 0.01em;
}

.brand span {
  font-size: 0.82rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: auto;
}

.header-account-shell {
  position: relative;
  display: flex;
  align-items: center;
}

.header-call-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.74rem;
  font-weight: 700;
  color: #8b3a24;
  text-decoration: none;
  letter-spacing: 0.03em;
  white-space: nowrap;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  transition: background 0.15s;
}

.header-call-cta:hover {
  background: rgba(139, 58, 36, 0.08);
}

.header-tool-btn,
.header-account-btn {
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.9);
  color: var(--text);
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  font-size: 0.82rem;
  min-height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.42rem 0.68rem;
  cursor: pointer;
  white-space: nowrap;
}

.header-account-btn {
  min-width: 78px;
}

.header-account-status {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.14rem;
}

.header-account-status__label {
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a6553;
}

.header-account-status__button {
  border: 0;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  color: #4b382a;
  cursor: pointer;
}

.header-account-status__name {
  max-width: 154px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-account-status__caret {
  font-size: 0.72rem;
  color: #8b3a24;
}

.header-account-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  z-index: 40;
  width: min(240px, 72vw);
  padding: 0.65rem;
  border: 1px solid #dbc8b6;
  border-radius: 14px;
  background: rgba(255, 250, 243, 0.98);
  box-shadow: 0 16px 30px rgba(56, 36, 24, 0.16);
}

.header-account-menu__summary {
  padding-bottom: 0.55rem;
  margin-bottom: 0.55rem;
  border-bottom: 1px solid #e7d7c7;
}

.header-account-menu__summary strong,
.header-account-menu__summary p {
  display: block;
}

.header-account-menu__summary strong {
  color: #3e2f25;
}

.header-account-menu__summary p {
  margin: 0.18rem 0 0;
  font-size: 0.78rem;
  color: #6b5343;
  word-break: break-word;
}

.header-account-menu__eyebrow {
  margin: 0 0 0.18rem !important;
  font-size: 0.62rem !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8a725f;
}

.header-account-menu__actions {
  display: grid;
  gap: 0.3rem;
}

.header-account-menu__action {
  border: 0;
  background: transparent;
  padding: 0.48rem 0.45rem;
  border-radius: 10px;
  text-align: left;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  color: #4b382a;
  cursor: pointer;
}

.header-account-menu__action:hover {
  background: #f5e7d8;
}

.header-tool-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-tool-icon svg {
  width: 16px;
  height: 16px;
}

.header-tool-count {
  min-width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: #8b3a24;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  line-height: 1;
  padding: 0 0.25rem;
}

.nav-links a {
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--surface-2);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.9);
  border-radius: 999px;
  width: 42px;
  height: 42px;
  padding: 0;
  font-size: 0;
  color: transparent;
  position: relative;
  align-items: center;
  justify-content: center;
}

.menu-toggle::before {
  content: "";
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232a2119' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M4 7h16M4 12h16M4 17h16'/%3E%3C/svg%3E");
}

.menu-toggle[aria-expanded="true"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232a2119' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E");
}

.mobile-menu {
  display: none;
}

.mobile-menu[data-open="true"] {
  display: inline-block;
  position: absolute;
  top: 100%;
  left: 0.75rem;
  width: fit-content;
  min-width: 220px;
  max-width: calc(100vw - 1.5rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 30px rgba(29, 23, 19, 0.18);
  padding: 0.75rem 1rem 1rem;
  z-index: 40;
}

.mobile-menu a {
  display: block;
  padding: 0.55rem;
  border-radius: 8px;
  font-weight: 600;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.hero {
  position: relative;
  padding: clamp(2.4rem, 6vw, 4.2rem) 0 2rem;
  background:
    linear-gradient(120deg, rgba(20, 14, 11, 0.54), rgba(16, 48, 53, 0.38)),
    url("assets/images/momhero.png") top center / cover no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1rem, 2.8vw, 2.4rem);
  align-items: stretch;
}

.hero-main {
  display: grid;
  gap: 0.7rem;
  height: 100%;
}

.hero-copy {
  background: rgba(255, 250, 243, 0.88);
  border: 1px solid rgba(219, 200, 182, 0.85);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1rem, 2vw, 1.4rem);
  animation: rise 0.8s ease;
}

.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.8rem, 4.2vw, 3.2rem);
  line-height: 1.08;
  margin: 0;
  color: #261a12;
}

.hero-glimmer-title {
  color: #261a12;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-glimmer-title {
    background-image: linear-gradient(
      112deg,
      #2a1d14 0%,
      #3b2a1f 24%,
      #d8c3ae 37%,
      #312217 50%,
      #d4bca5 63%,
      #3a2a1f 78%,
      #271b13 100%
    );
    background-size: 280% auto;
    background-position: 0% 50%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: heroGlimmerSweep 12.5s ease-in-out infinite;
  }
}

.hero p {
  color: #4a3a2b;
  margin: 0.7rem 0;
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.hero-contact-form {
  background: rgba(255, 250, 243, 0.92);
  border: 1px solid rgba(219, 200, 182, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(0.9rem, 2vw, 1.25rem);
  backdrop-filter: blur(3px);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hero-contact-form h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  line-height: 1.12;
}

.hero-contact-form p {
  margin: 0.35rem 0 0.7rem;
  font-size: 0.9rem;
  color: #5a4838;
}

.hero-contact-form .form-grid {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.56rem;
}

.hero-contact-form .btn {
  margin-top: auto;
}

.hero-contact-form textarea {
  min-height: 96px;
}

.stat {
  background: linear-gradient(160deg, #fff, #f2e6d7);
  border: 1px solid #e1c8ad;
  border-radius: var(--radius-sm);
  padding: 1rem;
  min-height: 110px;
}

.stat strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.6rem;
}

.stat span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.section {
  padding: clamp(2.4rem, 6vw, 4.2rem) 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.section-head h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin: 0;
}

.section-head p {
  margin: 0;
  color: var(--text-soft);
  max-width: 50ch;
}

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

.product-card {
  background: rgba(255, 250, 243, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(31, 26, 22, 0.08);
  display: flex;
  flex-direction: column;
}

.product-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f2f2f2;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .product-thumb img {
  transform: scale(1.05);
}

.badge {
  position: absolute;
  left: 0.65rem;
  top: 0.65rem;
  background: rgba(27, 21, 16, 0.84);
  color: #fdf7ed;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
}

.product-copy {
  padding: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
}

.product-category {
  margin: 0;
  color: #846c55;
  text-transform: uppercase;
  font-size: 0.77rem;
  letter-spacing: 0.06em;
}

.product-copy h3 {
  margin: 0;
  font-size: 1.06rem;
}

.product-description {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.scope-note {
  margin: 0;
  font-size: 0.82rem;
  color: #5e4f3f;
  background: #f2e5d7;
  border: 1px solid #dac2aa;
  border-radius: 8px;
  padding: 0.35rem 0.5rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}

.price-row strong {
  font-size: 1.15rem;
}

.price-row span {
  color: #877362;
  text-decoration: line-through;
  font-size: 0.9rem;
}

.shipping-note {
  margin: 0;
  font-size: 0.82rem;
  color: #5a4f46;
}

.card-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.62rem 0.95rem;
  font-size: 0.88rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  color: #fff7ef;
  background: linear-gradient(120deg, var(--accent), #be5f3f);
  box-shadow: 0 8px 20px rgba(139, 58, 36, 0.25);
}

.btn-secondary {
  background: #f7efe5;
  color: #2a2119;
  border-color: #d4c0ab;
}

/* Depth pass: stronger 3D shadows on key containers and buttons */
.hero-copy,
.hero-contact-form,
.stat,
.product-card,
.info-band,
.product-panel,
.checkout-summary,
.contact-card,
.contact-form,
.custom-estimate,
.not-found {
  box-shadow: var(--shadow-depth);
}

.btn,
.header-tool-btn,
.header-account-btn,
.menu-toggle,
.mobile-menu-account {
  box-shadow: 0 8px 16px rgba(29, 23, 19, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.btn:hover,
.header-tool-btn:hover,
.header-account-btn:hover,
.menu-toggle:hover,
.mobile-menu-account:hover {
  box-shadow: var(--shadow-depth-hover);
}

.info-band {
  border: 1px solid #d7c2ac;
  background: linear-gradient(120deg, #f9eee1, #f2e7dc);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.showcase-item {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #d6c2b0;
  box-shadow: 0 8px 22px rgba(34, 22, 12, 0.12);
}

.showcase-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(219, 200, 182, 0.25);
  padding: 2rem 0 2.2rem;
  color: #d8c7b6;
  font-size: 0.9rem;
  background:
    radial-gradient(circle at 80% -20%, rgba(15, 107, 111, 0.22), transparent 42%),
    radial-gradient(circle at -10% 110%, rgba(139, 58, 36, 0.22), transparent 38%),
    #17120f;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-grid--enhanced {
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(250px, 320px) minmax(200px, 272px);
  gap: 1.6rem;
  align-items: start;
}

.footer-services-col {
  width: 100%;
  max-width: 320px;
  justify-self: start;
  margin-left: 0;
  margin-right: 0;
}

.footer-service-list {
  list-style: none;
  margin: 0.15rem 0 0.9rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-service-list li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 0.45rem;
  align-items: start;
  color: #cbb39b;
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-service-icon {
  color: #e8c9a7;
  font-size: 0.68rem;
  transform: translateY(0.38rem);
}

.footer-trust-badges {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
}

.footer-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(226, 202, 178, 0.32);
  background: rgba(255, 250, 243, 0.06);
  color: #e3ccb3;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.34rem 0.62rem;
}

.footer-trust-badge svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

.footer-services-cta {
  width: fit-content;
  min-height: 2.1rem;
  font-size: 0.8rem;
  padding: 0.45rem 0.78rem;
  color: #000 !important;
}

.footer-services-cta:hover {
  color: #c0392b !important;
}

.footer-studio-col {
  justify-self: end;
  width: 100%;
  max-width: 272px;
  margin-right: -0.7rem;
  text-align: left;
}

.footer-grid--enhanced strong {
  color: #f5e8d8;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.1rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 0.8rem;
}

.footer-links a,
.footer-grid a {
  color: #d9ccb9;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-grid a:hover {
  color: #fff4e6;
}

.footer-social {
  margin-top: 0.7rem;
  display: flex;
  gap: 0.45rem;
}

.footer-social a,
.mobile-menu-socials a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(226, 202, 178, 0.45);
  color: #f3e6d7;
  background: rgba(255, 250, 243, 0.05);
}

.footer-social a svg,
.mobile-menu-socials a svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.footer-links-heading {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a89078;
  margin-bottom: 0.5rem;
}

.footer-col-heading {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a89078;
  margin-bottom: 0.6rem;
}

.footer-desc {
  font-size: 0.87rem;
  color: #c0aa96;
  line-height: 1.6;
  margin: 0 0 0.4rem;
}

.footer-desc a {
  color: #d9ccb9;
}

.footer-desc a:hover {
  color: #fff4e6;
}

.footer-bottom {
  margin-top: 1.8rem;
}

.footer-bottom-divider {
  border: none;
  border-top: 1px solid rgba(226, 202, 178, 0.18);
  margin: 0 0 1.2rem;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-align: center;
}

.footer-policy-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem 1.2rem;
}

.footer-policy-nav a {
  font-size: 0.82rem;
  color: #b8a492;
  transition: color 0.2s;
}

.footer-policy-nav a:hover {
  color: #fff4e6;
}

.footer-copyright {
  font-size: 0.78rem;
  color: #7a6352;
  margin: 0;
}

.mobile-menu-extras {
  margin-top: 0.75rem;
  padding-top: 0.65rem;
  border-top: 1px solid #d9c6b2;
}

.mobile-menu-account {
  width: 100%;
  border: 1px solid #ccb39a;
  background: #fff8f0;
  color: #2a2119;
  border-radius: 999px;
  padding: 0.52rem 0.8rem;
  font: inherit;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
}

.mobile-menu-follow-label {
  margin: 0.6rem 0 0.3rem;
  font-size: 0.76rem;
  color: #7a6352;
  text-align: center;
  letter-spacing: 0.04em;
}

.mobile-menu-socials {
  margin-top: 0;
  display: flex;
  gap: 0.45rem;
  justify-content: center;
}

.mobile-menu-socials a {
  color: #49382a;
  background: #fff8f0;
  border-color: #ccb39a;
}

.page-hero {
  padding: clamp(2rem, 5vw, 4rem) 0 1rem;
}

.page-hero h1 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.8rem, 4.2vw, 3rem);
}

.page-hero p {
  color: var(--text-soft);
  max-width: 70ch;
}

/* Hero background variant for inner pages */
.page-hero.has-hero-img {
  position: relative;
  background: url("assets/images/momhero.png") center top / cover no-repeat;
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 0;
}

.page-hero.has-hero-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(14, 9, 5, 0.72) 0%, rgba(20, 13, 8, 0.58) 100%);
}

.page-hero.has-hero-img .container {
  position: relative;
  z-index: 1;
}

.page-hero.has-hero-img h1 {
  color: #f8ede0;
}

.page-hero.has-hero-img p {
  color: #d9c9b5;
}

/* FAQ section */
.faq-section {
  background: rgba(255, 250, 243, 0.55);
  border-top: 1px solid var(--line);
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.faq-item:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.3rem;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: #8b3a24;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] > summary::after {
  transform: rotate(45deg);
}

.faq-item .faq-answer {
  padding: 0 1.3rem 1.1rem;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}


  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.product-panel {
  background: rgba(255, 250, 243, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 30px rgba(38, 25, 12, 0.1);
  padding: 1rem;
}

.main-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d8c7b5;
  margin-bottom: 0.75rem;
}

.main-image-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.thumb-grid {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.thumb-button {
  border: 1px solid #cbb39b;
  background: #fdf8f0;
  border-radius: 10px;
  padding: 0;
  width: 74px;
  height: 74px;
  overflow: hidden;
}

.thumb-button.active {
  border-color: #0f6b6f;
  box-shadow: 0 0 0 2px rgba(15, 107, 111, 0.2);
}

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

.detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
}

.detail-list li {
  background: #f5ebde;
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
  border: 1px solid #ddc8b2;
  font-size: 0.92rem;
}

.detail-list strong {
  margin-right: 0.3rem;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.checkout-summary {
  background: rgba(255, 250, 243, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.checkout-image img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #d8c5ae;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e6d4c2;
  padding: 0.55rem 0;
}

.summary-row.total {
  border-bottom: 0;
  font-weight: 800;
  font-size: 1.1rem;
}

.warning {
  margin-top: 0.75rem;
  border: 1px solid #c88f63;
  background: #fff1e4;
  color: #6d3510;
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
}

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

.contact-card,
.contact-form {
  background: rgba(255, 250, 243, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.form-grid {
  display: grid;
  gap: 0.7rem;
}

label {
  display: grid;
  gap: 0.28rem;
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #ccb39a;
  background: #fffdf9;
  border-radius: 9px;
  padding: 0.58rem 0.66rem;
  font: inherit;
}

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

.custom-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: start;
}

.custom-estimate {
  position: sticky;
  top: 104px;
}

.wood-selector-row {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 0.65rem;
  border: 1px solid #dcc9b6;
  border-radius: 10px;
  padding: 0.6rem;
  background: #f8eee3;
  margin-bottom: 0.6rem;
}

.wood-preview {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ccb39a;
  background: #fff;
}

.wood-preview img {
  width: 100%;
  height: 88px;
  object-fit: cover;
}

.wood-preview figcaption {
  padding: 0.35rem 0.45rem;
  font-size: 0.78rem;
  color: #3d2f23;
}

.not-found {
  max-width: 640px;
  margin: 3rem auto;
  text-align: center;
  background: #fffaf3;
  border: 1px solid #dbc8b6;
  border-radius: 14px;
  padding: 1.4rem;
}

/* Decorative Embeds & Effects fieldset */
.embed-effects-group {
  border: 1px solid #dcc9b6;
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  background: #f8eee3;
  margin: 0;
}

.embed-effects-group legend {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: #3d2f23;
  padding: 0 0.25rem;
}

.legend-note {
  font-weight: 400;
  color: #7a6251;
  font-size: 0.82rem;
}

.embed-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 0.45rem;
  margin-top: 0.6rem;
}

.embed-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  color: #3d2f23;
  background: #fff;
  border: 1px solid #ccb39a;
  border-radius: 7px;
  padding: 0.45rem 0.65rem;
  transition: border-color 0.15s;
}

.embed-option:has(input:checked) {
  border-color: #8b5e3c;
  background: #fff8f1;
}

.embed-option input[type="checkbox"] {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  accent-color: #8b5e3c;
}

.embed-option em {
  font-style: normal;
  color: #7a6251;
  font-size: 0.8rem;
}

/* Base frame sub-options */
.base-sub-options {
  border: 1px solid #dcc9b6;
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  background: #f8eee3;
  margin-bottom: 0.4rem;
}

.base-sub-note {
  margin: 0 0 0.6rem !important;
}

.base-frame-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(116px, 1fr));
  gap: 0.65rem;
}

.base-frame-card {
  flex: 0 0 116px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  border: 2px solid #ccb39a;
  border-radius: 9px;
  padding: 0.5rem 0.4rem;
  background: #fff;
  text-align: center;
  transition: border-color 0.15s;
}

.base-frame-card:has(input:checked) {
  border-color: #8b5e3c;
  background: #fff8f1;
}

.base-frame-card input[type="radio"] {
  display: none;
}

.base-frame-img {
  width: 100%;
  height: 74px;
  border-radius: 6px;
  overflow: hidden;
  background: #e8d9c8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.base-frame-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: #3d2f23;
  line-height: 1.2;
}

.frame-price {
  font-size: 0.75rem;
  color: #7a6251;
}

.request-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.request-overlay[hidden] {
  display: none !important;
}

.request-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(33, 23, 15, 0.55);
}

.request-overlay__card {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: 92vh;
  overflow: auto;
  background: #fffaf3;
  border: 1px solid #dbc8b6;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.request-overlay__close {
  position: absolute;
  right: 0.55rem;
  top: 0.55rem;
  border: 0;
  background: transparent;
  font-size: 1.55rem;
  line-height: 1;
  color: #6b5343;
  cursor: pointer;
}

.account-panel {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.account-panel[hidden],
.account-panel[aria-hidden="true"] {
  display: none !important;
}

.account-panel__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(33, 23, 15, 0.56);
}

.account-panel__card {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: #fffaf3;
  border: 1px solid #dbc8b6;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  padding: 1rem;
}

.account-panel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.account-panel__method-label {
  margin: 0.35rem 0 0.45rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7a6553;
}

.account-panel__method-stack {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
}

.account-panel__oauth-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid #ddc8b2;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(60, 38, 20, 0.08);
  cursor: pointer;
}

.account-panel__oauth-icon-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(60, 38, 20, 0.12);
}

.account-panel__oauth-icon-btn[disabled],
.account-panel__oauth-icon-btn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.account-panel__provider-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.account-panel__provider-icon svg {
  width: 18px;
  height: 18px;
}

.account-panel__provider-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4b382a;
}

.account-panel__auth-divider {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  color: #7a6553;
}

.account-panel__auth-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.account-panel__auth-actions .btn {
  flex: 1 1 180px;
}

.account-panel__text-action {
  justify-self: start;
  border: 0;
  background: transparent;
  padding: 0;
  color: #8b3a24;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

.account-panel__text-action:hover {
  text-decoration: underline;
}

.account-panel__feedback {
  margin-top: 0.8rem;
}

.account-panel__orders {
  scroll-margin-top: 1rem;
}

.account-panel__feedback[data-tone="error"] {
  color: #a11e1e;
}

.account-panel__feedback[data-tone="success"] {
  color: #256845;
}

.account-panel__line-item {
  background: #f7ede1;
  border: 1px solid #ddc8b2;
  border-radius: 10px;
  padding: 0.62rem;
  margin-bottom: 0.45rem;
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  align-items: center;
}

.account-panel__line-item p {
  margin: 0.2rem 0 0;
  font-size: 0.84rem;
  color: #594737;
}

.account-panel__close {
  position: absolute;
  right: 0.55rem;
  top: 0.55rem;
  border: 0;
  background: transparent;
  font-size: 1.55rem;
  line-height: 1;
  color: #6b5343;
  cursor: pointer;
}

.hero-actions .is-disabled,
.hero-actions a[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.55;
}

@keyframes rise {
  from {
    transform: translateY(16px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}


.account-panel__order-summary {
  display: flex;
  gap: 0.55rem;
  margin-bottom: 0.6rem;
}

.account-order-metric {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0.3rem 0.6rem;
  border: 1px solid #e0ccba;
  border-radius: 999px;
  background: #fbf2e7;
}

.account-order-metric strong {
  font-size: 0.88rem;
  color: #3e2f25;
}

.account-order-metric small {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7d6857;
}

.order-status-pill {
  display: inline-flex;
  align-items: center;
  margin-right: 0.35rem;
  padding: 0.1rem 0.48rem;
  border-radius: 999px;
  border: 1px solid #ceb8a6;
  background: #f6ece1;
  font-size: 0.68rem;
  line-height: 1.45;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6e5846;
}

.order-status-pill[data-tone="success"] {
  border-color: #9ac3ab;
  background: #e6f3eb;
  color: #295e43;
}

.order-status-pill[data-tone="warn"] {
  border-color: #d5bf92;
  background: #faf1dc;
  color: #715629;
}

.order-status-pill[data-tone="accent"] {
  border-color: #95b6c9;
  background: #e7f0f5;
  color: #28506a;
}

.order-status-pill[data-tone="danger"] {
  border-color: #dfacab;
  background: #fbe8e8;
  color: #8f2f2d;
}

.checkout-state {
  margin-top: 0.65rem;
}

.checkout-state[data-tone="success"] {
  color: #265f43;
}

.checkout-state[data-tone="warn"] {
  color: #715629;
}
@keyframes heroGlimmerSweep {
  0% {
    background-position: 0% 50%;
  }

  58% {
    background-position: 0% 50%;
  }

  82% {
    background-position: 165% 50%;
  }

  100% {
    background-position: 165% 50%;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .product-layout,
  .checkout-layout,
  .contact-grid,
  .custom-layout {
    grid-template-columns: 1fr;
  }

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

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

  .custom-estimate {
    position: static;
  }

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

  .hero {
    background-position: top center;
  }

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

  .footer-studio-col {
    justify-self: start;
    max-width: none;
  }

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

@media (max-width: 1215px) {
  .nav-wrap {
    justify-content: flex-start;
    gap: 0.45rem;
  }

  .nav-links {
    display: none;
  }

  .brand {
    order: 2;
    margin-left: 0.3rem;
    margin-right: auto;
  }

  .menu-toggle {
    display: inline-flex;
    order: 1;
  }

  .header-tools {
    order: 3;
    margin-left: auto;
  }
}

@media (max-width: 760px) {
  .brand-copy > span {
    display: none;
  }

  .header-account-status__label {
    font-size: 0.58rem;
  }

  .header-account-status__name {
    max-width: 112px;
  }

  .header-tools {
    order: 3;
    margin-left: auto;
    gap: 0.4rem;
  }

  .header-call-cta {
    display: none;
  }

  .header-tool-label {
    display: none;
  }

  .header-account-btn {
    font-size: 0.74rem;
    min-width: 74px;
    padding: 0.4rem 0.58rem;
  }

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

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

  .hero-stat-grid {
    display: none;
  }

  .hero {
    padding-top: 1.5rem;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .card-actions {
    flex-direction: column;
  }

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

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

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-item:nth-child(odd) {
    border-right: none;
  }
}
