:root {
  --ink: #15110f;
  --muted: #6f6560;
  --line: #e7e1dd;
  --paper: #ffffff;
  --soft: #f7f2ef;
  --accent: #c70f1c;
  --accent-dark: #980b15;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 84px;
  padding: 14px clamp(20px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 92px;
  height: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: var(--accent);
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 48px);
  color: #2b2522;
  font-size: 15px;
  font-weight: 650;
}

.nav a {
  padding: 12px 0;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid var(--ink);
  font-size: 15px;
  font-weight: 780;
  letter-spacing: 0;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.header-cta,
.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.button.secondary {
  background: #fff;
  color: var(--ink);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.header-cta:hover,
.button.primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  min-height: calc(100vh - 84px);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 8vw, 112px) clamp(24px, 6vw, 76px);
}

.hero-logo {
  width: min(360px, 72vw);
  height: auto;
  margin-bottom: 34px;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(46px, 6.2vw, 82px);
}

.hero-copy > p {
  max-width: 540px;
  margin-top: 28px;
  color: #514844;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.hero-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 0.86fr 0.86fr;
  gap: 6px;
  min-height: 560px;
  padding: 0 0 0 6px;
  background: var(--line);
  overflow: hidden;
}

.hero-gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--soft);
}

.hero-gallery .gallery-large {
  grid-row: span 2;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 20px;
}

.trust-strip div {
  display: grid;
  grid-template-columns: 62px 1fr;
  column-gap: 22px;
  align-items: start;
  padding: 18px 30px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-icon {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
}

.trust-strip strong {
  color: var(--accent);
  font-size: 18px;
  line-height: 1.2;
}

.trust-strip p,
.section-copy p,
.collection p,
.showroom-list p,
.contact p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px 20px;
  border-top: 1px solid var(--line);
}

.section-media {
  aspect-ratio: 1.1 / 1;
  overflow: hidden;
  background: var(--soft);
}

.section-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-label {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-copy h2,
.section-heading h2,
.showroom h2,
.contact h2 {
  max-width: 720px;
  font-size: clamp(34px, 4.3vw, 58px);
}

.section-copy p {
  max-width: 580px;
  margin-top: 22px;
}

.collection {
  padding: 88px 20px 98px;
  background: var(--soft);
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto 38px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.collection-grid article {
  background: #fff;
  border: 1px solid var(--line);
}

.collection-grid img {
  width: 100%;
  aspect-ratio: 1 / 0.86;
  object-fit: cover;
  background: #fff;
}

.collection-grid h3 {
  padding: 24px 24px 10px;
  font-size: 22px;
  line-height: 1.2;
}

.collection-grid p {
  padding: 0 24px 26px;
}

.showroom,
.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 76px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px 20px;
  border-bottom: 1px solid var(--line);
}

.showroom-list {
  display: grid;
  gap: 18px;
}

.showroom-list p {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.contact {
  align-items: center;
  border-bottom: 0;
}

.contact p {
  max-width: 600px;
  margin-top: 22px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 4vw, 64px);
  background: var(--ink);
  color: #fff;
  font-size: 14px;
}

.site-footer img {
  width: 180px;
  max-width: 42vw;
  filter: brightness(0) invert(1);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 78px;
  }

  .brand span {
    font-size: 20px;
  }

  .nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    min-height: 560px;
  }

  .hero-gallery {
    min-height: 520px;
    padding-left: 0;
  }

  .trust-strip,
  .intro-section,
  .collection-grid,
  .showroom,
  .contact {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 72px;
    padding: 12px 16px;
  }

  .brand img {
    width: 58px;
  }

  .brand span {
    font-size: 16px;
  }

  .header-cta {
    min-height: 44px;
    padding: 0 16px;
    font-size: 13px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-copy {
    min-height: auto;
    padding: 48px 18px 54px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 180px;
    min-height: 0;
  }

  .hero-gallery img:nth-child(4) {
    display: none;
  }

  .trust-strip {
    padding: 12px 16px;
  }

  .trust-strip div {
    grid-template-columns: 48px 1fr;
    column-gap: 16px;
    padding: 20px 0;
  }

  .trust-icon {
    width: 42px;
    height: 42px;
    font-size: 15px;
  }

  .intro-section,
  .collection,
  .showroom,
  .contact {
    padding: 58px 18px;
  }

  .section-copy h2,
  .section-heading h2,
  .showroom h2,
  .contact h2 {
    font-size: 34px;
  }
}
