:root {
  --bg: #f5f4f1;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-solid: #ffffff;
  --ink: #141414;
  --muted: #6f706f;
  --line: rgba(20, 20, 20, 0.11);
  --brand: #e93d45;
  --brand-dark: #a90d34;
  --orange: #ff7a18;
  --yellow: #f7c52b;
  --green: #36bd77;
  --cyan: #49c9c5;
  --radius-lg: 34px;
  --radius-md: 22px;
  --shadow: 0 24px 80px rgba(40, 34, 29, 0.11);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  margin: 0;
  min-width: 320px;
  text-rendering: optimizeLegibility;
}

body::before {
  background: radial-gradient(circle, rgba(233, 61, 69, 0.08), transparent 68%);
  content: "";
  height: 520px;
  left: -240px;
  pointer-events: none;
  position: fixed;
  top: 22vh;
  width: 520px;
  z-index: -1;
}

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

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

.skip-link {
  background: var(--ink);
  border-radius: 0 0 10px 10px;
  color: white;
  left: 20px;
  padding: 10px 14px;
  position: fixed;
  top: -60px;
  transition: top 0.2s ease;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(245, 244, 241, 0.82);
  border-bottom: 1px solid rgba(20, 20, 20, 0.06);
  display: flex;
  justify-content: space-between;
  min-height: 78px;
  padding: 12px max(24px, calc((100vw - 1320px) / 2));
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(102, 18, 28, 0.18);
  width: 44px;
}

.wordmark {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
}

.header-nav {
  align-items: center;
  display: flex;
  gap: 26px;
}

.header-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.header-nav a:hover,
.header-nav a:focus-visible,
.footer a:hover,
.footer a:focus-visible {
  color: var(--brand);
}

.language-link {
  background: rgba(20, 20, 20, 0.06);
  border-radius: 999px;
  color: var(--ink) !important;
  padding: 10px 13px;
}

.shell {
  margin: 0 auto;
  max-width: 1320px;
  padding-left: 28px;
  padding-right: 28px;
}

.hero {
  align-items: center;
  background: #fbfaf8 url("hero-background.png") center / cover no-repeat;
  border: 1px solid var(--line);
  border-radius: 42px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.68fr);
  margin-top: 28px;
  min-height: 690px;
  overflow: hidden;
  padding: 64px;
  position: relative;
}

.hero::after {
  background: linear-gradient(120deg, rgba(233, 61, 69, 0), rgba(233, 61, 69, 0.08));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow,
.kicker {
  color: var(--brand);
  display: block;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(4rem, 8vw, 7.6rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 0.86;
  margin: 28px 0 0;
}

.hero h1 span {
  color: var(--brand);
}

.hero-lead {
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  font-weight: 720;
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin: 30px 0 0;
  max-width: 750px;
}

.hero-copy > p:last-of-type {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 20px 0 0;
  max-width: 680px;
}

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

.button {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 15px;
  display: inline-flex;
  font-size: 0.93rem;
  font-weight: 800;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
}

.button-primary {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.7);
}

.availability {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 14px;
}

.phone {
  background: #121212;
  border: 8px solid #121212;
  border-radius: 48px;
  box-shadow: 0 36px 80px rgba(23, 18, 16, 0.28);
  margin: 0 auto;
  max-width: 330px;
  overflow: hidden;
  transform: rotate(2.5deg);
}

.phone img {
  aspect-ratio: 736 / 1600;
  object-fit: cover;
  width: 100%;
}

.section {
  padding-bottom: 104px;
  padding-top: 104px;
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 40px;
  max-width: 850px;
}

.section-heading h2,
.data-copy h2,
.cta h2,
.legal-hero h1 {
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  letter-spacing: -0.045em;
  line-height: 1;
  margin: 0;
}

.section-heading p,
.data-copy p,
.cta p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
  margin: 0;
}

.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  min-height: 260px;
  padding: 28px;
}

