:root {
  --bg: #050505;
  --bg-elevated: #1b1b1d;
  --accent: #f4b860;
  --accent-soft: rgba(244, 184, 96, 0.18);
  --text-main: #f7f7f7;
  --text-muted: #c5c5c5;
  --card-bg: #303033;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
}

/* HEADER / NAV */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 5vw;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.55),
    transparent
  );
}

.logo {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.07em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.6rem;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding-block: 0.2rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(10, 10, 10, 0.7);
  padding: 0.4rem;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 99px;
  background: #fff;
}

/* GENERAL LAYOUT */

main {
  margin-top: 64px;
}

.section {
  padding: 5rem 5vw;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0 0 0.4rem;
}

.section-title.light {
  color: #ffffff;
}

.section-subtitle {
  max-width: 520px;
  margin: 0 auto;
  color: var(--text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.8rem;
  font-size: 0.96rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease, color 0.15s ease;
}

.btn.primary {
  background: var(--accent);
  color: #1c1202;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.75);
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn.secondary:hover {
  background: var(--accent-soft);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn.full-width {
  width: 100%;
}

/* HERO */

.hero {
  position: relative;
  min-height: 85vh;
  display: grid;
  place-items: center;
  padding: 0;
  overflow: hidden;
  border-radius: 0 0 40px 40px;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  filter: saturate(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at top left,
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.9)
    ),
    linear-gradient(to top, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.9));
}

.hero-content {
  position: relative;
  max-width: 640px;
  padding-inline: 5vw;
  text-align: left;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 0.7rem;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 4.4vw, 3.6rem);
  margin: 0 0 1rem;
}

.hero-text {
  max-width: 32rem;
  color: var(--text-muted);
  margin: 0 0 1.8rem;
}

/* COLLECTIONS */

.collections {
  background: radial-gradient(circle at top, #19191c 0, #050505 55%);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  max-width: 1120px;
  margin: 0 auto;
}

.collection-card {
  background: linear-gradient(145deg, #2c2c30, #232326);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem 1.5rem 1.3rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card-image-wrapper {
  border-radius: calc(var(--radius-xl) - 6px);
  overflow: hidden;
  margin-bottom: 1.2rem;
  aspect-ratio: 3 / 4;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collection-card:hover .card-image-wrapper img {
  transform: scale(1.05);
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  margin: 0;
}

.card-meta {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.card-more {
  align-self: flex-start;
  padding-inline: 1.4rem;
}

.section-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* ABOUT / TESTIMONIALS */

.about {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.about-media {
  position: absolute;
  inset: 0;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.85)
  );
}

.about-inner {
  position: relative;
  padding: 5rem 6vw 4.5rem;
  max-width: 1120px;
  margin: 0 auto;
}

.about-inner .section-title {
  margin-bottom: 2.5rem;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.testimonial h3 {
  margin: 0 0 0.2rem;
}

.testimonial .role {
  font-size: 0.86rem;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 0.7rem;
}

.testimonial p {
  margin: 0;
  color: #f1f1f1;
}

/* CONTACT */

.contact {
  background: #050505;
}

.contact-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: center;
}

.contact-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-details {
  padding-inline: 0.25rem;
}

.contact-text {
  color: var(--text-muted);
  max-width: 460px;
}

.contact-info {
  margin: 1.5rem 0 1.8rem;
  display: grid;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.contact-form {
  background: var(--bg-elevated);
  padding: 1.5rem 1.5rem 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  margin-bottom: 1.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

label {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

input,
textarea {
  font: inherit;
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 8, 10, 0.9);
  color: var(--text-main);
  outline: none;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-soft);
}

.form-status {
  font-size: 0.85rem;
  color: var(--accent);
  margin-top: 0.5rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-links a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 1px solid transparent;
}

.contact-links a:hover {
  border-color: var(--accent);
}

/* FOOTER */

.site-footer {
  padding: 1.5rem 5vw 2.2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-t
