:root {
  --surface: #fff;
  --surface-2: #FAF4EC;
  --bg: #3D1A00;
  --bg-dark: #1f0b00;
  --text: #fff;
  --text-dark: #3D1A00;
  --accent: #8B4513;
  --muted: rgba(255, 255, 255, 0.75);
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
 
  color: var(--text);
}

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

button,
input,
textarea,
a {
  font: inherit;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-wrap {
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 22%), linear-gradient(180deg, var(--bg) 0%, var(--bg-dark) 100%);
    padding:100px 0px 100px 0px
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: 100%;
  width: 100%;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;    background-position: center;
}

.hero-slide .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(100deg, rgba(20, 8, 0, 0.5) 0%, rgba(20, 8, 0, 0.35) 45%, rgba(20, 8, 0, 0.2) 100%);
}

.hero-slide .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.hero-slider .swiper-pagination-bullet-active {
  background: var(--accent);
}

.top-bar {
  background: #2b1200;
  color: var(--surface);
  font-size: 0.95rem;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--surface);
  text-decoration: none;
}

.top-bar-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.site-header {
  background: var(--surface);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-dark);
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--text-dark);
  color: var(--surface);
  border-radius: 18px;
  font-size: 1.05rem;
  font-weight: 700;
}

.brand-name {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.brand-copy {
  display: block;
  margin: 4px 0 0;
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.14em;    color: #ffffff;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
}

.nav-list a.active {
  color: var(--accent);
}

.nav-cta {
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--text-dark);
  color: var(--surface);
}

.nav-cta-mobile {
  display: none;
}

.dropdown-toggle:focus-visible,
.nav-list a:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 8px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.icon-link {
  position: relative;
  display: inline-flex;
  color: var(--text-dark);
}

.icon-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--surface);
  font-size: 0.62rem;
  font-weight: 700;
  border-radius: 50%;
}

/* Dropdown menus */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--text-dark);
  font-weight: 600;
}

.dropdown-toggle svg {
  transition: transform 0.2s ease;
}

.dropdown.open .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 200px;
  margin: 0;
  padding: 10px;
  list-style: none;
  background: var(--surface);
  border-radius: 16px;
  box-shadow: var(--shadow);
  z-index: 30;
}

.dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
}

.dropdown-menu li a:hover {
  background: var(--surface-2);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 46px;
    height: 43px;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    background: rgba(61, 26, 0, 0.08);
    position: absolute;
    right: 10px;
    top: 16px;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-dark);
}

.hamburger::before,
.hamburger::after {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hamburger::before {
  transform: translateY(-8px);
}

.hamburger::after {
  transform: translateY(8px);
}

/* .nav-toggle.open .hamburger {
  background: transparent;
}

.nav-toggle.open .hamburger::before {
  transform: rotate(45deg);
}

.nav-toggle.open .hamburger::after {
    transform: rotate(-47deg);
} */

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 32px;
}

.hero-copy {
  color: var(--surface);
}

.hero-eyebrow {
  margin: 0 0 18px;
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--surface);
  opacity: 0.85;
}

.hero-eyebrow-badge {
  display: inline-block;
  margin: 0 0 20px;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--surface);
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  border-radius: 0px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  text-decoration: none;
}

.category-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface);
  color: var(--accent);
  box-shadow: 0 10px 24px rgba(61, 26, 0, 0.08);
}

.category-card span:last-child {
 color: #3D1A00;
font-family: Inter;
font-size: 12px;
font-style: normal;
font-weight: 600;
line-height: 16px; /* 133.333% */
letter-spacing: 0.3px;
text-transform: uppercase;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;color: #FFF;
font-family: "Playfair Display";
font-size: 60px;
font-style: normal;
font-weight: 600;
line-height: 75px;  
}

.hero-copy h1 span {
  color: var(--accent);
}

.hero-text {
  margin: 24px 0 28px;
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.9;color: #D1D5DC;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 26px; /* 162.5% */
}

.hero-list {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  font-weight: 400;
  padding: 14px 28px;    gap: 8px;
}

.btn-primary {
  background: var(--accent);
  color: var(--surface);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-media {
  display: grid;
  gap: 22px;
}

.hero-image-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  display: block;
}

