:root {
  --bg: #f7f2eb;
  --bg-soft: #fbf8f2;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --surface-muted: #f0e9de;
  --ink: #221a14;
  --ink-soft: #665847;
  --ink-muted: #8c7b67;
  --line: rgba(83, 60, 36, 0.12);
  --gold: #d1a63a;
  --gold-deep: #a57915;
  --shadow: 0 24px 60px rgba(47, 31, 18, 0.1);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --theme-color1: #D4AF37;
  --theme-color2: #808080;
  --container: min(1120px, calc(100vw - 2rem));

}

* {
  box-sizing: border-box;
  font-family: "Lexend Deca";
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}


body {
  margin: 0;
  /* font-family: "Manrope", sans-serif;  */
  color: var(--ink);
  /* background:
    radial-gradient(circle at top left, rgba(209, 166, 58, 0.14), transparent 28%),
    linear-gradient(180deg, #f5efe5 0%, #faf7f1 40%, #f3ece3 100%); */
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  background:
    radial-gradient(circle at 15% 10%, rgba(209, 166, 58, 0.12), transparent 24%),
    radial-gradient(circle at 85% 18%, rgba(34, 26, 20, 0.06), transparent 28%);
}

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

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

.page-shell {
  overflow: clip;
  isolation: isolate;
}

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

.single-page .container {
  width: 100%;
}

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  opacity: 0;
  transform: translateY(-18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

/* new css start  */

.hero h1 {
  font-family: "REM";
  font-size: 61px;
  max-width: 70%;
  margin: auto;
  margin-bottom: 20px;
}

.section--tight h2 {
  font-size: 44px;
  font-weight: 500;
  font-family: "REM";
  margin-bottom: 15px;
}

.section--tight p {
  font-family: "REM";
  color: var(--theme-color2);
  font-weight: 400;
}

.hero p.hero__lead {
  margin: auto;

}

/* Dropdown Menu */
.site-header .dropdown-menu {
  border-radius: 12px;
  padding: 10px;
  background: rgba(255, 249, 239, 0.96);
  border: 1px solid rgba(209, 166, 58, 0.18);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 30px rgba(43, 31, 18, 0.12);
}

.site-header .dropdown-item {
  color: #3f2c1f;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  transition: 0.3s;
}

.site-header .dropdown-item:hover {
  background: #f4b400;
  color: black;
}

.site-header .custom-navbar {
  width: 100%;
  padding: 0.45rem 0 0;
}

.site-header .custom-navbar>.container {
  max-width: 100%;
  padding-inline: 0;
  gap: 1.5rem;
}

.site-header .navbar-brand {
  display: inline-flex;
  align-items: center;
  margin-right: 1.25rem;
  padding: 0;
}

.site-header .navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(35, 25, 18, 0.28);
  box-shadow: none;
  padding: 0.45rem 0.7rem;
  border-radius: 14px;
}

.site-header .navbar-toggler:focus {
  box-shadow: 0 0 0 0.18rem rgba(209, 166, 58, 0.22);
}

.site-header .navbar-toggler i {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
}

.site-header .navbar-collapse {
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}

.site-header .navbar-nav {
  align-items: center;
  gap: 0.45rem;
  transform: translateY(-10%);
}

.site-header .nav-item {
  display: flex;
  align-items: center;
}

.main-btn {
  background: var(--theme-color1);
  color: white;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 22px;
  font-size: 16px;
  border: none;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
  z-index: 1;
}

.main-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: #000;
  transform: translateX(-100%);
  transition: 0.5s ease;
  z-index: -1;
}

.main-btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: #000;
  transform: translateX(100%);
  transition: 0.5s ease;
  z-index: -1;
}

.main-btn:hover {
  color: #fff;
  /* transform: translateY(-4px);  */
}

.main-btn:hover::before {
  transform: translateX(0);
}

.main-btn:hover::after {
  transform: translateX(0);
}

.site-header .search-box {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 4px 10px;
  width: 220px;
}

.site-header .search-box input {
  background: transparent;
  border: none;
  outline: none;
  color: white;
  width: 100%;
  font-size: 13px;
  padding: 6px;
}

.site-header .search-box input::placeholder {
  color: white;
}

.site-header .search-btn {
  background: var(--theme-color1);
  border: none;
  border-radius: 50%;
  width: 43px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  font-size: 15px;
}

.site-header a.nav-link {
  color: white;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.1;
  padding: 0.4rem 0.85rem !important;
  white-space: nowrap;
}

.site-header .dropdown-toggle::after {
  margin-left: 0.35rem;
  vertical-align: 0.12em;
}

.site-header .navbar-collapse > .d-flex {
  flex: 0 0 auto;
  gap: 0.9rem !important;
}

.section--flush-top article.feature-banner:hover {
  transform: none;
}

.section--flush-top h2 {
  font-family: "REM";
  font-size: 44px;
  font-weight: 500;
  line-height: normal;
  max-width: 30%;
  margin: auto;
}

.section--flush-top p {
  color: white !important;
  max-width: 50%;
  margin: auto !important;
}

.space-section h2 {
  font-size: 44px;
  font-weight: 500;
  font-family: "REM";
  margin-bottom: 20px;
}

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

.space-section .space-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
}

.space-section .space-card--icon {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem 1.2rem;
  min-height: 260px;
  border: 1px solid rgba(209, 166, 58, 0.14);
  cursor: pointer;
}

.space-section .space-card--icon::before {
  display: block;
}

