:root {
  --background: #f7f4ed;
  --foreground: #0a1724;
  --navy: #061727;
  --navy-2: #0e2a3f;
  --gold: #b7822c;
  --gold-soft: #d7b46d;
  --ink: #121923;
  --muted: #66727f;
  --paper: #fffdf8;
  --line: #ded2bc;
  --sage: #748d78;
  --wine: #6f2f3c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
}

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

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

.site-shell {
  background:
    linear-gradient(90deg, rgba(177, 130, 44, 0.09) 1px, transparent 1px),
    linear-gradient(180deg, rgba(177, 130, 44, 0.07) 1px, transparent 1px),
    var(--background);
  background-size: 54px 54px;
  min-height: 100vh;
  overflow-x: hidden;
}

.site-header {
  align-items: center;
  background: rgba(6, 23, 39, 0.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(215, 180, 109, 0.22);
  border-radius: 0 0 8px 8px;
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr auto;
  left: 50%;
  max-width: 1240px;
  padding: 18px 28px;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  z-index: 5;
}

.brand-mark {
  align-items: flex-start;
  background: rgba(6, 23, 39, 0.74);
  border-left: 3px solid var(--gold-soft);
  border-radius: 6px;
  color: #fffaf0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  padding: 9px 14px 10px;
}

.brand-mark span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 0.9;
}

.brand-mark small {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links {
  align-items: center;
  color: rgba(255, 255, 255, 0.86);
  display: flex;
  gap: 24px;
  justify-content: center;
  min-width: 0;
}

.nav-links a,
.mail-link {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
}

.nav-links a {
  position: relative;
  text-transform: uppercase;
}

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

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.mail-link {
  background: rgba(255, 253, 248, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #ffffff;
  padding: 12px 16px;
  white-space: nowrap;
}

.hero {
  align-items: end;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.82fr);
  min-height: 86vh;
  overflow: hidden;
  padding: 160px max(26px, calc((100vw - 1180px) / 2 + 26px)) 72px;
  position: relative;
}

.hero-image,
.hero-shade {
  inset: 0;
  position: absolute;
}

.hero-image {
  filter: saturate(0.9) contrast(1.08);
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  width: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 23, 39, 0.02) 0%, rgba(6, 23, 39, 0.05) 38%, rgba(6, 23, 39, 0.28) 58%, rgba(6, 23, 39, 0.7) 100%),
    linear-gradient(0deg, rgba(6, 23, 39, 0.72) 0%, rgba(6, 23, 39, 0) 35%);
}

.hero::after {
  border: 1px solid rgba(215, 180, 109, 0.45);
  bottom: 38px;
  content: "";
  left: max(26px, calc((100vw - 1180px) / 2 + 26px));
  pointer-events: none;
  position: absolute;
  right: max(26px, calc((100vw - 1180px) / 2 + 26px));
  top: 132px;
}

.hero-content {
  grid-column: 2;
  justify-self: end;
  max-width: 640px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--gold-soft);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 18px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  color: #fffaf0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.9rem, 9vw, 8.8rem);
  font-weight: 500;
  line-height: 0.88;
  max-width: 860px;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 2vw, 1.35rem);
  line-height: 1.65;
  margin-top: 28px;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.primary-action,
.secondary-action {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 50px;
  padding: 14px 21px;
}

