/* =================== CSS VARIABLES =================== */
:root {
  --bg: #F2F2F0;
  --bg-white: #FFFFFF;
  --bg-section: #EBEBEA;
  --gold-line: rgba(184, 145, 42, 0.22);
  --gold: #C9A84C;
  --gold-light: #E2C47A;
  --gold-pale: #F5E9C8;
  --dark: #0E0C0A;
  --dark-2: #1A1714;
  --dark-3: #242018;
  --brown: #3D2B1F;
  --cream: #F7F2E8;
  --cream-2: #EDE5D0;

  --text: #2C2416;
  --text-mid: #4A3D32;
  --text-muted: #7A6A55;

  --white: #FFFFFF;
  --border: rgba(201, 168, 76, 0.25);
  --border-gold: rgba(184, 145, 42, 0.25);
  --radius: 2px;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 80px rgba(0, 0, 0, 0.18);
  --wood: #3B2A1A;
  --wood-mid: #5C3D22;
  --wood-light: #8B6040;

  --font-barlow: 'Barlow', sans-serif;
  --font-barlow-c: 'Barlow Condensed', sans-serif;
  --font-play: 'Playfair Display', serif;
}

/* =================== RESET =================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-barlow);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* =================== NAVBAR =================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(14, 12, 10, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav-inner {
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 72px;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.nav-logo-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--dark);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-text span:first-child {
  font-family: var(--font-play);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.03em;
}

.nav-logo-text span:last-child {
  font-family: var(--font-barlow-c);
  font-size: 0.65rem;
  font-weight: 500;
  color: #888;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.nav-links>li {
  position: relative;
}

.nav-links a,
.nav-links button {
  font-family: var(--font-barlow-c);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #CCC;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links button:hover {
  color: var(--gold);
}

.nav-links .dropdown-arrow {
  font-size: 0.6rem;
  transition: transform 0.2s;
}

.nav-links li:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--dark-2);
  border: 1px solid var(--border);
  min-width: 200px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.nav-links li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.6rem 1.2rem;
  color: #AAA;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  border-left: 2px solid transparent;
  transition: all 0.2s;
}

.dropdown a:hover {
  color: var(--gold);
  border-left-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.btn-catalogue {
  font-family: var(--font-barlow-c);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #AAA;
  text-decoration: none;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.2s;
}

.btn-catalogue:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-cta {
  font-family: var(--font-barlow-c);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  padding: 0.6rem 1.4rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #CCC;
  transition: all 0.3s;
}

/* =================== HERO =================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0E0C0A 0%, #1A1510 40%, #0A0806 100%);
}

/* .hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
} */

.hero-lines {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(201, 168, 76, 0.5) 60px);
}

