@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@500;600;700&display=swap');

:root {
  --bg: #f4f3f0;
  --paper: #ffffff;
  --ink: #111214;
  --muted: #65676d;
  --line: #d9d8d4;
  --dark: #121315;
  --dark-soft: #1a1b1e;
  --red: #c62828;
  --red-dark: #a91f1f;
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.site-header {
  height: 76px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .13em;
}

.brand-mark {
  width: 26px;
  height: 4px;
  background: var(--red);
  display: inline-block;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.desktop-nav a {
  text-decoration: none;
  font-size: .85rem;
  color: rgba(255,255,255,.78);
}

.desktop-nav a:hover {
  color: #fff;
}

.desktop-nav .nav-cta {
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.45);
  color: #fff;
}

.hero {
  min-height: 820px;
  position: relative;
  background:
    linear-gradient(100deg, rgba(12,13,15,.94) 10%, rgba(12,13,15,.72) 48%, rgba(12,13,15,.22) 100%),
    linear-gradient(135deg, #1d1f23, #292c31);
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to right, #000, transparent 80%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: 90px;
  align-items: end;
  padding-top: 100px;
}

.eyebrow,
.section-number,
.mini-label {
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
}

.eyebrow {
  color: rgba(255,255,255,.62);
  margin-bottom: 28px;
}

h1, h2 {
  font-family: "Manrope", "Inter", sans-serif;
  margin-top: 0;
  line-height: 1.04;
  letter-spacing: -.035em;
}

h1 {
  font-size: clamp(4rem, 7vw, 7.7rem);
  margin-bottom: 30px;
  max-width: 950px;
}

h1 span {
  display: block;
  color: rgba(255,255,255,.48);
  font-size: .34em;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 11px;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  max-width: 800px;
  margin-bottom: 0;
}

.hero-subtitle {
  max-width: 700px;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  color: rgba(255,255,255,.74);
}

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

.button {
  min-height: 50px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .76rem;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}

.button.primary {
  background: var(--red);
  color: #fff;
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.secondary {
  border: 1px solid rgba(255,255,255,.45);
  color: #fff;
}

.hero-card {
  border-top: 1px solid rgba(255,255,255,.35);
  margin-bottom: 5px;
}

.hero-card-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.hero-card-row span {
  color: rgba(255,255,255,.5);
  font-size: .8rem;
}

.hero-card-row strong {
  font-size: .86rem;
}

.hero-image-note {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 20px;
  color: rgba(255,255,255,.38);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section {
  padding: 120px 0;
}

.section-tight {
  padding: 0 0 110px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .85fr);
  gap: 110px;
}

.section-number {
  color: var(--red);
  margin: 0 0 22px;
}

.section-number.light {
  color: #ef7b7b;
}

.prose {
  max-width: 620px;
  font-size: 1.05rem;
  color: #45484d;
}

.prose p:first-child {
  margin-top: 0;
}

.prose p:last-child {
  margin-bottom: 0;
}

.image-placeholder {
  min-height: 300px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.015)),
    #27292d;
  color: rgba(255,255,255,.66);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.08);
  font-size: .78rem;
  letter-spacing: .12em;
}

.image-placeholder small {
  opacity: .45;
  letter-spacing: normal;
}

.image-placeholder.large {
  min-height: 610px;
}

.specs {
  background: #fff;
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 60px;
}

.section-heading-row p {
  max-width: 430px;
  color: var(--muted);
  margin-bottom: 4px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.spec-item {
  padding: 25px 24px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.spec-item span {
  color: var(--muted);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.spec-item strong {
  font-size: 1rem;
}

.spec-note {
  margin: 18px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.55;
}

.dark {
  background: var(--dark);
  color: #fff;
}

.muted {
  color: rgba(255,255,255,.6);
}

.photo-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
}

.included-grid > div {
  padding: 28px 26px 32px 0;
  border-right: 1px solid var(--line);
}

.included-grid > div:not(:first-child) {
  padding-left: 26px;
}

.included-grid > div:last-child {
  border-right: 0;
}

.mini-label {
  display: block;
  color: var(--muted);
  margin-bottom: 16px;
}

.soft {
  background: #ebeae6;
}

.enquire {
  background: #fff;
}

.enquire-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 110px;
}

.enquire-copy {
  color: var(--muted);
  max-width: 450px;
  font-size: 1.05rem;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 700;
}

.form-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cfcfcb;
  background: #fafafa;
  color: var(--ink);
  font: inherit;
  padding: 14px 15px;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: #8a8a86;
  background: #fff;
}

textarea {
  resize: vertical;
}

.submit {
  justify-self: start;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: .75rem;
}

.site-footer {
  background: var(--dark);
  color: #fff;
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-inner > div {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-inner span {
  color: rgba(255,255,255,.45);
  font-size: .8rem;
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-grid,
  .split,
  .enquire-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-card {
    max-width: 520px;
  }

  .spec-grid,
  .photo-grid,
  .included-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-heading-row {
    display: block;
  }

  .section-heading-row p {
    margin-top: 28px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    height: 66px;
    padding-inline: 14px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-grid {
    padding-top: 80px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 5.2rem);
  }

  .hero-image-note {
    display: none;
  }

  .section {
    padding: 78px 0;
  }

  .section-tight {
    padding-bottom: 78px;
  }

  .image-placeholder.large {
    min-height: 340px;
  }

  .spec-grid,
  .photo-grid,
  .included-grid,
  .form-two {
    grid-template-columns: 1fr;
  }

  .included-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px 0 !important;
  }

  .footer-inner,
  .footer-inner > div {
    align-items: flex-start;
    flex-direction: column;
  }
}