.space-card__icon {
  display: inline-flex;
  flex: 0 0 4.15rem;
  align-items: center;
  justify-content: center;
  width: 4.15rem;
  height: 4.15rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(209, 166, 58, 0.16), rgba(209, 166, 58, 0.08));
  position: relative;
  z-index: 3;
  transition: background-color 0.35s ease, transform 0.35s ease;
}

.space-card__icon img {
  width: 2rem;
  height: 2rem;
  position: relative;
  z-index: 3;
}

.space-card__body {
  display: grid;
  gap: 0.7rem;
  text-align: left;
  position: relative;
  z-index: 3;
  align-content: end;
  min-height: 100%;
}

.space-section .space-card__image {
  height: 260px;
  background-size: cover;
  background-position: center;
}

/* overlay clean fill */
.space-section .space-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--theme-color1);
  transform: translateY(100%);
  /* hidden */
  transition: transform 0.6s ease-in-out;
  z-index: 1;
}

/* label */
.space-section .space-card__label {
  position: static;
  z-index: 2;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  transition: 0.4s ease;
}

.space-section .space-card:hover::before {
  transform: translateY(0);
  /* bottom to top */
}

.space-section .space-card:hover .space-card__label {
  color: #fff;
}

.built-section {
  max-width: 100% !important;
  text-align: center;
}

.built-section h2 {
  font-size: 44px;
  font-family: "REm";
  margin-bottom: 20px;
}

.section--stats p {
  color: var(--theme-color2);
  font-weight: 300;
  font-family: "REM";
}

.section--stats h3 {
  font-size: 20px;
  font-weight: 500;
  color: black;
  font-family: "REM";
  margin-bottom: 20px;
}

.split-layout h2 {
  font-size: 44px;
  font-weight: 500;
  font-family: "REM";
  line-height: normal;
}

h2.main-title {
  font-size: 44px;
  font-family: "REm";
  margin-bottom: 20px;
}

.journal-grid .journal-card__image {
  height: 280px;
}

.journal-grid article.journal-card.reveal.is-visible {
  box-shadow: none;
}


.space-card {
  position: relative;
  overflow: hidden;
}

/* LABEL DEFAULT (top) */
.space-card__label {
  position: static;
  left: auto;
  z-index: 6;
  color: var(--ink);
  font-weight: 600;
  transition: all 0.5s ease;

}

/* PARAGRAPH HIDDEN */
.space-card .resident-para {
  position: static;
  left: auto;
  bottom: auto;
  width: 100%;
  padding: 0;
  margin: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
  font-size: 14px;
  line-height: 1.7;
  opacity: 1;
  transition: color 0.3s ease;
  z-index: 1;
}

/* ON HOVER PARAGRAPH SHOW */
.space-card:hover .resident-para {
  opacity: 1;
  color: #fff;
}

/* ON HOVER LABEL MOVE BOTTOM */
.space-card:hover .space-card__label {
  z-index: 222;
}

.space-card:hover .space-card__icon {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.copy-right p {
  font-size: 18px;
  font-weight: 300;
  color: black;
}

p.footer__tag,
a.footer__tag {
  color: var(--theme-color2);
  font-family: "REM";
}

a.footer-title {
  font-size: 22px;
  color: #696969;
}

footer img {
  width: 144px;
  height: 55px;
}

.footer-socials i {
  font-size: 27px;
  border: 1px solid black;
  padding: 10px;
  border-radius: 50%;
  display: inline-flex;
}

.footer-socials {
  display: flex;
  gap: 10px;
}



.about-banner .page-hero__content {
  max-width: 70%;
  margin: auto;
  text-align: center;
}

.about-banner p {
  margin: auto !important;
  max-width: 100% !important;
}

.about-banner h1 {
  font-size: 44px;
  font-weight: 600;
  font-family: "Poppins";
  letter-spacing: 3px;
  text-transform: uppercase;
}

.mision .feature-image {
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.mision .feature-image.right-mision {
  border-top-left-radius: 0;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 0;
  border-top-right-radius: 50%;
}

.mision .mision-div {
  max-width: 80%;
  margin-left: auto;
}

section.hcl-banner {
  min-height: 350px !important;
}

.hcl-banner a {
  font-size: 20px;
  font-weight: 400;
  font-family: "REM" !important;
  text-transform: uppercase;
  border: 2px solid var(--theme-color1);
  padding: 10px;
  border-radius: 10px;
}

.hcl-banner span {
  color: var(--theme-color1);
}

.inspired .section-header {
  text-align: center;
  padding: 52px 16px 36px;
}



.inspired .section-header p {
  font-size: 0.95rem;
  font-weight: 300;
  color: #6b5f54;
}

/* ── CSS-only Accordion ── */
.inspired .accordion-toggle {
  display: none;
}

.inspired .filter-group {
  border: 1px solid #ddd5c8;
  border-radius: 4px;
  margin-bottom: 10px;
  overflow: hidden;
}

.inspired .filter-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 14px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--theme-color2);
  cursor: pointer;
  background: #fff;
  user-select: none;
}

.inspired .filter-label .arrow {
  font-size: 0.65rem;
  display: inline-block;
  transition: transform 0.25s;
}

.inspired .filter-body {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height 0.3s ease;
}

.inspired .filter-body-inner {
  padding: 10px 14px 14px;
  border-top: 1px solid #ece6dd;
}

/* Checked = open */
.inspired .accordion-toggle:checked~.filter-body {
  max-height: 200px;
}

.inspired .accordion-toggle:checked~.filter-label .arrow {
  transform: rotate(180deg);
}