.hero-accent {
  position: absolute;
  right: -100px;
  top: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-accent-2 {
  position: absolute;
  left: -150px;
  bottom: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(139, 88, 60, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  max-width: 1380px;
  margin: 0 auto;
  padding: 120px 2rem 80px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-barlow-c);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-tag::before,
.hero-tag::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-h1 {
  font-family: var(--font-play);
  font-size: clamp(2rem, 5vw, 5.2rem);
  font-weight: 900;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.btn-primary {
  font-family: var(--font-barlow-c);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  padding: 0.9rem 2.2rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.45);
}

.btn-outline-light {
  font-family: var(--font-barlow-c);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.9rem 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
}

.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
}

.stat-num {
  font-family: var(--font-play);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
}

.hero-card-main {
  background: var(--dark-2);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
}

.hero-card-main::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: -8px;
  bottom: -8px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-barlow-c);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-card-title {
  font-family: var(--font-play);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.hero-card-sub {
  font-size: 15px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-card-items {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.hero-card-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
}

.hero-card-item::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.hero-card-cta {
  width: 100%;
  font-family: var(--font-barlow-c);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  padding: 0.85rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}

.hero-card-cta:hover {
  opacity: 0.9;
}

.hero-card-contact {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 1rem;
}

.hero-contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: #777;
  text-decoration: none;
}

.hero-contact-item:hover {
  color: var(--gold);
}

/* =================== SECTION COMMONS =================== */
.section {
  padding: 6rem 2rem;
}

.section-alt {
  background: var(--dark);
}

.section-cream {
  background: var(--cream-2);
}

.container {
  max-width: 1380px;
  margin: 0 auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-barlow-c);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-h2 {
  font-family: var(--font-play);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-h2 em {
  color: var(--gold);
}

.section-alt .section-h2 {
  color: var(--white);
}

.section-lead {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 600px;
}

.brands-home .section-lead,
.process-section-home .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.section-alt .section-lead {
  color: rgba(255, 255, 255, 0.55);
}

/* =================== MARQUEE =================== */
.marquee-strip {
  background: var(--gold);
  padding: 25px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee-inner {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-inner span {
  font-family: var(--font-barlow-c);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.marquee-inner span::after {
  content: '◆';
  font-size: 0.5rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* =================== SERVICES GRID =================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  margin-top: 4rem;
}

.service-card {
  background: var(--cream);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: pointer;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card:hover {
  background: white;
}

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--dark);
}

.service-h3 {
  font-family: var(--font-play);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.service-p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.service-link {
  font-family: var(--font-barlow-c);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.service-link:hover {
  gap: 10px;
}

/* =================== ABOUT SECTION =================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-top: 1rem;
}

.about-frame {
  background: var(--dark-2);
  border: 1px solid var(--border);
  padding: 3rem;
  position: relative;
}

.about-visual {
  position: relative;
}

.about-frame::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  pointer-events: none;
}

.about-num-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}

.about-num-item {
  background: var(--dark-3);
  padding: 2rem;
  text-align: center;
}

.about-big-num {
  font-family: var(--font-play);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.about-num-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
}

.about-badge-strip {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.badge {
  font-family: var(--font-barlow-c);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: #AAA;
  background: rgba(201, 168, 76, 0.06);
}

.about-quote {
  font-family: var(--font-play);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold);
}

.about-desc {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.about-owner {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: rgba(201, 168, 76, 0.04);
}

.owner-avatar {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-play);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}



.owner-name {
  font-family: var(--font-play);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
}

.owner-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* =================== WORK CATEGORIES =================== */
.work-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 3rem;
  border-bottom: 2px solid var(--border);
  overflow-x: auto;
}

.work-tab {
  font-family: var(--font-barlow-c);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 1.8rem;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: all 0.2s;
}

.work-tab:hover {
  color: var(--text);
}

.work-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.work-panel {
  display: none;
}

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

.work-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.work-panel-h3 {
  font-family: var(--font-play);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.work-panel-p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.work-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.work-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.work-feature::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.work-panel-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 6px;
}

.gallery-item {
  background: var(--dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-barlow-c);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
}

.gallery-placeholder svg {
  width: 32px;
  height: 32px;
  fill: rgba(201, 168, 76, 0.3);
}

/* =================== CNC SECTION =================== */
.cnc-section {
  background: var(--dark);
}

.cnc-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: end;
  margin-bottom: 4rem;
}

.cnc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.15);
}

.cnc-card {
  background: var(--dark-2);
  padding: 2.5rem 1.8rem;
  transition: background 0.3s;
}

.cnc-card:hover {
  background: var(--dark-3);
}

.cnc-num {
  font-family: var(--font-play);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.2);
  line-height: 1;
  margin-bottom: 1rem;
}

.cnc-h4 {
  font-family: var(--font-play);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cnc-p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
}

/* =================== PORTFOLIO SECTION =================== */
.portfolio-filter {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.filter-btn {
  font-family: var(--font-barlow-c);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: none;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.portfolio-item {
  position: relative;
  background: var(--dark);
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}

/* .portfolio-item:nth-child(4n+1) {
  grid-column: span 2;
  aspect-ratio: 16/9;
} */

.portfolio-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay-cat {
  font-family: var(--font-barlow-c);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.portfolio-overlay-title {
  font-family: var(--font-play);
  font-size: 1rem;
  font-weight: 600;
  color: white;
}

/* =================== PROCESS =================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  margin-top: 4rem;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.process-step {
  text-align: center;
  padding: 0 1rem;
}

.process-num-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.process-num {
  width: 56px;
  height: 56px;
  background: var(--dark);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-play);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.process-h4 {
  font-family: var(--font-play);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.process-p {
  font-size: 0.78rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.45);
}

/* =================== TESTIMONIALS =================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--cream);
  padding: 2.5rem;
}

.stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-family: var(--font-play);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-play);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* =================== BRANDS =================== */
.brands-row {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3rem;
}

.brand-item {
  padding: 1rem 2rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
  font-family: var(--font-barlow-c);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.2s;
}

.brand-item:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* =================== FAQ =================== */
.faq-list {
  margin-top: 3rem;
}

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

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-barlow);
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question .faq-icon {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 1.2rem;
}

/* =================== CONTACT =================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}

.contact-info-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-info-val {
  font-size: 0.95rem;
  color: var(--text);
}

.contact-info-val a {
  color: var(--text);
  text-decoration: none;
}

.contact-info-val a:hover {
  color: var(--gold);
}

.contact-form {
  background: white;
  padding: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--cream);
  font-family: var(--font-barlow);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
}

.form-textarea {
  resize: vertical;
  height: 100px;
}

#wpcf7-f775-o1 .wpcf7-form .wpcf7-response-output {
  margin: 0 !important;
}



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

.btn-form-submit {
  width: 100%;
  font-family: var(--font-barlow-c);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  padding: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-form-submit:hover {
  opacity: 0.9;
}

/* =================== FOOTER =================== */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.footer-logo-text {
  font-family: var(--font-play);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.footer-logo-sub {
  font-family: var(--font-barlow-c);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #555;
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.75;
  color: #ccc;
  margin: 1rem 0 1.5rem;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}

.footer-social {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 0.75rem;
  text-decoration: none;
  transition: all 0.2s;
}

.footer-social:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col-title {
  font-family: var(--font-barlow-c);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 15px;
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-contact-item {
  display: flex;
  gap: 8px;
  margin-bottom: 0.75rem;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-contact-item a {
  color: #ccc;
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: var(--gold);
}

.footer-contact-icon {
  color: var(--gold);
  flex-shrink: 0;
}

.footer-bottom {
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-copy {
  font-size: 15px;
  color: #ccc;
}

.bg-cream {
  background: var(--cream-2) !important;
}

.text-white .section-h2 {
  color: var(--white);
}

.text-black .section-h2 {
  color: #000;
}

.sdf-faq p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 600px;
}

.bg-white {
  background: var(--white) !important;
}

.sdf-faq p a {
  color: var(--gold);
}



.footer-craft {
  font-size: 15px;
  color: #ccc;
}

.footer-craft a {
  color: var(--gold);
}

/* =================== MODAL =================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal {
  display: block !important;
  height: auto !important;
  /* background: inherit !important; */
}

.modal-header {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--cream);
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-header {
  background: var(--dark);
  padding: 2rem 2.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.modal-header-tag {
  font-family: var(--font-barlow-c);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.modal-header-title {
  font-family: var(--font-play);
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
}

.modal-close {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #888;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 1rem;
  transition: all 0.2s;
}

.modal-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.modal-progress {
  background: var(--dark-2);
  padding: 1rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 0;
}

.progress-step-wrap {
  display: flex;
  align-items: center;
  flex: 1;
}

.progress-step-wrap:last-child {
  flex: 0;
}

.progress-dot {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-barlow-c);
  font-size: 0.7rem;
  font-weight: 700;
  color: #555;
  transition: all 0.3s;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.progress-dot.active {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.progress-dot.done {
  background: rgba(201, 168, 76, 0.2);
  color: var(--gold);
  border-color: var(--gold);
}

.progress-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 4px;
}

.progress-line.done {
  background: var(--gold);
}

.modal-body {
  padding: 2.5rem;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.step-title {
  font-family: var(--font-play);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.step-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.option-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.option-card {
  border: 2px solid rgba(0, 0, 0, 0.08);
  padding: 1.2rem 1rem;
  cursor: pointer;
  background: white;
  transition: all 0.2s;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.option-card:hover {
  border-color: var(--gold-light);
}

.option-card.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
}

.option-card-icon {
  font-size: 1.5rem;
}

.option-card-label {
  font-family: var(--font-barlow-c);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.option-card-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.option-cards-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.modal-input,
.modal-select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: white;
  font-family: var(--font-barlow);
  font-size: 0.92rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 1rem;
}

.modal-input:focus,
.modal-select:focus {
  border-color: var(--gold);
}

.modal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  margin-top: 0.5rem;
}

.btn-prev {
  font-family: var(--font-barlow-c);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0.7rem 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s;
}

.btn-prev:hover {
  border-color: var(--text);
  color: var(--text);
}

.btn-next {
  font-family: var(--font-barlow-c);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  padding: 0.8rem 2rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 8px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-next:hover {
  opacity: 0.9;
}

.step-counter {
  font-family: var(--font-barlow-c);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* Thank You Step */
.thankyou-step {
  text-align: center;
  padding: 2rem 0;
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.thankyou-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--dark);
}

.thankyou-h3 {
  font-family: var(--font-play);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.thankyou-p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 380px;
  margin: 0 auto 1.5rem;
}

.thankyou-details {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 1.2rem;
  margin-bottom: 1.5rem;
  text-align: left;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.thankyou-detail-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.thankyou-detail-row strong {
  color: var(--text);
  min-width: 100px;
}

/* =================== INNER PAGES =================== */


.inner-hero {
  background: var(--dark);
  padding: 140px 2rem 80px;
  position: relative;
  overflow: hidden;
}

.inner-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0E0C0A 0%, #1A1510 60%, #0A0806 100%);
}

.inner-hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.inner-hero-content {
  max-width: 1380px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-barlow-c);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

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

.breadcrumb span {
  color: var(--gold);
}

.inner-hero-h1 {
  font-family: var(--font-play);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.inner-hero-h1 em {
  font-style: italic;
  color: var(--gold);
}

.inner-hero-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  max-width: 600px;
}

/* =================== PROVIDE GRID =================== */
.what-we-provide {
  padding: 6rem 2rem;
  background: white;
}

.provide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--border);
  margin-top: 3rem;
}

.provide-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  position: relative;
}

.provide-card-num {
  font-family: var(--font-play);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.15);
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.provide-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.provide-card-h4 {
  font-family: var(--font-play);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.provide-card-p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* =================== COUNTERS =================== */
.counters-section {
  background: var(--dark);
  padding: 4rem 2rem;
}

.counters-grid {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.15);
}

.counter-item {
  background: var(--dark-2);
  padding: 3rem 2rem;
  text-align: center;
}

.counter-num {
  font-family: var(--font-play);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.counter-label {
  font-family: var(--font-barlow-c);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* =================== WHY US =================== */
.why-us {
  padding: 6rem 2rem;
  background: var(--cream-2);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}

.why-point {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.why-point-num {
  font-family: var(--font-play);
  font-size: 2rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.25);
  flex-shrink: 0;
  line-height: 1;
  min-width: 40px;
}

.why-point-h4 {
  font-family: var(--font-play);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.why-point-p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* =================== SPECIALITIES =================== */
.specialities {
  padding: 6rem 2rem;
  background: white;
}

.specialities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 3rem;
}

.speciality-card {
  background: white;
  padding: 2.5rem 2rem;
  transition: background 0.3s;
}

.speciality-card:hover {
  background: var(--cream);
}

.speciality-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.speciality-h4 {
  font-family: var(--font-play);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.speciality-p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* =================== CTA SECTION =================== */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, #1A1510 100%);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-accent {
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.08) 0%, transparent 65%);
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-h2 {
  font-family: var(--font-play);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.cta-h2 em {
  font-style: italic;
  color: var(--gold);
}

.cta-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =================== PRODUCTS =================== */
.products-section {
  padding: 6rem 2rem;
  background: var(--cream);
}

.sdf-wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
  grid-template-rows: auto;
  gap: 15px;
}

.sdf-products-sidebar {
  background-color: white;
  margin-top: 3rem;
  height: max-content;
  padding: 2rem 1.5rem;
}

.sdf-products-sidebar ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sdf-products-sidebar ul li {
  display: flex;
  justify-content: space-between;
}

.sdf-products-sidebar ul li:hover a,
.sdf-products-sidebar ul li:hover span {
  color: var(--gold);
  transition: all 0.3s ease;
}

.sdf-products-sidebar ul li.active a,
.sdf-products-sidebar ul li.active span {
  color: var(--gold);
}

.sdf-products-sidebar ul li a {
  color: #000;
  font-size: 1rem;
  font-family: var(--font-barlow-c) !important;
  transition: all 0.3s ease;
}

.sdf-products-sidebar ul li span {
  color: #000;
  font-size: 1rem;
  font-family: var(--font-barlow-c) !important;
  transition: all 0.3s ease;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  /* background: var(--border); */
  margin-top: 3rem;
}

.product-card {
  background: white;
  padding: 2rem 1.5rem;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: block;
}

.product-card:hover {
  /* background: var(--cream); */
  transform: translateY(-2px);
}

.product-card-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 2.5rem;
}

.product-card-cat {
  font-family: var(--font-barlow-c);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.product-card-name {
  font-family: var(--font-play);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.product-card-p {
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* =================== UTILITY =================== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0;
}

/* .scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
} */

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

.section-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.btn-outline {
  font-family: var(--font-barlow-c);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--gold);
  background: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

.btn-outline-dark {
  font-family: var(--font-barlow-c);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.btn-outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* =================== MOBILE NAV =================== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--dark);
  padding: 80px 2rem 2rem;
  overflow-y: auto;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.mobile-nav-links>li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-links a,
.mobile-nav-links button {
  display: block;
  padding: 1rem 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.mobile-nav-links a:hover {
  color: var(--gold);
}

.mobile-sub-links {
  display: none;
  padding-left: 1rem;
}

.mobile-sub-links.open {
  display: block;
}

.mobile-sub-links a {
  font-size: 0.85rem;
  padding: 0.6rem 0;
  color: rgba(255, 255, 255, 0.4);
}

/* =================== ABOUT PAGE COUNTERS =================== */
.au-counter {
  font-family: var(--font-play);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}




/* =================== RESPONSIVE =================== */



.sdf-faq {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
}

.sdf-faq .section-lead {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.sdf-faq .section-lead a {
  color: var(--gold);
}


.portfolio-item {
  min-height: 220px;
}

.portfolio-item .portfolio-img-placeholder {
  background: #2A1F15;
}


.portfolio-item .portfolio-img-placeholder .p-count {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.portfolio-item .portfolio-img-placeholder .p-img {
  font-family: var(--font-barlow-c),
    sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.sd-catalogue .inner-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.sd-catalogue .inner-hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.sd-catalogue .section-tag {
  justify-content: center;
}

.sd-catalogue .inner-hero-h1 {
  text-align: center;
}

.sd-catalogue .inner-hero-sub {
  margin: 0 auto 2.5rem;
  text-align: center;
}

.sd-catalogue .sd-c-btn {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.sd-catalogue .sdc-card {
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: inline-block;
}

.sd-catalogue .sdc-card .title {
  font-family: var(--font-barlow-c);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.sd-catalogue .sdc-card .sub-title {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}


.form-group p br {
  display: none;
}

.form-group {
  margin-bottom: 0;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: none;
  outline: none;
  box-shadow: none;
}



/* Slider CSS Start  */

.products-details-section .sdf-img-left {
  width: 100%;
  position: relative;
  overflow: hidden;
}


.products-details-section .splide__slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  width: 580px;
  overflow: hidden;
  transition: .2s;
  border-width: 2px !important;
  margin: 0 4px 10px 4px;
}



.products-details-section .splide__slide img {
  width: auto;
  height: auto;
  margin: auto;
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.products-details-section .splide__arrows {
  display: none;
}

/* Slider CSS End  */

.products-details-section {
  padding-top: 200px;
  padding-bottom: 100px;
}

.products-details-section .sdf-products-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 50px;
}

.sdf-details-right p {
  color: var(--text-muted);
  font-size: 18px;
  font-family: var(--font-barlow-c);
}

.sdf-details-right h2 {
  font-family: var(--font-barlow-c);
}

.sdf-details-right ul {
  list-style: square;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
  margin-bottom: 20px;
}

.sdf-details-right ul li {
  color: var(--text-muted);
  font-family: var(--font-barlow-c);
}

.sdf-details-right .hero-btns {
  margin-top: 45px;
  margin-bottom: 0;
}

#relatedProductsSlider {
  margin-top: 50px;
}

.sdf-related-p-btn .hero-btns {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}


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


.section-404-error {
  background: #0a0803;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.splide__pagination {
  bottom: -50px;
}

.error-num {
  font-size: clamp(3rem, 20vw, 4rem);
  color: #c9a84c;
  line-height: 1;
  font-family: var(--font-barlow-c);
}

.error-title {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: #f5f0e8;
  margin: 16px 0 12px;
  font-family: var(--font-barlow-c);
}

.error-sub {
  font-size: 1rem;
  color: #000;
  max-width: 420px;
  line-height: 1.7;
  margin: 0 auto;
  font-family: var(--font-barlow-c);
  font-size: 16px;
  margin-top: 15px;
}

.sdf2-modal p {
  margin-bottom: 0 !important;
}

.error-btn-404 {
  margin-top: 32px;
}

.sdf-details-right .section-title {
  margin-bottom: 0;
}






.sdf-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.sdf-gallery-main {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f5f0;
  cursor: zoom-in;
}

.sdf-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.25s ease;
}

.sdf-gallery-main:hover .sdf-main-img {
  transform: scale(1.03);
}

.sdf-zoom-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.sdf-gallery-main:hover .sdf-zoom-hint {
  opacity: 1;
}

.sdf-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sdf-thumb {
  width: calc(12% - 6px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  background: #f5f5f0;
  transition: border-color 0.2s ease;
  outline: none;
}

.sdf-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.sdf-thumb:hover img {
  transform: scale(1.08);
}

.sdf-thumb.active {
  border-color: #8B6F47;
}

.sdf-thumb:focus-visible {
  border-color: #8B6F47;
  box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.3);
}

/* Lightbox */
.sdf-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: sdfLbFade 0.25s ease;
}

.sdf-lightbox.open {
  display: flex;
}

@keyframes sdfLbFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.sdf-lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

#sdf-lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: sdfImgPop 0.2s ease;
}

@keyframes sdfImgPop {
  from {
    transform: scale(0.96);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.sdf-lightbox-counter {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.sdf-lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: #fff;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  z-index: 100000;
  padding: 0;
  transition: opacity 0.2s, transform 0.2s;
}

.sdf-lightbox-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.sdf-lightbox-prev,
.sdf-lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  font-size: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 100000;
}

.sdf-lightbox-prev {
  left: 16px;
}

.sdf-lightbox-next {
  right: 16px;
}

.sdf-lightbox-prev:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.1);
}

.sdf-lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 600px) {
  .sdf-thumb {
    width: calc(12% - 6px);
  }

  .sdf-lightbox-prev {
    left: 6px;
  }

  .sdf-lightbox-next {
    right: 6px;
  }
}