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

:root {
  --gold: #c8a96e;
  --gold-light: #e8d5a8;
  --gold-dark: #8b6d3a;
  --ink: #0e1117;
  --ink-soft: #1c2230;
  --ink-mid: #2e3a4e;
  --cream: #f7f3ec;
  --cream-dark: #ede6d8;
  --steel: #4a6080;
  --steel-light: #7a95b8;
  --white: #ffffff;
  --text-body: #3a4a5c;
  --text-light: #7a8a9c;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--ink);
  color: var(--cream);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 72px;
  background: rgba(14, 17, 23, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200, 169, 110, 0.15);
  transition: background 0.4s;
}

.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.65);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  display: block;
  transition: 0.3s;
}

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

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 12px;
}

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

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(247, 243, 236, 0.55);
  line-height: 1.7;
  max-width: 500px;
  margin: 24px 0 44px;
}

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

.btn-primary {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.25s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-ghost {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.65);
  padding: 15px 35px;
  border: 1px solid rgba(247, 243, 236, 0.25);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
}

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

.hero-stats {
  position: absolute;
  bottom: 60px;
  right: 80px;
  display: flex;
  gap: 48px;
  z-index: 2;
}

.stat {
  text-align: right;
}
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.4);
  margin-top: 4px;
}

.scroll-hint {
  position: absolute;
  bottom: 60px;
  left: 80px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.35);
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(247, 243, 236, 0.3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* ── DIVIDER ── */
.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 16px;
}

/* ── SECTION WRAPPER ── */
.section {
  padding: 120px 80px;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-label::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ── SERVICES ── */
#services {
  background: var(--ink-soft);
}

.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}

.services-desc {
  font-size: 15px;
  color: rgba(247, 243, 236, 0.5);
  line-height: 1.8;
  max-width: 440px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(200, 169, 110, 0.12);
}

.service-card {
  background: var(--ink-soft);
  padding: 48px 36px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.service-card:hover {
  background: var(--ink-mid);
}
.service-card:hover::before {
  width: 100%;
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.2;
}

.service-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  color: rgba(200, 169, 110, 0.35);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

.service-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}

.service-line {
  font-size: 13px;
  color: rgba(247, 243, 236, 0.4);
  line-height: 1.6;
}

/* ── BANNER ── */
#banner {
  background: var(--gold);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.banner-text h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.15;
}

.banner-text p {
  font-size: 15px;
  color: rgba(14, 17, 23, 0.65);
  margin-top: 12px;
}

.btn-dark {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--ink);
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  transition: background 0.25s, transform 0.2s;
}

.btn-dark:hover {
  background: var(--ink-mid);
  transform: translateY(-2px);
}

/* ── PRODUCTS ── */
#products {
  background: var(--ink);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 60px;
  background: rgba(200, 169, 110, 0.1);
}

.product-card {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: default;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transition: opacity 0.5s, transform 0.6s;
}

.product-card:hover img {
  opacity: 0.6;
  transform: scale(1.04);
}

.product-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px;
  background: linear-gradient(
    to top,
    rgba(14, 17, 23, 0.95) 0%,
    transparent 100%
  );
}

.product-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.product-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
}

.product-desc {
  font-size: 13px;
  color: rgba(247, 243, 236, 0.5);
  line-height: 1.65;
  max-width: 360px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}

.product-card:hover .product-desc {
  opacity: 1;
  transform: translateY(0);
}

/* ── ABOUT ── */
#about {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  min-height: 700px;
}

.about-image {
  position: relative;
  overflow: hidden;
}

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

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(200, 169, 110, 0.2) 0%,
    transparent 60%
  );
}

.about-content {
  padding: 100px 80px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content .section-label {
  color: var(--gold-dark);
}
.about-content .section-label::before {
  background: var(--gold-dark);
}

.about-content .section-title {
  color: var(--ink);
}

.about-body {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.85;
  margin-top: 24px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.value-item {
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}

.value-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
}

.value-desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ── PARTNERS ── */
#partners {
  background: var(--ink-soft);
}

.partners-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 64px;
}

.partners-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 40px;
  flex-wrap: wrap;
}

.partner-item {
  padding: 28px 40px;
  border: 1px solid rgba(200, 169, 110, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
  flex: 1;
  min-width: 140px;
}

.partner-item:hover {
  border-color: rgba(200, 169, 110, 0.5);
  background: rgba(200, 169, 110, 0.05);
}

.partner-item img {
  max-width: 120px;
  max-height: 50px;
  object-fit: contain;
  transition: opacity 0.3s;
}

.partner-item:hover img {
  opacity: 0.75;
}

/* ── CONTACT ── */
#contact {
  background: var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  margin-top: 60px;
  align-items: start;
}

.contact-info {
}

.contact-detail {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(200, 169, 110, 0.1);
}

.contact-detail:first-child {
  border-top: 1px solid rgba(200, 169, 110, 0.1);
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(200, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.contact-detail-text {
}

.contact-detail-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 14px;
  color: rgba(247, 243, 236, 0.65);
  line-height: 1.5;
}

.contact-map {
  height: 420px;
  overflow: hidden;
  border: 1px solid rgba(200, 169, 110, 0.15);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(0.9) contrast(0.85) brightness(0.7) sepia(0.1);
}

/* ── FOOTER ── */
footer {
  background: var(--ink-soft);
  padding: 72px 80px 40px;
  border-top: 1px solid rgba(200, 169, 110, 0.15);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(200, 169, 110, 0.1);
}

.footer-brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(247, 243, 236, 0.35);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 28px;
}

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

.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(200, 169, 110, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s, background 0.25s;
  text-decoration: none;
  cursor: pointer;
}

.social-btn:hover {
  border-color: var(--gold);
  background: rgba(200, 169, 110, 0.1);
}

.social-btn svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.5;
}

.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(247, 243, 236, 0.45);
  text-decoration: none;
  transition: color 0.25s;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(247, 243, 236, 0.2);
}

/* ── MOBILE NAV ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.25s;
}

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

.mobile-close {
  position: absolute;
  top: 28px;
  right: 32px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--cream);
  cursor: pointer;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .section {
    padding: 80px 40px;
  }
  #hero .hero-content {
    padding: 0 40px;
  }
  .hero-stats {
    right: 40px;
    bottom: 40px;
  }
  .scroll-hint {
    left: 40px;
    bottom: 40px;
  }
  .services-intro {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #about {
    grid-template-columns: 1fr;
  }
  .about-image {
    height: 400px;
  }
  .about-content {
    padding: 60px 40px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 60px 40px 32px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  #banner {
    grid-template-columns: 1fr;
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 24px;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-content {
    padding: 0 24px !important;
  }
  .hero-stats {
    display: none;
  }
  .scroll-hint {
    display: none;
  }
  .section {
    padding: 60px 24px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .about-values {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ── FADE-IN ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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