.hero-badge {
  position: absolute;
  left: 22px;
  bottom: -16px;
  background: var(--surface);
  color: var(--text-dark);
  padding: 18px 22px;
  border-radius: 22px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.2);
  display: inline-grid;
  gap: 6px;
}

.hero-badge strong {
  font-size: 1.35rem;
  display: block;
}

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

.feature-pill {
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.feature-pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: rgba(139, 69, 19, 0.25);
  color: var(--accent);
}

.feature-pill h4 {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
}

.feature-pill p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

.section-label {
  margin: 0 0 16px;
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-heading h2 {
  margin: 0 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.05;
  color: var(--surface);
}

.section-heading p {
  margin: 0;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.info-block,
.features,
.gallery-preview,
.contact-panel {
  padding: 52px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.info-grid article {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.info-grid h4,
.feature-card h4 {
  margin: 0 0 14px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  color: var(--surface);
}

.info-grid p,
.feature-card p,
.gallery-card,
.contact-panel p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.8);
}

.features h2 {
  margin: 0 0 18px;
  color: var(--surface);
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.feature-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.gallery-preview .gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 22px;
  margin-top: 32px;
}

.gallery-card {
  min-height: 260px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  color: var(--surface);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  padding: 0px;
  text-align: center;
}

.gallery-card--large {
  min-height: 540px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 28px;
  align-items: center;
}

.contact-panel h2 {
  margin: 0 0 18px;
  color: var(--surface);
}

.contact-panel p {
  max-width: 42ch;
}

.site-footer {
  padding-top: 28px;
  color: rgba(255, 255, 255, 0.7);
}

/* Page banner (About / Contact / inner pages) */
.page-banner {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  text-align: left;
  color: var(--surface);
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 22%), linear-gradient(180deg, var(--bg) 0%, var(--bg-dark) 100%);
}

.page-banner--photo {
  background-size: cover;
  background-position: center;
}

.page-banner--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(100deg, rgba(20, 8, 0, 0.85) 0%, rgba(20, 8, 0, 0.6) 60%, rgba(20, 8, 0, 0.4) 100%);
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  margin: 10px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--surface);
}

.page-banner-text {
  margin: 16px 0 0;
  max-width: 52ch;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
}

.page-banner-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.page-banner-brand::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--accent);
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb .current {
  color: var(--accent);
}

/* Contact page */
.contact-section {
  background: var(--surface);
  padding: 70px 0;
}

/* Products listing + detail pages */
.products-section {
  background: var(--surface-2);
  padding: 70px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 50px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(61, 26, 0, 0.06);
}

.product-image {
  position: relative;
}

.product-image img {
  width: 100%;
  height: 230px!important;
  object-fit: cover;
  display: block;
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--surface);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 22px 24px;
}

.product-category {
  margin-bottom: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.product-card h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.product-card p {
  flex: 1;
  margin: 0 0 6px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(61, 26, 0, 0.68);
}

.product-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(61, 26, 0, 0.08);
}

.product-price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);display:none;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none;
}

.product-link:hover {
  color: var(--accent);
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.pagination a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(61, 26, 0, 0.15);
  background: var(--surface);
  color: var(--text-dark);
  font-weight: 700;
  text-decoration: none;
}

.pagination a.active {
  background: var(--text-dark);
  border-color: var(--text-dark);
  color: var(--surface);
}

