:root {
  --wenge: #4a3728;
  --wenge-light: #6b4f3a;
  --wenge-dark: #2e2118;
  --black: #111010;
  --white: #ffffff;
  --cream: #faf8f5;
  --gold: #c9913d;
  --gold-light: #e0b46a;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Outfit", sans-serif;
  background: var(--white);
  color: var(--black);
  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.7rem 5%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(74, 55, 40, 0.1);
  transition: box-shadow 0.3s;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 100px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wenge-light);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-cta {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  border: 1.5px solid var(--wenge);
  color: var(--wenge);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 0.25s,
    color 0.25s;
}
.nav-cta:hover {
  background: var(--wenge);
  color: var(--white);
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--wenge);
  transition: 0.3s;
}
.mobile-contact {
  display: none;
}

/* HERO */
.hero {
  min-height: 130vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 5%;
  padding-top: 140px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(201, 145, 61, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}
.hero-text {
  max-width: 540px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s forwards;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold);
}
.hero-eyebrow span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wenge-light);
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--wenge-dark);
  opacity: 0;
  animation: fadeUp 0.8s 0.35s forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  margin-top: 1.6rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: #555;
  max-width: 420px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero-actions {
  margin-top: 2.4rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.65s forwards;
}
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--wenge);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.2s;
}
.btn-primary:hover {
  background: var(--wenge-dark);
  transform: translateY(-2px);
}
.btn-ghost {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border: 1.5px solid var(--wenge);
  color: var(--wenge);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 0.25s,
    color 0.25s;
}
.btn-ghost:hover {
  background: var(--wenge);
  color: var(--white);
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  height: 80vh;
  opacity: 0;
  animation: fadeIn 1s 0.4s forwards;
}
.hero-img-frame {
  position: relative;
  width: 380px;
  height: 100%;
}
.hero-img-frame::before {
  content: "";
  position: absolute;
  top: 40px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(201, 145, 61, 0.3);
  z-index: 0;
}
.hero-img-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* SHARED */
.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.section-label::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}
.section-label span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wenge-light);
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--wenge-dark);
}

/* WHAT WE DO */
.services {
  padding: 6rem 5%;
  background: var(--cream);
}
.services-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 4rem;
}
.services-header .section-label {
  justify-content: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: var(--white);
  padding: 2.4rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-4px);
}
.service-card:hover::after {
  transform: scaleX(1);
}
.service-icon {
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(201, 145, 61, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  color: var(--gold);
}
.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--wenge-dark);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
.service-card p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: #666;
  font-weight: 300;
}
.coming-soon {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-light);
  padding: 0.2rem 0.6rem;
}

/* COLLECTION TABS */
.collection {
  padding: 6rem 5%;
  background: var(--white);
}
.collection-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.collection-header .section-label {
  justify-content: center;
}
.collection-header p {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #777;
  font-weight: 300;
  line-height: 1.7;
}
.collection-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.tab-btn {
  padding: 0.7rem 1.8rem;
  border: 1.5px solid rgba(74, 55, 40, 0.2);
  background: transparent;
  color: var(--wenge-light);
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
}
.tab-btn:hover {
  border-color: var(--wenge);
  color: var(--wenge);
}
.tab-btn.active {
  background: var(--wenge-dark);
  color: var(--white);
  border-color: var(--wenge-dark);
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  max-width: 1200px;
  margin: 0 auto;
}
.col-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}
.col-item.hidden {
  display: none;
}
.col-item:hover {
  transform: translateY(-6px);
}
.col-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream);
}
.col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}
.col-item:hover .col-img img {
  transform: scale(1.06);
}
.col-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(46, 33, 24, 0);
  transition: background 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}
.col-item:hover .col-img-overlay {
  background: rgba(46, 33, 24, 0.45);
}
.col-overlay-btn {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.3s,
    transform 0.3s;
  padding: 0.6rem 1.4rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}
.col-item:hover .col-overlay-btn {
  opacity: 1;
  transform: translateY(0);
}
.col-cat-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--wenge-dark);
  color: var(--white);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  z-index: 2;
}
.col-cat-tag.new {
  background: var(--gold);
}
.col-info {
  padding: 1rem 0.2rem 0.4rem;
}
.col-info h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--wenge-dark);
  margin-bottom: 0.3rem;
}
.col-info p {
  font-size: 0.8rem;
  color: #999;
  font-weight: 300;
}