/* Shade checkboxes */
.inspired .shade-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #4a3f35;
  margin-bottom: 6px;
  cursor: pointer;
}

.inspired .shade-option input[type="checkbox"] {
  accent-color: #7a5c44;
  width: 14px;
  height: 14px;
}

/* ── Product Grid ── */
.inspired .grid-area {
  padding: 0 0 40px;
}

.inspired .product-card {
  cursor: pointer;
}

.inspired .swatch {
  width: 100%;
  aspect-ratio: 5 / 3;
  border-radius: 6px;
  display: block;
  transition: transform 0.2s, filter 0.2s;
}

.inspired .product-card:hover .swatch {
  filter: brightness(1.07);
  transform: translateY(-3px);
}

.inspired .product-name {
  font-size: 16px;
  font-weight: 400;
  color: var(--theme-color2);
  margin-top: 7px;
  text-align: center;
  letter-spacing: 0.02em;
}

section.inspired {
  background: linear-gradient(105deg, rgba(249, 241, 255, 1) 0%, rgba(255, 246, 216, 1) 99%);
}

.inspired .product-card {
  box-shadow: none;
  background: transparent;
  padding: 15px;
  border-color: #DCDCDC;
}

.site-header img {
  height: 53px;
}

/* ── Breadcrumb ── */
.single-page .breadcrumb-bar {
  background: #fff;

  padding: 10px 0;
}

.single-page .breadcrumb {
  margin: 0;
  font-size: 12.5px;
  color: #888;
}

.single-page .breadcrumb-item+.breadcrumb-item::before {
  color: #bbb;
}

.single-page .breadcrumb-item a {
  color: var(--theme-color2);
  text-decoration: none;
  font-size: 14px;
}

.single-page .breadcrumb-item.active {
  color: #2c2c2c;
  font-weight: 500;
}

/* ── Main product section ── */
.single-page .product-section {

  border-radius: 10px;
  margin-top: 28px;
  margin-bottom: 28px;
}

/* Product image card */
.single-page .product-image-wrap {
  background: #FAFAFA;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  position: relative;
  width: 100%;
  padding: 25px;
  height: 100%;
  border: 1px solid #CCCCCC80;
}

.single-page .product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-page .zoom-icon {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, .85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .15);
}

.single-page .zoom-icon svg {
  width: 14px;
  height: 14px;
  stroke: #555;
}

/* Right side header */
.single-page .product-title {
  font-family: "REM";
  font-size: 28px;
  font-weight: 400;
  color: black;
  margin-bottom: 2px;
}

.single-page .product-subtitle {
  font-size: 16px;
  color: var(--theme-color2);
  margin-bottom: 10px;
  font-weight: 300;
}

.single-page .product-code-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: #555;
}

.single-page .product-code-tag svg {
  width: 14px;
  height: 14px;
}

/* Download link */
.single-page .download-link {
  font-size: 12.5px;
  color: var(--theme-color1);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}



.single-page .download-link svg {
  width: 14px;
  height: 14px;
}

/* Spec table */
.single-page .spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 18px 0 22px;
}

.single-page .spec-table tr td {
  padding: 9px 14px;
  border: none;
  font-size: 14px;
  vertical-align: middle;
  font-family: "REM";
}

.single-page .spec-table tr td:first-child {
  background: #f0ede8;
  color: #555;
  font-weight: 500;
  width: 42%;
  border-right: 2px solid #fff;
}

.single-page .spec-table tr td:last-child {
  background: #f9f8f6;
  color: #2c2c2c;
}

.single-page .spec-table tr:first-child td:first-child {
  border-radius: 6px 0 0 0;
}

.single-page .spec-table tr:first-child td:last-child {
  border-radius: 0 6px 0 0;
}

.single-page .spec-table tr:last-child td:first-child {
  border-radius: 0 0 0 6px;
}

.single-page .spec-table tr:last-child td:last-child {
  border-radius: 0 0 6px 0;
}

.single-page .spec-table tr+tr td {
  border-top: 2px solid #fff;
}

/* Request Sample button */
.single-page .btn-sample {
  width: 100%;
  background: #EDEDED !important;
  border: 1.5px solid #d4cfc8;
  color: #0F0F0F;
  font-size: 17px;
  font-weight: 500;
  padding: 11px;
  border-radius: 6px;
  transition: background .18s, border-color .18s;
}

.single-page .btn-sample:hover {
  background: #f0ede8;
  border-color: #bbb;
  color: #1a1a1a;
}

/* ── Related Products ── */
.single-page .related-section {
  margin-bottom: 40px;
}