/* Product detail */
.product-detail-section {
  background: var(--surface);
  padding: 60px 0 20px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-gallery-main {
  position: relative;
  margin-bottom: 16px;
  border-radius: 16px;
  overflow: hidden;
}

.product-gallery-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.product-thumbs {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.product-thumb {
  width: 88px;
  height: 78px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: none;
}

.product-thumb.active {
  border-color: var(--accent);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-perks {
  padding: 24px;
  background: var(--surface-2);
  border-radius: 16px;
}

.product-perks ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.product-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.product-perks li svg {
  flex-shrink: 0;
  color: var(--accent);
}

.product-info h1 {
  margin: 8px 0 14px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--text-dark);
}

.product-info-price {
  margin-bottom: 20px;
  font-size: 1.3rem;
  font-weight: 700;display:none;
  color: var(--accent);
}

.product-divider {
  width: 60px;
  height: 2px;
  margin-bottom: 24px;
  background: var(--accent);
}

.product-info-desc {
  max-width: 56ch;
  margin-bottom: 28px;
  color: rgba(61, 26, 0, 0.75);
  line-height: 1.85;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}

.spec-table-title {
  margin: 0 0 20px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.spec-table {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.spec-table li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(61, 26, 0, 0.08);
  font-size: 0.92rem;
}

.spec-table li span:first-child {
  color: rgba(61, 26, 0, 0.6);
}

.spec-table li span:last-child {
  font-weight: 700;
  color: var(--text-dark);
}

.product-tabs-section {
  background: var(--surface);
  padding: 0 0 70px;
}

.product-tabs {
  margin-bottom: 40px;
}

.product-tab-panel {
  display: none;
max-width: 100%;
}

.product-tab-panel.active {
  display: block;
}

.product-tab-panel h3 {
  margin: 0 0 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  color: var(--text-dark);
}

.product-tab-panel p {
  margin: 0;
  color: rgba(61, 26, 0, 0.75);
  line-height: 1.9;
}

.product-tab-panel .spec-table {
  max-width: 100%;
}

.related-section {
  background: var(--surface-2);
  padding: 70px 0;
}

.contact-details h2 {
  margin: 12px 0 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--text-dark);
}

.contact-details > p {
  margin: 0 0 30px;
  max-width: 52ch;
  color: rgba(61, 26, 0, 0.72);
  line-height: 1.8;
}

.contact-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 20px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-list-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--surface-2);
  color: var(--accent);
}

.contact-list-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-list-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-list-text strong {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-dark);
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
}

.map-link:hover {
  color: var(--accent);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form-card {
  padding: 36px;
  background: var(--surface);
  border: 1px solid rgba(61, 26, 0, 0.08);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(61, 26, 0, 0.08);
}

.contact-form-card h2 {
  margin: 0 0 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  color: var(--text-dark);
}

.contact-form-card > p {
  margin: 0 0 28px;
  color: rgba(61, 26, 0, 0.68);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input, .form-group select, .form-group textarea {
    padding: 13px 16px;
    border: 1px solid rgba(61, 26, 0, 0.18);
    border-radius: 12px;
    background: var(--surface-2);
    color: var(--text-dark);
    font-size: 0.95rem;
    width: 100%;
    margin-top: 10px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.map-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(61, 26, 0, 0.08);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

.contact-hours {
  padding: 28px;
  background: var(--surface-2);
  border-radius: 20px;
}

.contact-hours h3 {
  margin: 0 0 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  color: var(--text-dark);
}

.contact-hours ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.contact-hours li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(61, 26, 0, 0.75);
}

.contact-hours li span:last-child {
  font-weight: 600;
  color: var(--text-dark);
}
.wpcf7-response-output {
    color: #000!important;
    text-align: center;
    margin: 0px!important;
}
/* About section */
.about-section {
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 80px;
}

.about-media {
  position: relative;
}

.about-frame {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.about-frame img {
  width: 100%;
  min-height: 380px;
  object-fit: cover;
}

.corner-accent {
  position: absolute;
  width: 70px;
  height: 70px;
  pointer-events: none;
}

.corner-accent--top {
  top: -18px;
  left: -18px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}

.corner-accent--bottom {
  bottom: -18px;
  right: -18px;
  border-bottom: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}

.about-stats {
    position: absolute;
    right: -14px;
    bottom: 28px;
    display: flex;
    background: var(--surface);
    border-radius: 5px;
    box-shadow: var(--shadow);
    padding: 15px 4px;
    z-index: 5;
}

.stat-item {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 22px;
  text-align: center;
}

.stat-item + .stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: rgba(61, 26, 0, 0.12);
}

.stat-icon {
  color: var(--accent);
}

.stat-item strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
  color: var(--text-dark);
}

.stat-item span:last-child {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(61, 26, 0, 0.6);
}

.about-content h2 {
  margin: 12px 0 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.2;
  color: var(--text-dark);
}

.about-content p {
  margin: 0 0 18px;
  max-width: 56ch;
  color: rgba(61, 26, 0, 0.72);
  line-height: 1.85;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 8px 0 30px;
}

.about-tags span {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 600;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 12px;
  background: var(--text-dark);
  color: var(--surface);
  text-decoration: none;
  font-weight: 600;
}

/* Services section */
.services-section {
    padding: 70px 0 70px;
    background: #3D1A00;
}
.section-intro {
  max-width: 680px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-intro h2 {
  margin: 14px 0 0;
color: #3D1A00;
text-align: center;
font-family: "Playfair Display";
font-size: 36px;
font-style: normal;
font-weight: 700;
line-height: 40px; /* 111.111% */
}

.section-intro p {
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 340px;
  border-radius: 7px;
  overflow: hidden;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(20, 8, 0, 0.9) 0%, rgba(20, 8, 0, 0.55) 42%, rgba(20, 8, 0, 0) 75%);
}

.service-content {
  position: relative;
  z-index: 2;
  padding: 30px;
}

.service-label {
  margin: 0 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
}

.service-content h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  color: var(--surface);
}

