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

:root {
  --gold: #c62828;
  --gold-light: #ef5350;
  --white: #f4f4f3;
  --muted: #c5c7c8;
  --line: rgba(220, 220, 220, .20);
  --panel: rgba(27, 30, 32, .78);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background: #070a0c;
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.background-image,
.camera-image,
.vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.background-image {
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(5,8,10,.98) 0%, rgba(7,10,12,.90) 52%, rgba(7,10,12,.58) 100%),
    url("background-left.jpg") left top / auto 100% no-repeat;
}

.camera-image {
  z-index: -3;
  left: 54%;
  right: 0;
  background:
    linear-gradient(90deg, rgba(7,10,12,.98) 0%, rgba(7,10,12,.28) 35%, rgba(7,10,12,.05) 100%),
    url("camera-hero.jpg") right top / cover no-repeat;
  opacity: .88;
}

.vignette {
  z-index: -2;
  background:
    radial-gradient(circle at 48% 35%, transparent 0 28%, rgba(0,0,0,.12) 57%, rgba(0,0,0,.62) 100%),
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.30));
}

.container {
  width: min(1040px, calc(100% - 48px));
  margin: 0 auto;
  padding: 78px 0 40px;
}

.hero { text-align: center; }

.brand-mark {
  position: relative;
  width: 146px;
  height: 124px;
  margin: 0 auto 24px;
  color: var(--gold-light);
}

.brand-mark svg {
  position: absolute;
  width: 108px;
  left: 19px;
  top: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
}

.brand-mark svg .fill {
  fill: currentColor;
  stroke: none;
}

.corner {
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: currentColor;
  opacity: .9;
}
.corner.tl { left: 0; top: 0; border-left: 3px solid; border-top: 3px solid; }
.corner.tr { right: 0; top: 0; border-right: 3px solid; border-top: 3px solid; }
.corner.bl { left: 0; bottom: 0; border-left: 3px solid; border-bottom: 3px solid; }
.corner.br { right: 0; bottom: 0; border-right: 3px solid; border-bottom: 3px solid; }

.eyebrow {
  margin: 0;
  font-size: 29px;
  font-weight: 400;
  letter-spacing: .22em;
}

h1 {
  margin: 8px 0 18px;
  font-size: clamp(42px, 5.4vw, 78px);
  line-height: .98;
  font-weight: 700;
  letter-spacing: -.035em;
  white-space: nowrap;
}

h1 span { color: var(--gold-light); }

.gold-rule {
  width: 134px;
  height: 3px;
  margin: 0 auto 20px;
  background: var(--gold);
  border-radius: 999px;
}

.subtitle {
  margin: 0;
  color: var(--gold-light);
  font-size: 28px;
  line-height: 1.35;
  font-weight: 500;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 38px;
}

.benefit {
  position: relative;
  text-align: center;
  padding: 0 28px;
}

.benefit + .benefit { border-left: 1px solid var(--line); }

.icon {
  height: 66px;
  margin-bottom: 12px;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  font-weight: 300;
}

.icon svg {
  width: 66px;
  height: 66px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.icon.globe {
  font-size: 70px;
  line-height: 1;
  transform: rotate(0deg);
}

.benefit h2 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .01em;
}

.benefit p {
  margin: 0;
  color: #c7c9ca;
  font-size: 16px;
  line-height: 1.45;
}

.contact-card {
  margin-top: 32px;
  padding: 24px 34px 29px;
  border: 1px solid rgba(220,220,220,.20);
  border-radius: 9px;
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  text-align: center;
  backdrop-filter: blur(5px);
}

.contact-card h2 {
  margin: 0 0 4px;
  color: var(--gold-light);
  font-size: 25px;
  letter-spacing: .01em;
}

.contact-card > p {
  margin: 0 0 24px;
  color: #e1e2e2;
  font-size: 16px;
  line-height: 1.55;
}

form {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1.15fr auto;
  gap: 16px;
}

input,
button {
  height: 54px;
  border-radius: 5px;
  font: inherit;
}

input {
  min-width: 0;
  padding: 0 15px;
  color: var(--white);
  background: rgba(14,16,18,.55);
  border: 1px solid rgba(225,225,225,.35);
  outline: none;
}

input::placeholder { color: #c2c3c3; }

input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(202,166,109,.12);
}

button {
  padding: 0 25px;
  color: #151515;
  background: linear-gradient(180deg, #dfbc83, #c62828);
  border: 0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

button:hover { filter: brightness(1.07); }

.form-status {
  min-height: 20px;
  margin: 12px 0 0 !important;
  color: var(--gold-light) !important;
  font-size: 13px !important;
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 28px auto 0;
  max-width: 820px;
}

.trust > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #ddd;
  font-size: 16px;
}

.trust-icon {
  color: var(--gold-light);
  font-size: 29px;
  line-height: 1;
}

footer {
  margin-top: 38px;
  text-align: center;
  color: #919596;
  font-size: 14px;
  line-height: 1.55;
}

footer p { margin: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .container { padding-top: 46px; }
  h1 { white-space: normal; }
  .subtitle { font-size: 22px; }
  .benefits { grid-template-columns: repeat(2, 1fr); gap: 26px 0; }
  .benefit:nth-child(3) { border-left: 0; }
  form { grid-template-columns: 1fr 1fr; }
  button { width: 100%; }
  .camera-image { left: 42%; opacity: .62; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 520px); padding-top: 30px; }
  .brand-mark { transform: scale(.82); margin-bottom: 8px; }
  .eyebrow { font-size: 19px; letter-spacing: .16em; }
  h1 { font-size: clamp(34px, 10vw, 52px); margin-top: 10px; }
  .subtitle { font-size: 18px; }
  .benefits { grid-template-columns: 1fr; margin-top: 30px; }
  .benefit, .benefit:nth-child(3) { border-left: 0; }
  .benefit + .benefit { border-top: 1px solid var(--line); padding-top: 24px; }
  .contact-card { padding: 22px 16px 24px; }
  form { grid-template-columns: 1fr; gap: 11px; }
  .trust { grid-template-columns: 1fr; gap: 13px; }
  .camera-image { left: 25%; opacity: .35; }
}