.primary-action {
  background: var(--gold);
  color: var(--navy);
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.primary-action:hover,
.primary-action:focus-visible,
.secondary-action:hover,
.secondary-action:focus-visible,
.mail-link:hover,
.mail-link:focus-visible {
  outline: 3px solid rgba(215, 180, 109, 0.28);
  outline-offset: 2px;
}

.hero-note {
  align-self: end;
  border-left: 3px solid var(--gold-soft);
  color: #ffffff;
  display: grid;
  gap: 8px;
  grid-column: 1;
  justify-self: start;
  max-width: 300px;
  padding: 18px 0 18px 22px;
  position: relative;
  z-index: 2;
}

.hero-note span {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-note strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.08;
}

.signature-band {
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
  border-top: 3px solid var(--gold);
  color: #ffffff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
}

.signature-band span {
  align-items: center;
  display: flex;
  font-size: 0.86rem;
  font-weight: 900;
  justify-content: center;
  min-height: 74px;
  padding: 18px;
  position: relative;
  text-transform: uppercase;
}

.signature-band span + span::before {
  background: rgba(215, 180, 109, 0.44);
  content: "";
  height: 36px;
  left: 0;
  position: absolute;
  width: 1px;
}

.atelier-section,
.studio-section,
.content-section,
.assurance-section {
  margin: 0 auto;
  max-width: 1180px;
}

.atelier-section {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  padding: 96px 24px 76px;
}

.atelier-copy,
.section-heading {
  max-width: 720px;
}

h2 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.3vw, 4.45rem);
  font-weight: 500;
  line-height: 1;
}

.atelier-copy p,
.studio-copy p {
  color: #344454;
  font-size: 1.08rem;
  line-height: 1.8;
  margin-top: 24px;
}

.collection-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 0.82fr;
}

.collection-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(48, 38, 22, 0.1);
  overflow: hidden;
}

.collection-card:first-child {
  margin-top: 44px;
}

.collection-card:nth-child(2) {
  transform: translateY(-28px);
}

.collection-card img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.collection-card div {
  padding: 22px;
}

.collection-card h3,
.value-card h3 {
  color: var(--navy);
  font-size: 1.28rem;
  margin-bottom: 10px;
}

.collection-card p,
.value-card p {
  color: var(--muted);
  line-height: 1.65;
}

.studio-section {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  padding: 48px 24px 96px;
}

.studio-visual {
  background:
    linear-gradient(140deg, rgba(6, 23, 39, 0.95), rgba(14, 42, 63, 0.82)),
    url("/assets/brode-detail.jpg") center / cover;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(6, 23, 39, 0.18);
  min-height: 520px;
  overflow: hidden;
  padding: 30px;
  position: relative;
}

.studio-visual::before {
  border: 1px solid rgba(215, 180, 109, 0.45);
  content: "";
  inset: 24px;
  pointer-events: none;
  position: absolute;
}

.studio-visual img {
  background: rgba(255, 253, 248, 0.96);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  height: 180px;
  object-fit: cover;
  object-position: left center;
  position: relative;
  width: 100%;
  z-index: 1;
}

.studio-swatch {
  background: rgba(255, 253, 248, 0.92);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  bottom: 30px;
  left: 30px;
  max-width: 360px;
  padding: 22px;
  position: absolute;
  z-index: 1;
}

.studio-swatch span,
.studio-list span,
.value-card span {
  color: var(--gold);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.studio-swatch strong {
  color: var(--navy);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.05;
}

.studio-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.studio-list article {
  align-items: start;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  grid-template-columns: 94px 1fr;
  padding: 18px;
}

.studio-list p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.content-section {
  padding: 84px 24px;
}

.production {
  background:
    linear-gradient(135deg, rgba(6, 23, 39, 0.98), rgba(14, 42, 63, 0.95)),
    url("/assets/brode-close-light.jpg") center / cover;
  color: #ffffff;
  margin-top: 24px;
  max-width: none;
  padding-left: max(24px, calc((100vw - 1180px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1180px) / 2 + 24px));
}

.production h2 {
  color: #fffaf0;
}

.workflow {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
}

.workflow-step {
  border: 1px solid rgba(215, 180, 109, 0.38);
  border-radius: 8px;
  min-height: 210px;
  padding: 24px;
  position: relative;
}

.workflow-step::after {
  background: var(--gold-soft);
  bottom: 24px;
  content: "";
  height: 4px;
  left: 24px;
  position: absolute;
  width: 44px;
}

.workflow-step span {
  color: rgba(215, 180, 109, 0.86);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 28px;
}

.workflow-step h3 {
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.35;
}

.assurance-section {
  align-items: start;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.72fr);
  max-width: none;
  padding: 82px max(24px, calc((100vw - 1180px) / 2 + 24px));
}