.service-content p {
  margin: 0 0 20px;
  max-width: 46ch;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--surface);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.services-divider {
  height: 1px;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.12);
}

.services-award {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.award-icon {
  color: var(--accent);
  flex-shrink: 0;
}

.award-text strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  color: var(--surface);
}

.award-text span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* Specializations section */
.specializations-section {
  background: var(--surface);
  padding: 70px 0;
}

.specializations-section .section-intro h2 {
  color: var(--text-dark);
}

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

.spec-image {
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
}

.spec-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.spec-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--surface-2);
  color: var(--accent);
}

.spec-card h3 {
  margin: 0 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  color: var(--text-dark);
}

.spec-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(61, 26, 0, 0.7);
}

/* Fit-out services section */
.fitout-section {
  background: var(--surface-2);
  padding: 70px 0;
}

.fitout-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.fitout-tab {
  padding: 12px 22px;
  border: 1px solid rgba(61, 26, 0, 0.15);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
}

.fitout-tab.active {
  background: var(--text-dark);
  border-color: var(--text-dark);
  color: var(--surface);
}

.fitout-panels {
  margin-top: 50px;
}

.fitout-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.fitout-panel.active {
  display: grid;
}

.fitout-copy h3 {
  margin: 0 0 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.7rem;
  color: var(--text-dark);
}

.fitout-copy p {
  margin: 0 0 22px;
  max-width: 52ch;
  color: rgba(61, 26, 0, 0.72);
  line-height: 1.8;
}

.fitout-list {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.fitout-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.fitout-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

.fitout-media img {
  width: 100%;
  min-height: 320px;
  border-radius: 20px;
  object-fit: cover;
}

/* Promo / limited time offer section */
.promo-section {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  color: var(--surface);
}

.promo-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.promo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 
.promo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(20, 8, 0, 0.92) 0%, rgba(20, 8, 0, 0.78) 45%, rgba(89, 42, 4, 0.55) 100%);
} */

.promo-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--surface);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.promo-eyebrow {
  margin: 0 0 14px;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.promo-copy h2 {
  margin: 0 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: var(--surface);
}

.promo-copy h2 span {
  color: var(--accent);
}

.promo-text {
  margin: 0 0 28px;
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.promo-countdown {
  text-align: center;
}

.countdown-label {
  margin: 0 0 16px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.countdown-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 64px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.countdown-value {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--surface);
}

.countdown-caption {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.countdown-sep {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
}

.promo-fineprint {
  margin: 16px 0 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Benefits section */
.benefits-section {
  background: var(--surface);
  padding: 70px 0;
}

.benefits-section .section-intro h2 {
  color: var(--text-dark);
}

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

.benefit-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid rgba(61, 26, 0, 0.08);
  border-radius: 16px;
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: var(--surface-2);
  color: var(--accent);
}

.benefit-card h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  color: var(--text-dark);color: #3D1A00;
font-family: "Playfair Display";
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: 24px; /* 150% */
}

.benefit-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(61, 26, 0, 0.68);
}

.benefit-cta {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--text-dark);
  border-radius: 16px;
}

.benefit-cta h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  color: var(--surface);
}

.benefit-cta p {
  margin: 0 0 22px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.benefit-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.benefit-cta-actions a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
}

.cta-email {
  background: var(--accent);
  color: var(--surface);
}

.cta-whatsapp {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--surface);
}