.single-page .related-title {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.single-page .related-card {
  cursor: pointer;
  text-align: center;
}

.single-page .related-card-img {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  width: 100%;
  margin-bottom: 10px;
  transition: box-shadow .2s;
}

.single-page .related-card:hover .related-card-img {
  box-shadow: 0 4px 16px rgba(0, 0, 0, .14);
}

.single-page .related-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.single-page .related-card-label {
  font-size: 20px;
  font-weight: 500;
  color: var(--theme-color2);
}

/* Placeholder gradient swatches for related (no real images) */
.swatch-wood {
  background: linear-gradient(135deg, #5c3d2e 0%, #8b5c3a 40%, #4a2e1a 100%);
}

.single-page .swatch-solid {
  background: linear-gradient(135deg, #9b6b72 0%, #b88a90 100%);
}

.single-page .swatch-patter {
  background: linear-gradient(135deg, #7a7a7a 0%, #aaa 50%, #666 100%);
}

.single-page .swatch-fabric {
  background: linear-gradient(135deg, #c9a4a0 0%, #d4b8b0 50%, #b89090 100%);
}


.footer h3 {
  font-size: 21px;
  color: #4E4E4E;
}

.catalog .catalog-card {
  background: #fff;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  max-width: 900px;
  margin: auto;
  position: relative;
}

.catalog .catalog-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 14px;
}

/* Left Right Arrows */
.catalog .catalog-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: 0.25s ease;
}

.catalog .catalog-arrow:hover {
  background: var(--theme-color1);
  color: #fff;
}

.catalog .catalog-arrow.left {
  left: 0px;
}

.catalog .catalog-arrow.right {
  right: 0px;
}

/* Bottom Toolbar */
.catalog .catalog-toolbar {
  margin-top: 18px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  flex-wrap: wrap;
  gap: 12px;
}

.catalog .toolbar-left,
.catalog .toolbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.catalog .tool-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: 0.25s ease;
}

.catalog .tool-btn:hover {
  background: var(--theme-color1);
  color: #fff;
  border-color: var(--theme-color1);
}

.catalog .page-box {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 6px 12px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.catalog .page-box input {
  width: 45px;
  border: none;
  outline: none;
  text-align: center;
  font-weight: 700;
}

.inspiration .catalog-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.inspiration .catalog-buttons a {
  border: 1px solid #ddd;
  padding: 6px 18px;
  border-radius: 6px;
  background: #fff;
  font-weight: 600;
  font-size: 14px;
  color: #666;
  text-decoration: none;
  transition: 0.3s;
}

.inspiration .catalog-buttons a.active {
  background: var(--theme-color1);
  border-color: var(--theme-color1);
  color: #fff;
}

/* Cards */
.inspiration .catalog-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.inspiration .catalog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Owl Nav */
.inspiration .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--theme-color1) !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff !important;
  font-size: 20px !important;
}

.inspiration .owl-nav .owl-prev {
  left: -20px;
}

.inspiration .owl-nav .owl-next {
  right: -20px;
}

.highlights .feature-card {
  border: none;
  text-align: left;
  padding: 20px;
  transition: transform 0.3s;
}

.highlights .feature-card:hover {
  transform: translateY(-5px);
}

.highlights .feature-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.highlights .feature-title {
  font-weight: 600;
  margin-bottom: 8px;
  font-family: "REM";
}

.highlights .feature-desc {
  color: #6c757d;
  font-size: 0.95rem;
}

.contact .info-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(90, 62, 29, 0.14);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 241, 0.98));
  height: 100%;
  box-shadow: 0 20px 44px rgba(62, 38, 18, 0.08);
}

.contact .info-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.65) 48%, transparent 100%);
  transform: translateX(-130%);
  transition: transform 0.65s ease;
}

.contact .info-card>* {
  position: relative;
  z-index: 1;
}

.contact .info-card:hover {
  transform: translateY(-8px);
  border-color: rgba(209, 166, 58, 0.28);
  box-shadow: 0 28px 56px rgba(62, 38, 18, 0.14);
}

.contact .info-card:hover::after {
  transform: translateX(130%);
}

.contact .info-card i {
  font-size: 28px;
  color: var(--theme-color1);
  margin-bottom: 14px;
}

.contact .contact-form-panel {
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: 28px;
  padding: clamp(1.5rem, 2vw, 2.25rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 235, 0.98));
  border: 1px solid rgba(90, 62, 29, 0.12);
  box-shadow: 0 24px 58px rgba(62, 38, 18, 0.12);
}

.contact .contact-form-panel::before {
  content: "";
  position: absolute;
  top: -25%;
  right: -10%;
  width: 15rem;
  height: 15rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(209, 166, 58, 0.18) 0%, rgba(209, 166, 58, 0) 72%);
  pointer-events: none;
}

.contact .contact-form-panel__header {
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}

.contact .contact-form-panel__header h3 {
  font-size: clamp(1.85rem, 2.4vw, 2.5rem);
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.contact .contact-form-panel__header p:last-child {
  margin-bottom: 0;
  color: var(--ink-muted);
  line-height: 1.75;
}

.contact .contact-topic-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.contact .contact-topic {
  padding: 1rem 1rem 0.95rem;
  border-radius: 18px;
  border: 1px solid rgba(90, 62, 29, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 32px rgba(62, 38, 18, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.contact .contact-topic:hover {
  transform: translateY(-4px);
  border-color: rgba(209, 166, 58, 0.24);
  box-shadow: 0 18px 40px rgba(62, 38, 18, 0.1);
}

.contact .contact-topic h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.contact .contact-topic p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--ink-muted);
  margin: 0;
}

.contact .contact-form .form-control {
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
  border-radius: 16px;
  border: 1px solid rgba(90, 62, 29, 0.12);
  background: rgba(255, 253, 248, 0.96);
  padding: 0.95rem 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease, background-color 0.24s ease;
}

.contact .contact-form .form-control:focus {
  border-color: rgba(209, 166, 58, 0.65);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(209, 166, 58, 0.12);
  transform: translateY(-1px);
}

.contact .send-btn {
  background-color: var(--theme-color1);
  border: none;
  border-radius: 999px;
  padding: 0.95rem 1.45rem;
  box-shadow: 0 18px 34px rgba(209, 166, 58, 0.24);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.contact .send-btn:hover {
  background-color: var(--theme-color1);
  transform: translateY(-2px);
  box-shadow: 0 24px 38px rgba(209, 166, 58, 0.3);
}

.contact .send-btn span {
  display: inline-flex;
  transition: transform 0.24s ease;
}

.contact .send-btn:hover span {
  transform: translateX(4px);
}

.contact .social-icons a {
  font-size: 20px;
  color: #000;
  margin-right: 15px;
  transition: color 0.3s;
}

.contact .social-icons a:hover {
  color: #cfa827;
}

.contact .contact-social-row {
  padding-top: 0.5rem;
}

.contact .map-responsive {
  overflow: hidden;
  position: relative;
  height: 100%;
  min-height: 32rem;
  border-radius: 28px;
  border: 1px solid rgba(90, 62, 29, 0.12);
  box-shadow: 0 24px 58px rgba(62, 38, 18, 0.12);
}

.contact .map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  border-radius: 28px;
  transition: transform 0.8s ease;
}

.contact .map-responsive:hover iframe {
  transform: scale(1.04);
}

.faq .faq-wrapper {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 241, 0.96));
  border-radius: 28px;
  border: 1px solid rgba(90, 62, 29, 0.12);
  box-shadow: 0 24px 58px rgba(62, 38, 18, 0.1);
  overflow: hidden;
  width: 100%;
}

