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

:root {
  --color-bg: #f3f2f2;
  --color-surface: #eae9e9;
  --color-text: #201e1d;
  --color-accent: #ec3013;
  --color-accent-300: #ffc4b8;
  --color-accent-600: #dd2b0f;
  --color-divider: rgba(32, 30, 29, 0.4);
  --font-heading: "Archivo", system-ui, sans-serif;
  --font-body: "Archivo", system-ui, sans-serif;
}

* , *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}

p { margin: 0 0 12px; }
img { display: block; max-width: 100%; }
a { color: inherit; }

.kicker {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 800;
  margin-bottom: 18px;
}

.hr {
  height: 2px;
  border: 0;
  margin: 0;
  background: var(--color-divider);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  padding: 14px 26px;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  color: var(--color-bg);
  background: var(--color-accent);
}
.btn-primary:hover { background: var(--color-accent-600); }
.btn-secondary {
  color: var(--color-text);
  border: 1px solid var(--color-divider);
  background: transparent;
}
.btn-secondary:hover { background: rgba(32, 30, 29, 0.06); }

/* — header — */
.site-header {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 18px 40px;
  border-bottom: 2px solid var(--color-divider);
  background: var(--color-bg);
  position: sticky;
  top: 0;
  z-index: 20;
}
.site-header .logo {
  height: 34px;
  width: auto;
  margin-right: auto;
  mix-blend-mode: multiply;
}
.site-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.site-nav a {
  font-size: 14px;
  text-decoration: none;
  color: var(--color-text);
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  font-weight: 400;
}
.site-nav a:hover { color: var(--color-accent); }
.site-nav a[aria-current="page"] {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
  font-weight: 700;
}
.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  color: var(--color-bg);
  background: var(--color-accent);
  padding: 10px 18px;
  text-decoration: none;
  white-space: nowrap;
}

main { flex: 1; }

.wrap {
  max-width: 1360px;
  margin: 0 auto;
  padding: 72px 40px;
}

/* — hero — */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 88px 40px 64px;
  max-width: 1360px;
  margin: 0 auto;
}
.hero h1 { font-size: 58px; letter-spacing: -0.025em; margin: 0 0 24px; max-width: 14ch; }
.hero p { font-size: 17px; line-height: 1.6; max-width: 46ch; opacity: 0.85; margin: 0 0 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image { aspect-ratio: 4 / 5; width: 100%; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* — page header (non-home) — */
.page-head { max-width: 1360px; margin: 0 auto; padding: 72px 40px 24px; }
.page-head h1 { font-size: 44px; margin: 0 0 20px; max-width: 18ch; }
.page-head p { font-size: 16px; opacity: 0.8; max-width: 60ch; line-height: 1.6; margin: 0; }

/* — section headers — */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}
.section-head h2 { font-size: 32px; margin: 0; }
.section-head a {
  font-size: 14px;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--color-accent);
  text-decoration: none;
}

/* — grids — */
.grid-3, .grid-2 {
  display: grid;
  gap: 0;
  border-top: 2px solid var(--color-divider);
  border-left: 2px solid var(--color-divider);
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cell {
  padding: 32px;
  border-right: 2px solid var(--color-divider);
  border-bottom: 2px solid var(--color-divider);
}
.grid-cell .n {
  font-size: 12px;
  font-weight: 800;
  color: var(--color-accent);
  font-family: var(--font-heading);
  margin-bottom: 14px;
}
.grid-cell h3 { font-size: 19px; margin: 0 0 10px; }
.grid-cell p { font-size: 13px; opacity: 0.75; margin: 0; line-height: 1.55; }
.grid-cell .includes { font-size: 13px; opacity: 0.6; margin: 12px 0 0; line-height: 1.6; }

/* — process — */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.process .n {
  font-size: 34px;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--color-accent-300);
  margin-bottom: 12px;
}
.process h4 { font-size: 16px; margin: 0 0 8px; }
.process p { font-size: 13px; opacity: 0.75; margin: 0; line-height: 1.5; }