/* Portfolio section */
.portfolio-section {
  background: var(--surface-2);
  padding: 70px 0;
}

.portfolio-section .section-intro h2 {
  color: var(--text-dark);
}

.portfolio-section .section-intro p {
  color: rgba(61, 26, 0, 0.72);
}

.section-label--flanked {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.section-label--flanked::before,
.section-label--flanked::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 190px;
  gap: 20px;
  margin: 44px 0 44px;
}

.portfolio-item {
  position: relative;
  display: block;
  border-radius: 5px;
  overflow: hidden;
}

.portfolio-item--tall {
  grid-row: span 2;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.portfolio-item:hover img {
  transform: scale(1.06);
}

.portfolio-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.2) 55%, rgba(0, 0, 0, 0) 75%);
}

.portfolio-overlay {
  position: absolute;
  left: 16px;
  right: 50px;
  bottom: 14px;
  z-index: 2;
}

.portfolio-category {
  display: block;
  margin-bottom: 4px;
color: #D4A06A;
font-family: Inter;
font-size: 9px;
font-style: normal;
font-weight: 700;
line-height: 13.5px; /* 150% */
letter-spacing: 0.9px;
text-transform: uppercase;
}

.portfolio-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--surface);color: #FFF;
font-family: Inter;
font-size: 12px;
font-style: normal;
font-weight: 600;
line-height: 15px; /* 125% */
}

.portfolio-zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--surface);
}

.portfolio-cta {
  display: flex;
  justify-content: center;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(10, 4, 0, 0.94);
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: min(900px, 90vw);
  max-height: 85vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  margin: 0;
  color: var(--surface);
  font-size: 0.95rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 26px;
  background: none;
  border: none;
  color: var(--surface);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--surface);
  font-size: 1.6rem;
  cursor: pointer;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

body.no-scroll {
  overflow: hidden;
}

/* Process section */
.process-section {
  background: var(--surface);
  padding: 70px 0;
}

.process-section .section-intro h2 {
  color: var(--text-dark);
}

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

.process-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 16.666%;
  right: 16.666%;
  height: 1px;
  background: rgba(61, 26, 0, 0.25);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  background: var(--surface);
}

.step-label {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.step-circle strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  line-height: 1;
  color: var(--text-dark);
}

.step-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--surface-2);
  color: var(--accent);
}

.process-step h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.process-step p {
  margin: 0;
  max-width: 34ch;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(61, 26, 0, 0.68);
}

/* Why choose us section */
.why-us-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  text-align: center;
  color: var(--surface);
}

/* .why-us-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(31, 11, 0, 0.82);
} */

.why-us-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.why-us-inner .section-label {
  margin-bottom: 14px;
}

.why-us-inner h2 {
  margin: 0 0 26px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1.2;
  color: var(--surface);
}

.why-us-text {
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.85);
}

.why-us-inner .btn {
  margin-top: 14px;
}

/* Project gallery section */
.gallery-section {
  background: var(--surface-2);
  padding: 70px 0;
}

.gallery-section .section-intro h2 {
  color: var(--text-dark);
}

.gallery-tabs {
  margin-bottom: 44px;
}

.gallery-panel {
  display: none;
}

.gallery-panel.active {
  display: block;
}

.gallery-swiper {
  overflow: hidden;
}

.gallery-card {
  border-radius: 16px;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.gallery-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.gallery-nav button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(61, 26, 0, 0.2);
  background: var(--surface);
  color: var(--text-dark);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.gallery-nav button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--surface);
}

/* FAQ section */
.faq-section {
  background: var(--surface);
  padding: 70px 0;
}

.faq-section .section-intro h2 {
  color: var(--text-dark);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 16px;
  background: var(--surface);
  border: 1px solid rgba(61, 26, 0, 0.12);
  border-radius: 14px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.faq-question svg {
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.25s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 22px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(61, 26, 0, 0.7);
}

/* Blog section */
.blog-section {
  background: var(--surface-2);
  padding: 70px 0;
}

.blog-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.blog-heading h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--text-dark);
}

.blog-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(61, 26, 0, 0.06);
}

.blog-image img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.blog-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 22px 24px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.blog-category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.blog-date {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: rgba(61, 26, 0, 0.55);
}

.blog-card h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.3;
}