/* ── LEFT SIDEBAR ── */
.faq .sidebar {

  padding: 28px 20px;
}

.faq .sidebar-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: all 0.2s ease;
  margin-bottom: 6px;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  text-decoration: none;
}

.faq .sidebar-item:hover,
.faq .sidebar-item:focus,
.faq .sidebar-item.is-active {
  border-color: #1a1a1a;
  background: #1a1a1a;
  color: #ffffff;
  outline: none;
}

.faq .sidebar-item .chevron {
  font-size: 0.9rem;
  opacity: 0.45;
  transition: opacity 0.2s;
}

.faq .sidebar-item:hover .chevron,
.faq .sidebar-item:focus .chevron,
.faq .sidebar-item.is-active .chevron {
  opacity: 1;
  color: #ffffff;
}

/* ── RIGHT PANEL ── */
.faq .faq-panel {
  padding: 28px 24px;
}

/* ── PURE CSS ACCORDION via <details> / <summary> ── */
.faq details {
  border: 1.5px solid #ebebeb;
  border-radius: 16px;
  margin-bottom: 10px;
  overflow: hidden;
  background: #ffffff;
  transition: box-shadow 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.faq details:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.faq details[open] {
  border-color: rgba(209, 166, 58, 0.24);
  box-shadow: 0 14px 34px rgba(62, 38, 18, 0.08);
}

.faq summary {

  font-size: 1rem;
  font-weight: 400;
  color: #1a1a1a;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: -0.01em;
  user-select: none;
}

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

.faq summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  font-family: 'DM Sans', sans-serif;
  color: #888;
  flex-shrink: 0;
  margin-left: 12px;
  transition: color 0.2s;
}

details[open]>summary::after {
  content: '×';
  color: #1a1a1a;
}

details[open]>summary {
  border-bottom: 1.5px solid #ebebeb;
  border-radius: 12px 12px 0 0;
}

.faq .faq-body {
  font-size: 0.84rem;
  color: #5a5a5a;
  line-height: 1.7;
  padding: 16px 20px 18px;
  background: #fafaf8;
  animation: faq-body-fade 0.32s ease;
}

/* new css end  */

@keyframes faq-body-fade {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

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



/* Dropdown arrow color */
.dropdown-toggle::after {
  border-top: 0.35em solid #f4b400;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff9ef;
}

.brand__symbol {
  width: 2.1rem;
  height: 2.8rem;
  border: 3px solid var(--gold);
  border-radius: 1.2rem 1.4rem 1.2rem 1.4rem;
  transform: rotate(-18deg);
  position: relative;
}

.brand__symbol::after {
  content: "";
  position: absolute;
  right: -0.5rem;
  bottom: 0.1rem;
  width: 0.7rem;
  height: 1rem;
  border: 3px solid var(--gold);
  border-radius: 1rem;
}

.brand__copy {
  display: grid;
  gap: 0.08rem;
}

.brand__text {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.03em;
}

.brand__sub {
  font-size: 0.42rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  color: rgba(255, 248, 238, 0.72);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.92rem;
  color: rgba(255, 246, 228, 0.8);
}

.nav__tools {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-search {
  display: inline-flex;
  align-items: center;
  width: 12rem;
  padding: 0 0.9rem;
  min-height: 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.nav-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff8ef;
  font: inherit;
}

.nav-search input::placeholder {
  color: rgba(255, 248, 239, 0.72);
}

.nav-search__icon {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: var(--gold);
  color: #2a1c10;
  font-weight: 800;
}

.nav__links a {
  position: relative;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav__links a:hover::after {
  transform: scaleX(1);
}

.section {
  padding: 5.5rem 0;
}

.section--tight {
  padding-top: 4.5rem;
  padding-bottom: 4rem;
}

.section--flush-top {
  padding-top: 0;
}

.stat {
  min-height: 12rem;
  padding: 1.5rem;
  box-shadow: none !important;
  border-color: #eae3e3;
}

.section--soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0));
}

.eyebrow {
  margin: 0 0 0.9rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow--gold {
  color: var(--gold-deep);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.72);
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3.3rem, 7vw, 5.9rem);
}

h2 {
  font-size: clamp(2.1rem, 4.5vw, 3.8rem);
}

.section-heading {
  max-width: 70%;
  margin: auto;
}

.section-heading--center {
  margin: 0 auto 2.25rem;
  text-align: center;
}