.feature-icon {
  align-items: center;
  background: rgba(233, 61, 69, 0.09);
  border-radius: 14px;
  color: var(--brand);
  display: flex;
  font-size: 1.4rem;
  font-weight: 900;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin: 42px 0 0;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.55;
  margin: 12px 0 0;
}

.gallery-section {
  background: #161616;
  color: white;
  overflow: hidden;
  padding: 96px 0;
}

.gallery-section .section-heading p {
  color: rgba(255, 255, 255, 0.62);
}

.gallery {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  overflow-x: auto;
  padding: 4px 28px 28px;
  scroll-snap-type: x mandatory;
}

.shot {
  margin: 0;
  scroll-snap-align: center;
}

.shot img {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  width: 100%;
}

.shot figcaption {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 16px 3px 0;
}

.data-grid {
  align-items: start;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 0.75fr) minmax(450px, 1fr);
}

.data-copy {
  display: grid;
  gap: 22px;
  position: sticky;
  top: 118px;
}

.source-list {
  display: grid;
  gap: 12px;
}

.source-card {
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: grid;
  gap: 8px;
  padding: 24px;
}

.source-card span {
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.source-card h3,
.source-card p {
  margin: 0;
}

.source-card p {
  color: var(--muted);
  line-height: 1.55;
}

.notice {
  background: #fff2ee;
  border: 1px solid rgba(233, 61, 69, 0.17);
  border-radius: var(--radius-md);
  color: #68202b;
  line-height: 1.6;
  margin-top: 16px;
  padding: 24px;
}

.cta {
  align-items: center;
  background: var(--brand);
  border-radius: var(--radius-lg);
  color: white;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 90px;
  padding: 48px;
}

.cta p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 14px;
  max-width: 660px;
}

.cta .button {
  background: white;
  border-color: white;
  color: var(--ink);
  flex: 0 0 auto;
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr auto;
  margin: 0 auto;
  max-width: 1320px;
  padding: 42px 28px 54px;
}

.footer-brand {
  display: grid;
  gap: 10px;
}

.footer-brand .wordmark {
  color: var(--ink);
}

.footer-brand small {
  line-height: 1.55;
  max-width: 520px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: flex-end;
}

.footer-links a {
  font-size: 0.86rem;
  font-weight: 700;
}

.privacy-settings-button {
  appearance: none;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 0;
}

.privacy-settings-button:hover,
.privacy-settings-button:focus-visible {
  color: var(--brand);
}

.footer-meta {
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  grid-column: 1 / -1;
  padding-top: 24px;
}

.privacy-dialog-open {
  overflow: hidden;
}

.privacy-overlay {
  align-items: center;
  backdrop-filter: blur(8px);
  background: rgba(24, 29, 35, 0.5);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 20px;
  position: fixed;
  z-index: 1200;
}

.privacy-panel {
  background: #0d1622;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.38);
  color: #fff;
  max-height: calc(100vh - 40px);
  max-width: 760px;
  overflow-y: auto;
  padding: 30px;
  width: 100%;
}

.privacy-panel h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0;
}

.privacy-intro {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.96rem;
  line-height: 1.55;
  margin: 14px 0 0;
}

.privacy-options {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 0;
  margin-top: 24px;
  padding-top: 18px;
}

.privacy-option {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto;
  min-height: 82px;
}

.privacy-option strong,
.privacy-option span {
  display: block;
}

.privacy-option strong {
  font-size: 0.96rem;
}

.privacy-option > div > span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.8rem;
  margin-top: 5px;
}

.privacy-switch {
  align-items: center;
  display: inline-flex;
  position: relative;
}

.privacy-switch input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}

.privacy-switch-track {
  background: #4b5563;
  border-radius: 999px;
  display: block;
  height: 28px;
  position: relative;
  transition: background 160ms ease;
  width: 49px;
}

.privacy-switch-track::after {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.28);
  content: "";
  height: 22px;
  left: 3px;
  position: absolute;
  top: 3px;
  transition: transform 160ms ease;
  width: 22px;
}