.blog-card h3 a {
  color: var(--text-dark);
  text-decoration: none;
}

.blog-card p {
  margin: 0 0 18px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(61, 26, 0, 0.68);
}

.blog-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  align-self: flex-start;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand .brand {
  color: var(--surface);text-decoration:none;
}

.footer-brand .brand-name {
  color: var(--surface);
}

.footer-brand p {
  margin: 16px 0 20px;
  max-width: 34ch;
  font-size: 0.92rem;
color: #B8906A;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.75px;
}

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

.footer-social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #B8906A;
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.footer-links h4, .footer-contact h4 {
    margin: 0 0 18px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--surface);
    color: #D4A06A;
    font-family: Inter;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.footer-links ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.92rem;color: #B8906A;
font-family: Inter;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 20px; text-align: left; /* 143% */
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  line-height: 1.5;
color: #B8906A;
font-family: Inter;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 20px; /* 142.857% */
  text-decoration: none;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #8B4513;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  padding-bottom: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    width: 100%;
    padding: 10px 0px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: var(--surface);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 1210px) {
.nav-list {
    display: flex;
    align-items: center;
    gap: 12px;}
html,body{overflow-x:hidden}
  
}
@media (max-width: 1080px) {
  .site-header-inner {
    flex-wrap: wrap;
    align-items: center;
  }

  .main-nav {
    order: 3;
    flex-basis: 100%;
    width: 100%; display:none;
    
  }
.main-nav.open{display:block;height:100vh;}
  .header-actions {
    order: 2;
  }
.site-header {
    padding: 10px 0px;
}
  .nav-toggle {
    display: inline-flex;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 18px;
    background: rgba(255, 255, 255, 0.98);
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(61, 26, 0, 0.08);
  }

  .main-nav.open .nav-list {
    display: flex;
  }

  .nav-list li {
    width: 100%;        padding: 3px 0px;
  }

  .nav-list a {
    width: 100%;
    text-align: left;
    color: var(--text-dark);
    padding: 10px 0;
  }

  .nav-cta {
    display: none;
  }

  .nav-cta-mobile {
    display: block;
    margin-top: 10px;
  }

  .nav-cta-mobile a {
    display: block;
    text-align: center;        color: #fff;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 10px 0;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    padding: 0 0 0 16px;
    background: transparent;
  }

  .dropdown-menu li a {
    padding: 8px 0;
  }
      .hero-copy h1 {
    font-size: 45px;
    font-weight: 600;
    line-height: 53px;
}
 .promo-copy h2 {
    font-size: clamp(2.2rem, 4vw, 2.2rem);}
    .section-intro h2 {
    font-size: 30px;
    line-height: 35px;
}
.site-header-inner {
    padding-top: 0px;
    padding-bottom: 0px;
}
}

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

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

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-gallery-main img {
    height: 380px;
  }

  .hero-wrap {
    min-height: 520px;
    padding: 70px 0;
  }

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

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

  .category-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 16px;
  }

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

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-top: 44px;
    padding-bottom: 60px;
  }

  .about-stats {
    right: 16px;
  }

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

  .service-card {
    min-height: 300px;
  }

  .specializations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
  }

  .fitout-panel {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .fitout-media {
    order: -1;
  }

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

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

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .process-grid::before {
    display: none;
  }

  .gallery-card img {
    height: 220px;
  }

  .promo-text {
    margin-left: auto;
    margin-right: auto;
  }

  .promo-actions {
    justify-content: center;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
.hero-copy h1 {
    font-size: 40px;}
 
  .product-detail-section {
    background: var(--surface);
    padding: 60px 0 0px;
}
  
  }


@media (max-width: 720px) {
  .container {
    padding: 0 18px;
  }

  .page-banner {
    padding: 70px 0 70px;
  }

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

  .product-image img {
    height: 200px;
  }

  .product-gallery-main img {
    height: 300px;
  }

  .product-thumb {
    width: 68px;
    height: 60px;
  }

  .product-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-card {
    padding: 24px;
  }

  .hero-wrap {
    padding-top: 24px;
    padding-bottom: 32px;
  }

  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
      .hero-wrap {
        min-height: 86vh;
        padding: 80px 0;
    }

  .hero-copy h1 {
    font-size: 2.8rem;
  }

  .hero-text,
  .section-heading p,
  .section-intro p,
  .contact-panel p {
    font-size: 0.98rem;
  }

  .info-grid,
  .feature-cards {
    grid-template-columns: 1fr;
  }

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

  .category-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
         padding: 0px 0px;
  }

  .category-icon {
    width: 56px;
    height: 56px;
  }

  .about-frame {
    margin-bottom: 56px;
  }

  .about-stats {
    left: 12px;
    right: 12px;
    padding: 16px 4px;
  }

  .stat-item {
    padding: 0 10px;
  }

  .about-cta {
    width: 100%;
    justify-content: center;
  }

  .service-content {
    padding: 22px;
  }

  .service-content h3 {
    font-size: 1.3rem;
  }

  .services-award {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

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

  .spec-image img {
    height: 200px;
  }

  .fitout-tabs {
    gap: 10px;
  }

  .fitout-tab {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
    padding: 12px 10px;
    font-size: 0.85rem;
  }

  .fitout-media img {
    min-height: 260px;
  }

  .countdown-item {
    min-width: 50px;
    padding: 10px 8px;
  }

  .countdown-value {
    font-size: 1.3rem;
  }

  .countdown-grid {
    gap: 6px;
  }

  .promo-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .portfolio-item--tall {
    grid-row: span 1;
  }

  .lightbox {
    padding: 20px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .lightbox-close {
    top: 12px;
    right: 16px;
  }

  .why-us-section {
    padding: 60px 0;
  }

  .gallery-card img {
    height: 200px;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 0.92rem;
  }

  .faq-answer p {
    padding: 0 18px 18px;
  }

  .blog-heading {
    align-items: flex-start;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;padding-top: 10px;
        margin-top: 10px;
  }
  .top-bar{display:none}
  .about-section {
    margin-top: 60px;
}
.section-intro h2 {
    margin: 14px 0 0;
    color: #3D1A00;
    text-align: center;
    font-family: "Playfair Display";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 31px;
}
.why-us-inner h2 {
    font-size: 25px;
}
h2{ font-size: 26px;}
.page-banner h1 {
    font-size: 30px;
}

.hero-copy h1 {
    font-size: 40px;}
        .hero-copy h1 {
        font-size: 30px;
        line-height: 39px;
    }
        .about-grid {
        gap: 30px;}
        .services-section {
    padding: 50px 0 50px;
    margin-top: 50px;
}
    .section-intro h2 {
        font-size: 25px;}
        .benefit-cta-actions a {
    JUSTIFY-CONTENT: CENTER;
}
html,body {
    overflow-x: hidden;}
    .section-intro {
    margin: 0 auto 30px;
    text-align: center;
}
    .related-section {
    padding: 50px 0;
}
.about-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.6rem);}
    
}
.site-header {
    width: 100%;
    position: relative;
    transition: all 0.3s ease;
    z-index: 999;
}