.section-copy {
  max-width: 34rem;
  margin: auto;
  color: var(--theme-color2);
  margin-bottom: 20px;
  font-family: "REM";
  font-weight: 300;
}

.button,
.button--ghost,
.button--light,
.button--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.82rem 1.35rem;
  border: 0;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button {
  color: #2b1c0e;
  background: linear-gradient(180deg, #e0b84a 0%, #cc9f2a 100%);
  box-shadow: 0 18px 32px rgba(209, 166, 58, 0.22);
}

.button:hover,
.button--ghost:hover,
.button--light:hover,
.button--outline:hover {
  transform: translateY(-1px);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff8ee;
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(8px);
}

.button--compact {
  min-height: 2.7rem;
  padding-inline: 1rem;
}

.button--light {
  background: #fff;
  color: #25190e;
}

.button--outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.link-arrow,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 13px;
  margin: 0 0 0 20px;
}

.link-arrow::after,
.text-link::after {
  content: "→";
}

.link-arrow--light {
  color: #fff8ef;
}

.pill,
.meta-text {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.pill {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(209, 166, 58, 0.12);
  color: var(--gold-deep);
}

.meta-text {
  color: var(--ink-muted);
  text-transform: uppercase;
}

.meta-text--light {
  color: rgba(255, 255, 255, 0.8);
}

.hero,
.page-hero,
.article-hero {
  position: relative;
  color: #fffef9;
  background-position: center;
  background-size: cover;
  animation: hero-pan 18s ease-in-out infinite alternate;
}

.hero {
  min-height: 44rem;
}

/* .hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 9rem;
  background: linear-gradient(180deg, rgba(247, 242, 235, 0), rgba(247, 242, 235, 0.9));
} */

.page-hero,
.article-hero {
  min-height: 38rem;
}

body.page-hero-compact .page-hero {
  min-height: 30.4rem;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), transparent 24%),
    linear-gradient(180deg, transparent 40%, rgba(14, 10, 8, 0.74) 100%);
}

.hero__content,
.page-hero__content,
.article-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: center;
}

.hero__copy {

  margin: 10rem 0 4rem;
  opacity: 0;
  text-align: center;
  transform: translateY(26px);
  transition: opacity 850ms ease 120ms, transform 850ms ease 120ms;
}

.page-hero__content,
.article-hero__content {
  gap: 1rem;
  padding-top: 8rem;
  padding-bottom: 4rem;
  max-width: 46rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 850ms ease 120ms, transform 850ms ease 120ms;
}

body.page-hero-compact .page-hero__content {
  padding-top: 6.4rem;
  padding-bottom: 3.2rem;
}

.hero__lead,
.page-hero__content p,
.article-hero__content p {
  max-width: 34rem;
  margin: 0;
  color: rgba(255, 247, 233, 0.82);
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin-top: 2rem;
}

@keyframes hero-pan {
  from {
    background-position: 50% 50%;
  }

  to {
    background-position: 54% 47%;
  }
}


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

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

.product-card,
.catalog-card,
.journal-card,
.gallery-card,
.stat,
.contact-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.product-card__media,
.catalog-card__media,
.journal-card__image,
.gallery-card__image,
.feature-image,
.story-visual__image,
.image-stack__image,
.featured-post__image {
  background-position: center;
  background-size: cover;
  transition: transform 380ms ease;
}

.product-showcase {
  display: grid;
  grid-template-columns: 4rem minmax(0, 2.4fr) repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.product-showcase__nav {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin: auto 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-muted);
  background: rgba(255, 255, 255, 0.75);
}