/* SHOP CTA */
.shop-cta-wrap {
  text-align: center;
  margin-top: 2.5rem;
}

/* OUR STORY */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  padding: 6rem 5%;
  background: var(--cream);
}
.story-text .section-title {
  margin-bottom: 2rem;
}
.story-body p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #4a4a4a;
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.story-body p:last-child {
  margin-bottom: 0;
}
.story-body strong {
  color: var(--wenge);
  font-weight: 500;
}
.story-stat {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(74, 55, 40, 0.1);
}
.stat-item strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-item span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wenge-light);
}
.story-visual {
  position: relative;
}
.story-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
}
.story-img-wrap::before {
  content: "";
  position: absolute;
  top: -16px;
  right: -16px;
  bottom: 16px;
  left: 16px;
  border: 2px solid rgba(201, 145, 61, 0.25);
  z-index: 0;
}
.story-img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* FOUNDER */
.founder {
  padding: 6rem 5%;
  background: var(--white);
}
.founder-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}
.founder-img-col {
  position: relative;
}
.founder-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.founder-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(201, 145, 61, 0.2);
  pointer-events: none;
  z-index: 2;
}
.founder-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.founder-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  gap: 1rem;
  color: var(--wenge-light);
}
.founder-img-placeholder svg {
  opacity: 0.25;
}
.founder-img-placeholder span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.45;
}
.founder-corner {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 90px;
  height: 90px;
  background: var(--gold);
  opacity: 0.12;
  z-index: 0;
}
.founder-text .section-title {
  margin-bottom: 0.5rem;
}
.founder-role {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 2rem;
}
.founder-bio p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #4a4a4a;
  font-weight: 300;
  margin-bottom: 1.1rem;
}
.founder-bio p:last-child {
  margin-bottom: 0;
}
.founder-bio strong {
  color: var(--wenge);
  font-weight: 500;
}
.founder-quote {
  margin-top: 2rem;
  padding: 1.5rem 1.8rem;
  border-left: 3px solid var(--gold);
  background: var(--cream);
}
.founder-quote p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--wenge-dark);
}

/* CTA */
.cta-section {
  background: var(--wenge-dark);
  text-align: center;
  padding: 7rem 5%;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9913d' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.cta-eyebrow::before,
.cta-eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold-light);
}
.cta-eyebrow span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.cta-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.75rem;
  position: relative;
}
.cta-section h2 em {
  color: var(--gold-light);
  font-style: italic;
}
.cta-tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin-bottom: 1rem;
  position: relative;
}
.cta-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  margin-bottom: 3rem;
  position: relative;
}
.btn-cta {
  display: inline-block;
  padding: 1rem 3rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.2s;
  position: relative;
}
.btn-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* FOOTER */
footer {
  background: var(--black);
  padding: 4rem 5% 2rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  height: 72px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.75;
  font-weight: 300;
  max-width: 260px;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-col h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.6rem;
  font-size: 0.83rem;
  font-weight: 300;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--gold-light);
}
.footer-contact-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.83rem;
  font-weight: 300;
}
.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .nav-links .nav-cta {
    display: inline-block;
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }
  .mobile-contact {
    display: block;
  }

  .desktop-contact {
    display: none;
  }
  .mobile-contact .nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(74, 55, 40, 0.1);
    padding: 1.5rem 5%;
    gap: 1.2rem;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-burger {
    display: flex;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 110px;
    text-align: center;
  }
  .hero-visual {
    display: none;
  }
  .hero-eyebrow {
    justify-content: center;
  }
  .hero-sub {
    margin: 1.2rem auto 0;
  }
  .hero-actions {
    justify-content: center;
  }
  .btn-primary {
    padding: 0.75rem 1.3rem;
    font-size: 0.72rem;
  }
  .btn-ghost {
    padding: 0.75rem 1.1rem;
    font-size: 0.72rem;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .collection-grid {
    grid-template-columns: 1fr 1fr;
  }
  .story {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .story-visual {
    display: none;
  }
  .founder-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .founder-img-col {
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
@media (max-width: 540px) {
  .services-grid,
  .collection-grid {
    grid-template-columns: 1fr;
  }
  .collection-tabs {
    gap: 0.4rem;
  }
  .tab-btn {
    padding: 0.55rem 1.1rem;
    font-size: 0.68rem;
  }
}