.site-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    animation: slideDown 0.3s ease;
}
ul.spec-table li span {
    width: 100%;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@media(min-width:1080px){
  #specifications{
    width: 100%;
    margin: auto;
}
}


/* <----------blog detail---------> */
.inner-blog-listing {
    display: flex;
    gap: 30px;
}
 
.blog-cardsx-inn {
    flex: 2;
    padding-right: 20px;
}
.inner-blog-listing img {
    width: 100%;
}
.blog-card-full-description p {
    margin: 10px 0px 20px 0px;    color: rgba(61, 26, 0, 0.68);
}
h3.mission-txt {
    color: var(--text-dark);
    font-size: 25px;
    line-height: 33px;
}
@media (min-width: 993px) {
    .blog-sidebar {
        position: sticky;
        top: 100px;
        height: fit-content;
    }
}
.blog-sidebar {
    flex: 1;
}
.recommended-post {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    list-style-type: none;
}
a.recommended-post-link {
    display: flex;
    align-items: center;    text-decoration: none;
}


.recommended-post-avatar img{
    margin-right: 15px;
    flex-shrink: 0;
    width: 98px !important;
    height: 80px !important;
    aspect-ratio: 188 / 81;
        border-radius: 8px;
    overflow: hidden;
}
.recommended-post-content {
    flex: 1;
}
ul.recommended-posts {
    padding-left: 0px;
}
.recommended-post-title {
    color: #4A4240;
   
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;margin: 0px;
}
.recommended-post-date {
    color: #494949;
   
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 12px;
    padding: 7px 0px 0px 0px;
}
 