.product-primary,
.product-accent {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.product-primary {
  display: grid;
  grid-template-columns: minmax(11rem, 15rem) minmax(0, 1fr);
  overflow: hidden;
}

.product-primary__swatch,
.product-accent__swatch {
  min-height: 14rem;
}

.product-primary__swatch--wood {
  background:
    repeating-linear-gradient(90deg,
      #7f5534 0,
      #7f5534 12px,
      #8e613a 12px,
      #8e613a 24px,
      #75482b 24px,
      #75482b 32px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.08));
}

.product-primary__content {
  padding: 1.5rem;
}

.product-primary__content h3,
.product-accent h3 {
  margin-bottom: 0.85rem;
  font-size: 2rem;
  letter-spacing: -0.02em;
}

.product-primary__content p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.product-accent {
  padding: 1rem;
}

.product-accent__swatch--solid {
  border-radius: 14px;
  background: #4b8080;
}

.product-accent__swatch--pattern {
  border-radius: 14px;
  background:
    repeating-linear-gradient(135deg,
      #553224 0,
      #553224 10px,
      #734735 10px,
      #734735 22px,
      #3f221a 22px,
      #3f221a 32px);
}

.product-card__media {
  min-height: 13rem;
}

.product-card__body,
.catalog-card__body,
.journal-card__body,
.gallery-card__body {
  padding: 1.2rem;
}

.product-card__body h3,
.journal-card__body h3 {
  margin-top: 0.9rem;
  font-size: 1.08rem;
}

.product-card__body p,
.catalog-card__body p,
.journal-card__body p,
.gallery-card__body p,
.featured-post__body p,
.contact-card p,
.footer p,
.feature-banner__content p {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.feature-banner {
  overflow: hidden;
  min-height: 22rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background-position: center;
  background-size: cover;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.feature-banner--compact {
  min-height: 20rem;
}

.feature-banner__content {
  display: flex;
  min-height: 472px;
  margin: auto;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 2.5rem;
  color: #fffdf8;
  text-align: center;

}

.split-layout {
  /* display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr); */
  align-items: center;
  gap: 3rem;
}

.split-layout--reverse> :first-child {
  order: 1;
}

/* .story-visual__image {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 30rem);
  height: 22rem;
  border-radius: var(--radius-lg);
} */
.story-visual__image {
  /* position: absolute; */
  top: 0;
  right: 0;
  /* width: min(100%, 30rem); */
  height: 22rem;
  border-radius: var(--radius-lg);
}

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

.space-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.space-card__image {
  min-height: 17rem;
  background-position: center;
  background-size: cover;
  transition: transform 380ms ease;
}

.space-card__label {
  /* padding: 0.95rem 0; */
  font-size: 1.1rem;
  font-weight: 800;
}

.stat {
  min-height: 12rem;
  padding: 1.5rem;
}

.stat__icon {
  display: inline-flex;
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.story-visual__frame {
  width: 52%;
  height: 62%;
}

.feature-image {
  min-height: 22rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.feature-image--wide {
  min-height: 24rem;
}

.feature-image--tall {
  min-height: 28rem;
}

.catalog-grid {
  display: grid;
  gap: 1.25rem;
}

.catalog-card {
  display: flex;
  flex-direction: column;
  /* ← this stacks image THEN toolbar */
  gap: 0;
}

.catalog-card__media {
  min-height: 20rem;
}

.catalog-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.5rem;
}

.catalog-card__footer {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

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

.gallery-card__image {
  min-height: 18rem;
}

.featured-post {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.featured-post__image {
  min-height: 24rem;
}

.featured-post__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.article-hero__content {
  padding-top: 10rem;
}

.prose {
  color: var(--ink-soft);
  line-height: 1.9;
}

.prose--narrow {
  max-width: 44rem;
}

.prose p+p {
  margin-top: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.2rem;
}

.contact-card {
  padding: 1.5rem;
}

.contact-list p+p {
  margin-top: 1.1rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(83, 60, 36, 0.16);
  border-radius: 14px;
  background: #fff;
  font: inherit;
  color: var(--ink);
}

.alert {
  margin-bottom: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  font-size: 0.92rem;
}

.alert p {
  margin: 0;
}

.alert p+p {
  margin-top: 0.4rem;
}


.alert--success {
  background: rgba(45, 140, 91, 0.12);
  color: #21623f;
}

.alert--error {
  background: rgba(189, 52, 52, 0.12);
  color: #8d2020;
}

.footer {
  background-image: url("../images/footer-banner.png") !important;
  padding: 2.6rem 0 3rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.15)),
    var(--surface-muted);
  background-blend-mode: overlay;
  background-color: #8C8C8C33;
}


.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 1.5rem;
}

.brand--footer {
  color: var(--gold-deep);
}

.brand--footer .brand__text {
  color: var(--gold-deep);
}

.brand--footer .brand__sub {
  color: var(--ink-muted);
}


.page-ready .site-header,
.page-ready .hero__copy,
.page-ready .page-hero__content,
.page-ready .article-hero__content {
  opacity: 1;
  transform: translateY(0);
}

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

.reveal--left {
  transform: translate3d(-48px, 0, 0);
}

.reveal--right {
  transform: translate3d(48px, 0, 0);
}

.reveal--scale {
  transform: translateY(18px) scale(0.94);
}

.reveal--soft {
  transform: translateY(18px);
}

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

.product-primary:hover,
.product-accent:hover,
.product-card:hover,
.catalog-card:hover,
.journal-card:hover,
.gallery-card:hover,
.stat:hover,
.contact-card:hover,
.space-card:hover,
.feature-banner:hover,
.featured-post:hover,
.feature-image:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(47, 31, 18, 0.16);
}

.product-primary:hover,
.product-accent:hover,
.product-card:hover,
.catalog-card:hover,
.journal-card:hover,
.gallery-card:hover,
.stat:hover,
.contact-card:hover,
.featured-post:hover {
  border-color: rgba(209, 166, 58, 0.28);
}

.space-card:hover .space-card__image,
.journal-card:hover .journal-card__image,
.catalog-card:hover .catalog-card__media,
.gallery-card:hover .gallery-card__image,
.featured-post:hover .featured-post__image,
.feature-banner:hover,
.feature-image:hover,
.story-visual:hover .story-visual__image {
  transform: scale(1.04);
}

.product-showcase__nav,
.button,
.button--ghost,
.button--light,
.button--outline {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.product-showcase__nav:hover {
  transform: translateX(-2px);
  border-color: rgba(209, 166, 58, 0.32);
  color: var(--gold-deep);
}

.violam-products-sync {
  padding: 70px 0;
  background: #f8f9fa;
}

.violam-products-heading {
  margin-bottom: 45px;
}

.gold-text {
  color: var(--gold);
}

.home-h2 {
  font-weight: 800;
  font-size: 36px;
  margin-bottom: 15px;
}

.home-p {
  max-width: 850px;
  margin: auto;
  font-size: 16px;
  color: #666;
}

.main-sync-wrapper {
  display: flex;
  gap: 30px;
  align-items: center;
}

.fixed-display-column {
  width: 45%;
}

.slider-scroll-column {
  width: 55%;
  position: relative;
}

.display-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.display-card:hover {
  transform: translateX(-8px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.display-img img {
  width: 100%;
  max-width: 280px;
  transition: 0.4s;
  opacity: 1;
}

.display-text h3 {
  margin-top: 20px;
  font-weight: 800;
  font-size: 20px;
}

.display-text p {
  font-size: 15px;
  color: #666;
}

/* Slider Item */
.slide-wrap {
  padding: 10px;
}

.item-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
  border: 2px solid transparent;
}

.item-card:hover {
  transform: translateX(-14px);
  border-color: var(--gold);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.item-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
}

.item-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* Buttons */
.nav-btns {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.c-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: var(--gold);
  color: white;
  font-size: 18px;
  transition: 0.3s;
}

.c-btn:hover {
  background: #000;
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .site-header,
  .hero__copy,
  .page-hero__content,
  .article-hero__content,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 991px) {
  .contact .contact-topic-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact .map-responsive {
    min-height: 26rem;
  }
}

@media (max-width: 767px) {
  .contact .contact-form-panel {
    padding: 1.35rem;
    border-radius: 22px;
  }

  .contact .contact-topic-list {
    grid-template-columns: 1fr;
  }

  .contact .map-responsive {
    min-height: 22rem;
    border-radius: 22px;
  }

  .faq .faq-wrapper {
    border-radius: 22px;
  }
}

@media (max-width: 1100px) {

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

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

  .product-showcase__nav {
    display: none;
  }

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

  .split-layout,
  .contact-grid,
  .featured-post,
  .catalog-card,
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .main-sync-wrapper {
    flex-direction: column;
  }

  .fixed-display-column,
  .slider-scroll-column {
    width: 100%;
  }

  .item-card {
    width: 250px;
  }

  h2.main-title {
    font-size: 38px;

  }
}

@media(max-width:767px) {
  h2.main-title {
    font-size: 32px;

  }

  .highlights .feature-divider-vertical {
    border-left: 1px solid #dee2e6;
  }

  .highlights .feature-divider-horizontal {
    border-top: 1px solid #dee2e6;
  }
}

@media(max-width:575px) {
  h2.main-title {
    font-size: 24px;

  }

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

  .catalog .catalog-arrow.left {
    left: 10px;
  }


  .catalog .catalog-arrow.right {
    right: 10px;
  }

  .catalog .catalog-toolbar {


    justify-content: center;


  }
}

@media (max-width: 1200px) {
  .site-header .custom-navbar > .container {
    gap: 1rem;
  }

  .site-header .navbar-nav {
    gap: 0.15rem;
    transform: translateY(-10%);
  }

  .site-header a.nav-link {
    padding-inline: 0.68rem !important;
    font-size: 14px;
  }

  .site-header .search-box {
    width: 200px;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: relative;
    background: linear-gradient(180deg, #2b2119, #1c1510);
  }

  .brand {
    color: #fff8ee;
  }

  .nav {
    flex-wrap: wrap;
  }

  .nav__links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero__copy {
    margin-top: 4rem;
  }

  .nav__tools {
    width: 100%;
    justify-content: flex-end;
  }

  .hero,
  .page-hero,
  .article-hero {
    min-height: auto;
  }

  .hero__content,
  .page-hero__content,
  .article-hero__content {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .site-header,
  .nav,
  .container {
    overflow: visible !important;
  }

  .dropdown-menu {
    z-index: 99999 !important;
  }

  .space-section .space-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .site-header .navbar-collapse {
    width: 100%;
    margin-top: 12px;
    padding: 16px;
    background: rgba(255, 249, 239, 0.98);
    border: 1px solid rgba(209, 166, 58, 0.18);
    box-shadow: 0 16px 34px rgba(43, 31, 18, 0.12);
    border-radius: 16px;
  }

  .site-header .navbar-nav {
    width: 100%;
    align-items: stretch;
    text-align: left;
    gap: 0;
    transform: none;
  }

  .site-header .nav-item {
    display: block;
  }

  .site-header .navbar-nav .nav-link {
    display: block;
    padding: 0.8rem 0.35rem !important;
    color: #3f2c1f;
    font-size: 0.94rem;
  }

  .site-header .dropdown-menu {
    position: static !important;
    width: 100%;
    margin-top: 8px;
    background: rgba(247, 239, 226, 0.98);
    border: 1px solid rgba(209, 166, 58, 0.12);
    box-shadow: none;
  }

  .site-header .dropdown-item {
    color: #3f2c1f;
    text-align: left;
  }

  .site-header .navbar-collapse > .d-flex {
    width: 100%;
    margin-top: 0.8rem;
    align-items: stretch !important;
  }

  .site-header .search-box {
    width: 100%;
  }

  .site-header .search-box input {
    color: #3f2c1f;
  }

  .site-header .search-box input::placeholder {
    color: rgba(63, 44, 31, 0.7);
  }

  .site-header .main-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 680px) {

  .nav {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  /* Navbar should be visible */
  .nav__links {
    display: flex !important;
    width: 100%;
    justify-content: flex-end;
    order: 2;
  }

  /* Tools should be visible */
  .nav__tools {
    display: flex !important;
    width: 100%;
    justify-content: center;
    order: 3;
    margin-top: 12px;
  }

  /* Collapse dropdown background */
  .navbar-collapse {
    width: 100%;
    margin-top: 12px;
    padding: 15px;
    border-radius: 16px;
  }

  .navbar-nav {
    width: 100%;
    text-align: center;
    gap: 0;
    transform: none;
  }

  .navbar-nav .nav-link {
    display: block;
    padding: 10px 0;
    font-size: 0.9rem;
    color: #3f2c1f;
  }

  /* Dropdown menu inside collapse */
  .dropdown-menu {
    position: static !important;
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }

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

@media(max-width:1399px) {

  .section--flush-top h2 {

    max-width: 60%;

  }
}
