:root {
  --bg: #f2efea;
  --bg-soft: #ece8e2;
  --text: #241a1b;
  --muted: #6f6662;
  --primary: #4e2d27;
  --primary-hover: #3f241f;
  --line: #d7cfc7;
  --feature-bg: #3f3a3b;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 18px 45px rgba(26, 20, 19, 0.16);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--bg);
  position: relative;
  line-height: 1.55;
}

.bg-accent {
  position: fixed;
  inset: 0 0 0 52%;
  background: linear-gradient(180deg, #efebe6 0%, #e8e3dd 100%);
  z-index: -1;
}

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

.site-header {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 24px 0 10px;
  position: relative;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand img {
  height: clamp(62px, 7vw, 96px);
  width: auto;
  display: block;
  object-fit: contain;
}

.header-belt {
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(180deg, #68443a 0%, #4f3029 100%);
  border: 1px solid #3d2520;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 10px 26px rgba(23, 14, 12, 0.22);
}

.header-belt::before,
.header-belt::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  border-top: 2px dashed rgba(242, 221, 201, 0.55);
}

.header-belt::before {
  top: 10px;
}

.header-belt::after {
  bottom: 10px;
}

.belt-rivet {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 35% 35%, #fefefe 0%, #d9d9d9 70%);
  border: 1px solid rgba(86, 66, 61, 0.35);
}

.brand-badge {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, -58%);
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e8dfd7;
  box-shadow: 0 14px 34px rgba(31, 21, 18, 0.17);
  overflow: hidden;
  z-index: 3;
  justify-content: center;
}

.brand-badge img {
  height: 76%;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: flex-end;
}

.nav a {
  font-size: 0.85rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  position: relative;
  color: #594f4c;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.nav a.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.nav a.is-disabled::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero-wrap {
  width: min(1280px, 94vw);
  margin: 8px auto 0;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: clamp(20px, 3vw, 56px);
  align-items: center;
}
.hero-content {
  padding-left: clamp(14px, 2vw, 34px);
}


.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.swatch {
  position: absolute;
  right: -24px;
  bottom: -26px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #ddd4ca;
  border-radius: 10px;
  padding: 10px;
  width: 136px;
  box-shadow: 0 12px 30px rgba(25, 17, 16, 0.14);
}

.swatch-label {
  display: block;
  font-size: 0.54rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #7b6d68;
}

.swatch-color {
  height: 72px;
  background: #5a352d;
  margin: 8px 0;
  border-radius: 4px;
}

.swatch-text {
  display: block;
  font-size: 0.58rem;
  color: #7e706a;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: #746a66;
  font-size: 0.72rem;
  margin-bottom: 6px;
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 6.2vw, 5.2rem);
  line-height: 0.94;
  margin: 0;
}

.lead {
  margin-top: 20px;
  max-width: 52ch;
  color: #594f4c;
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
}

.cta-row {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-width: 170px;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 210ms ease, background-color 210ms ease, color 210ms ease, border-color 210ms ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-secondary {
  border: 1px solid #d4cac1;
  background: #f8f6f4;
  color: #4a403d;
}

.btn-secondary:hover {
  background: #f0ece8;
  border-color: #c7bbb1;
}

.btn:hover {
  transform: translateY(-1px);
}

.contact-grid {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-label {
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7b716d;
  font-size: 0.68rem;
}

.contact-grid a {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #2f2524;
}

.features {
  width: min(1280px, 94vw);
  margin: 70px auto 0;
  background: var(--feature-bg);
  color: #ece6df;
  padding: clamp(40px, 6vw, 70px) 4vw;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  border-radius: 16px;
}

.features h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.features p {
  margin-top: 12px;
  color: #c8bfb7;
  max-width: 35ch;
}

.site-footer {
  background: #f8f5f1;
  border-top: 1px solid #ddd5cc;
  padding: 22px 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-brand {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: #675d59;
}

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

.copyright {
  margin: 0;
  color: #7d726d;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
}

@media (max-width: 980px) {
  .bg-accent {
    inset: 58% 0 0;
  }

  .hero-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-content {
    padding-left: 0;
    padding-bottom: 14px;
  }

  .swatch {
    right: 10px;
    bottom: 10px;
  }

  .features {
    width: 100%;
    border-radius: 0;
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
  }

  .header-belt {
    height: auto;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .header-belt::before,
  .header-belt::after,
  .belt-rivet {
    display: none;
  }

  .brand-badge {
    position: static;
    transform: none;
    width: auto;
    height: auto;
    border: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
  }

  .brand-badge img {
    height: clamp(62px, 12vw, 84px);
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 60;
  }

  .nav {
    position: fixed;
    right: 4vw;
    top: 104px;
    width: min(260px, 90vw);
    background: #f9f6f2;
    border: 1px solid #d8cec4;
    border-radius: 12px;
    padding: 16px;
    display: grid;
    gap: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
    box-shadow: 0 18px 45px rgba(17, 11, 10, 0.12);
    z-index: 55;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .hero-media img {
    aspect-ratio: 4/4.8;
  }

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

  .btn {
    width: 100%;
  }
}