.privacy-switch input:checked + .privacy-switch-track {
  background: var(--brand);
}

.privacy-switch input:checked + .privacy-switch-track::after {
  transform: translateX(21px);
}

.privacy-switch input:focus-visible + .privacy-switch-track {
  outline: 3px solid rgba(233, 61, 69, 0.42);
  outline-offset: 3px;
}

.privacy-switch input:disabled + .privacy-switch-track {
  background: #a92736;
  opacity: 0.72;
}

.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.privacy-button {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 780;
  min-height: 47px;
  padding: 0 18px;
}

.privacy-accept {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.privacy-reject,
.privacy-customise {
  background: transparent;
  color: #fff;
}

.privacy-save {
  background: #e8e8e8;
  border-color: #e8e8e8;
  color: #111;
  margin-top: 8px;
  width: 100%;
}

.privacy-button:hover,
.privacy-button:focus-visible {
  filter: brightness(1.08);
  outline: 3px solid rgba(233, 61, 69, 0.34);
  outline-offset: 2px;
}

.privacy-customise.is-current {
  border-color: rgba(233, 61, 69, 0.72);
}

.legal-main {
  margin: 0 auto;
  max-width: 940px;
  padding: 54px 28px 100px;
}

.legal-hero {
  border-bottom: 1px solid var(--line);
  margin-bottom: 42px;
  padding: 32px 0 42px;
}

.legal-hero p,
.legal-hero time {
  color: var(--muted);
  display: block;
  line-height: 1.6;
  margin-top: 16px;
}

.legal-section {
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-top: 14px;
  padding: 30px;
}

.legal-section h2 {
  font-size: 1.3rem;
  margin: 0 0 14px;
}

.legal-section h3 {
  font-size: 1rem;
  margin: 24px 0 8px;
}

.legal-section p,
.legal-section li,
.legal-section address {
  color: #555754;
  font-style: normal;
  line-height: 1.68;
}

.legal-section p:last-child,
.legal-section ul:last-child {
  margin-bottom: 0;
}

.legal-section a,
.inline-link {
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.license-text {
  background: #f3f2ef;
  border-radius: 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
  line-height: 1.55;
  overflow-x: auto;
  padding: 18px;
  white-space: pre-wrap;
}

.support-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.support-grid .legal-section {
  margin: 0;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 48px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    max-width: 500px;
    width: 100%;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .data-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 14px;
    padding-top: 14px;
  }

  .brand img {
    width: 38px;
  }

  .header-nav {
    gap: 8px;
  }

  .header-nav a:not(.language-link) {
    display: none;
  }

  .shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    border-radius: 28px;
    gap: 44px;
    margin-top: 14px;
    padding: 38px 22px 46px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 17vw, 5rem);
  }

  .hero-lead {
    font-size: 1.35rem;
  }

  .section {
    padding-bottom: 72px;
    padding-top: 72px;
  }

  .feature-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 220px;
  }

  .gallery-section {
    padding: 72px 0;
  }

  .gallery {
    grid-template-columns: repeat(4, minmax(245px, 74vw));
    padding-left: 16px;
    padding-right: 16px;
  }

  .cta {
    align-items: flex-start;
    border-radius: 26px;
    flex-direction: column;
    margin-bottom: 70px;
    padding: 30px;
  }

  .footer {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .legal-main {
    padding-left: 16px;
    padding-right: 16px;
  }

  .legal-section {
    padding: 23px;
  }

  .privacy-overlay {
    align-items: flex-end;
    padding: 12px;
  }

  .privacy-panel {
    border-radius: 20px;
    padding: 24px 20px;
  }

  .privacy-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .privacy-customise {
    grid-column: 1 / -1;
  }

}

@media (max-width: 430px) {
  .privacy-actions {
    grid-template-columns: 1fr;
  }

  .privacy-customise {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