.recommended-post {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    list-style-type: none;
}
h3.sidebar-title {
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 25px;
}
@media (max-width: 992px) {
    .inner-blog-listing {
        flex-direction: column;
    }
    .inner-blog-listing img {
    width: 100%;
    border-radius: 10px;
    height: 320px;
    object-fit: cover;
}
.blog-cardsx-inn {
    flex: 2;
    padding-right: 0px;
}
   .recommended-post-avatar img {
        width: 100%;
        border-radius: 10px;
        height: 70px;}
}
.blog-details-section {
    border: 1px solid #8b4513;
    box-shadow: 0px 0px 3px #ccc;
    border-radius: 10px;
    overflow: hidden;
}
.blog-card-content.blog-in-cnt {
    padding: 5px 20px;
}
section.inblog.featureprdct {
    margin: 80px 0px;
}
.blg-details-img img{
    width: 100%;
    height: 420px;
    object-fit: cover;
}
@media (max-width:600px) {
    .inner-blog-listing img {
        height: 240px;
    }
      .recommended-post-avatar img {
        height: 70px;}
           .ip-wc-hero.ip-wc-blog {
        min-height: 350px !important;
    }
    .ip-wc-hero.ip-wc-blog {
        min-height: 260px !important;
    }
        .blog-bannertitle {
        font-size: 25px;
    }
  .blog-grid {
    grid-template-columns: 1fr;  }
    .blog-image img {
    height: 220px}
  }

@media(max-width:1500px){
	html,body{overflow-x:hidden;}
	
	.hero-copy h1 {
    font-size: 45px;
    line-height: 55px;
}
	.hero-copy h1 {
    font-size: 50px;
    line-height: 55px;padding-top:10px;
}
	.hero-wrap {
		min-height: 90vh;}
}

.blog-pagination{
    display:flex;
    justify-content:center;
    margin-top:70px;
}

.blog-pagination ul{
    display:flex;
    gap:12px;
    list-style:none;
    padding:0;
    margin:0;
}

.blog-pagination li{
    margin:0;
}

.blog-pagination a,
.blog-pagination span{
    width:48px;
    height:48px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    border:1px solid #9b551b;
    color:#2b1407;
    background:#fff;
    transition:.3s;
    font-weight:600;
}

.blog-pagination a:hover{
    background:#9b551b;
    color:#fff;
}

.blog-pagination .current{
    background:#9b551b;
    color:#fff;
    border-color:#9b551b;
}
.blog-card-content.blog-in-cnt h2, .blog-card-content.blog-in-cnt h3, .blog-card-content.blog-in-cnt h4 {
    color: #8b4513;
}
.blog-cardsx-inn ul {
    padding-left: 22px;
}
.blog-cardsx-inn a {
    color: #8b4513;
    font-weight: 600;
    text-decoration: none;
}
.blog-cardsx-inn ul li {
    color: #693007c4;
}
.header-logo img, .footer-logo img {
    height: 55px!important;
    
}
.shortdecsx {
    margin-bottom: 28px;
    color: rgba(61, 26, 0, 0.75);
    line-height: 1.85;
}

.product-gallery-main img {
    height: 450px!important;
    width: 100%;
    object-fit: cover;
}
.product-body h3 a {
    text-decoration: none;
    color: #8b4513;
    text-transform: capitalize;
}
@media (max-width: 500px) {
  .product-gallery-main img {
    height: 300px!important;
  
}
}
.product-description h3{    font-family: Inter !important;
    font-size: 14px !important;
    font-style: normal !important;
    font-weight:400 !important;
    line-height: 20px;    color: rgba(61, 26, 0, 0.68) !important;
    text-align: left;}
span.page-numbers.current {
    display: grid;
    width: 42px;
    height: 42px;
    color: #fff;
    font-weight: 700;
    place-items: center;
    border-radius: 10px;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(61, 26, 0, 0.15);
    border-image: none;
    background: #8b4513;
    text-decoration: none;
}


.shortdecsx a {
    color: #8b4513;
    font-weight: 700;
}