.assurance-section ul {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.assurance-section li {
  background: #f7f4ed;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
  padding: 20px 22px;
  position: relative;
}

.assurance-section li::before {
  background: var(--sage);
  border-radius: 999px;
  content: "";
  height: 9px;
  left: -4px;
  position: absolute;
  top: 26px;
  width: 9px;
}

.values {
  padding-top: 92px;
}

.value-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 38px;
}

.value-card {
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 260px;
  padding: 30px;
  position: relative;
}

.value-card::before {
  background: var(--wine);
  content: "";
  height: 4px;
  left: 30px;
  position: absolute;
  top: 30px;
  width: 42px;
}

.value-card span {
  margin-bottom: 56px;
}

.statement-section {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding: 72px 24px;
  text-align: center;
}

.statement-section p {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 1.05;
  margin: 0 auto;
  max-width: 1040px;
}

.statement-section p::after {
  background: var(--gold);
  content: "";
  display: block;
  height: 3px;
  margin: 28px auto 0;
  width: 92px;
}

.contact-section {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(6, 23, 39, 0.97), rgba(14, 42, 63, 0.9)),
    url("/assets/brode-detail.jpg") center / cover;
  color: #ffffff;
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 78px max(24px, calc((100vw - 1180px) / 2 + 24px));
}

.contact-section h2 {
  color: #ffffff;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.7;
  margin-top: 18px;
  max-width: 660px;
}

.contact-section .primary-action {
  background: #fffaf0;
  color: var(--navy);
  white-space: nowrap;
}

.site-footer {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 28px 24px 34px;
}

.site-footer span {
  color: var(--navy);
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    left: auto;
    position: relative;
    transform: none;
    background: var(--navy);
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 20px;
    order: 3;
  }

  .mail-link {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 74vh;
    padding-top: 82px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(6, 23, 39, 0.72), rgba(6, 23, 39, 0.74)),
      linear-gradient(0deg, rgba(6, 23, 39, 0.78) 0%, rgba(6, 23, 39, 0.18) 45%);
  }

  .hero-content {
    grid-column: 1;
    justify-self: start;
  }

  .hero::after {
    inset: 36px 22px;
  }

  .hero-note {
    justify-self: start;
    margin-top: 36px;
  }

  .signature-band,
  .atelier-section,
  .studio-section,
  .workflow,
  .assurance-section,
  .value-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .atelier-section {
    padding-top: 76px;
  }

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

  .collection-card:first-child,
  .collection-card:nth-child(2) {
    margin-top: 0;
    transform: none;
  }

  .workflow-step {
    min-height: 160px;
  }

  .studio-visual {
    min-height: 440px;
  }

  .contact-section {
    justify-items: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 18px 18px;
  }

  .brand-mark {
    align-items: center;
  }

  .brand-mark span {
    font-size: 1.75rem;
  }

  .nav-links {
    font-size: 0.78rem;
    justify-content: center;
  }

  .hero {
    min-height: 76vh;
    padding: 68px 20px 52px;
  }

  h1 {
    font-size: clamp(3.3rem, 18vw, 4.8rem);
  }

  .hero-content p {
    font-size: 1rem;
  }

  .primary-action,
  .secondary-action,
  .contact-section .primary-action {
    width: 100%;
  }

  .signature-band span {
    min-height: 58px;
  }

  .signature-band span + span::before {
    display: none;
  }

  .atelier-section,
  .studio-section,
  .content-section {
    padding: 58px 20px;
  }

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

  .value-card {
    min-height: auto;
  }

  .studio-visual {
    min-height: 390px;
    padding: 22px;
  }

  .studio-visual::before {
    inset: 16px;
  }

  .studio-visual img {
    height: 136px;
  }

  .studio-swatch {
    bottom: 22px;
    left: 22px;
    right: 22px;
  }

  .studio-list article {
    grid-template-columns: 1fr;
  }

  .statement-section,
  .assurance-section,
  .contact-section {
    padding: 58px 20px;
  }
}