/* — reviews banner — */
.banner {
  background: var(--color-accent);
  color: var(--color-bg);
  padding: 64px 40px;
}
.banner-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.banner h2 { color: var(--color-bg); font-size: 30px; margin: 0; max-width: 24ch; }
.banner .btn-primary { color: var(--color-accent); background: var(--color-bg); }
.banner .btn-primary:hover { background: var(--color-surface); }

/* — gallery — */
.gallery-collage { width: 100%; overflow: hidden; }
.gallery-collage img { width: 100%; height: auto; }
.gallery-caption { font-size: 12px; opacity: 0.55; margin: 12px 0 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.gallery-grid figure { margin: 0; }
.gallery-grid .photo {
  aspect-ratio: 11 / 6;
  margin-bottom: 12px;
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(32, 30, 29, 0.4);
  font-size: 12px;
  text-align: center;
  padding: 12px;
  overflow: hidden;
}
.gallery-grid .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-grid .tag {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 800;
  margin-bottom: 4px;
}
.gallery-grid .title { font-size: 14px; font-weight: 600; }

/* — about — */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.about-photo { aspect-ratio: 4 / 5; overflow: hidden; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo.about-logo {
  aspect-ratio: 1 / 1;
  max-width: 280px;
  margin: 0 auto;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
}
.about-photo.about-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about-grid h1 { font-size: 38px; max-width: 16ch; }
.about-grid p { font-size: 15px; opacity: 0.85; line-height: 1.7; }
.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.values h4 { font-size: 15px; margin: 0 0 6px; }
.values p { font-size: 13px; opacity: 0.7; margin: 0; line-height: 1.5; }

/* — contact — */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}
.contact-grid h1 { font-size: 38px; max-width: 16ch; }
.contact-grid > div > p { font-size: 15px; opacity: 0.8; max-width: 44ch; line-height: 1.6; }
.field { display: flex; flex-direction: column; gap: 20px; max-width: 480px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: 12px; margin-bottom: 5px; opacity: 0.7; }
.field input, .field textarea {
  width: 100%;
  min-height: 40px;
  padding: 8px 12px;
  font: inherit;
  font-size: 14px;
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
}
.field textarea { min-height: 120px; resize: vertical; }
.contact-card {
  background: var(--color-surface);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-card .label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 6px;
}
.contact-card a { text-decoration: none; }
.contact-card a:hover { color: var(--color-accent); }
.contact-card .phone { font-size: 18px; font-weight: 800; font-family: var(--font-heading); }
.socials { display: flex; flex-direction: column; gap: 10px; }
.socials a { font-size: 14px; text-decoration: none; }
.socials a:hover { color: var(--color-accent); }

/* — footer — */
.site-footer {
  border-top: 2px solid var(--color-divider);
  padding: 48px 40px 28px;
  margin-top: auto;
}
.footer-grid {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-grid img { height: 30px; width: auto; margin-bottom: 14px; mix-blend-mode: multiply; }
.footer-grid p { font-size: 13px; opacity: 0.7; max-width: 34ch; line-height: 1.6; margin: 0; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col .heading {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 4px;
}
.footer-col a { font-size: 13px; text-decoration: none; }
.footer-col a:hover { color: var(--color-accent); }
.footer-bottom {
  max-width: 1360px;
  margin: 0 auto;
  border-top: 1px solid var(--color-divider);
  padding-top: 20px;
  font-size: 12px;
  opacity: 0.55;
}

/* — localisation maps — */
.maps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.map-card h3 { font-size: 19px; margin: 0 0 4px; }
.map-card p { font-size: 13px; opacity: 0.75; margin: 0 0 14px; }

.map-frame {
  border: 2px solid var(--color-divider);
  background: var(--color-surface);
  padding: 6px;
}
.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* — responsive — */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 56px 24px 40px; }
  .hero h1 { font-size: 40px; }
  .wrap, .page-head { padding-left: 24px; padding-right: 24px; }
  .grid-3, .grid-2, .process, .gallery-grid, .footer-grid, .values, .maps-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .site-header, .banner, .site-footer { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 560px) {
  .grid-3, .grid-2, .process, .gallery-grid, .footer-grid, .values, .field-row, .maps-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
}
