:root {
  --bg: #faf9f7;
  --ink: #16181a;
  --ink-soft: #2c2a27;
  --muted: #55524d;
  --muted-2: #7b7770;
  --muted-3: #8d8981;
  --line: #e4e1dc;
  --line-soft: #eceae5;
  --panel: #f4f2ee;
  --accent: #c1622c;
  --accent-hover: #d98a5f;
  --success: #3f8f5b;
  --dark: #16181a;
  --dark-text: #f4f2ee;
  --dark-muted: #b8b4ad;
  --dark-muted-2: #9d9992;
  --dark-line: #2a2d30;
}

@supports (color: oklch(0.5 0.1 40)) {
  :root {
    --accent: oklch(0.58 0.13 42);
    --accent-hover: oklch(0.75 0.13 42);
    --success: oklch(0.52 0.11 145);
  }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Manrope, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; font-weight: 600; }

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--accent); }

input, textarea, select, button { font-family: inherit; }

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

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin: 0 0 18px;
}

.mono-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted-2);
  margin: 0 0 10px;
}

.mono-label-sm {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 0 0 6px;
  display: block;
}

.mono-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--muted-3);
  margin: 28px 0 0;
  letter-spacing: 0.04em;
}

.btn {
  display: inline-block;
  padding: 15px 26px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 2px;
  border: none;
  cursor: pointer;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--accent); color: var(--bg); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(18, 20, 22, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--dark-line);
  color: var(--dark-text);
}
.header-inner {
  min-height: 76px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 24px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.brand { display: flex; align-items: stretch; gap: 14px; }
.brand-flag { display: flex; align-items: center; flex: none; }
.brand-flag img { height: 35px; width: auto; border: 1px solid #3a3d40; }
.brand-flag:hover { opacity: 0.75; }
.brand-name { display: flex; flex-direction: column; justify-content: center; line-height: 1; color: var(--dark-text); }
.brand-title { font-size: 17px; font-weight: 700; letter-spacing: 0.02em; }
.brand-sub { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.14em; color: var(--dark-muted-2); margin-top: 6px; }

.main-nav { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; font-size: 13px; font-weight: 500; letter-spacing: 0.08em; }
.main-nav a { padding: 10px 14px; color: #e8e5e0; }
.main-nav a:hover { color: var(--accent-hover); }
.main-nav .nav-cta { background: var(--bg); color: var(--ink); border-radius: 2px; }
.main-nav .nav-cta:hover { background: var(--accent); color: #fff; }

/* Hero */
.hero-grid {
  padding: 56px 24px 96px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px;
  align-items: center;
}
.hero-text { text-align: center; }
.hermine-row { display: flex; align-items: flex-end; justify-content: center; gap: 30px; margin: 0 0 30px; }
.hermine { height: auto; }
.hermine-sm { width: 38px; }
.hermine-lg { width: 52px; }

h1 {
  font-size: clamp(33px, 4.7vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.005em;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 24px;
  text-wrap: balance;
}
.lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 auto 36px;
  max-width: 46ch;
  text-wrap: pretty;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: center; }

.hero-photo {
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Intro strip */
.intro-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--panel); }
.intro-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.intro-item { padding: 34px 28px; }
.intro-item-middle { border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
.intro-text { font-size: 15px; line-height: 1.55; color: #44413d; margin: 0; }

/* Expertise */
.expertise { padding: 96px 24px 40px; }
.expertise-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 56px; }
.expertise h2, .zone h2, .contact h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0;
}
.expertise-copy { display: flex; flex-direction: column; gap: 20px; font-size: 17px; line-height: 1.65; color: #4a4741; max-width: 62ch; }
.expertise-copy p { margin: 0; text-wrap: pretty; }

.photo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 56px; }
.photo-placeholder {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
}
.photo-placeholder img { width: 100%; height: 100%; object-fit: cover; }

/* Equipment */
.equipment { padding: 56px 24px 96px; }
.section-label {
  font-size: 13px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--muted-2);
  margin: 0 0 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.equipment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1px 40px; }
.equipment-item { display: flex; align-items: baseline; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--line-soft); }
.equipment-num { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: #b4afa7; }
.equipment-item span:last-child { font-size: 16px; color: var(--ink-soft); }
.equipment-note { font-size: 15px; color: var(--muted-2); margin: 24px 0 0; }

/* Zone */
.zone { background: var(--dark); color: var(--dark-text); }
.zone-grid { padding: 88px 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 56px; align-items: start; }
.zone-badge { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.zone-badge img { height: 23px; width: auto; flex: none; outline: 1px solid var(--dark-line); }
.zone-badge .mono-label { color: var(--dark-muted-2); margin: 0; }
.zone-copy { font-size: 17px; line-height: 1.65; color: var(--dark-muted); margin: 0; max-width: 40ch; }
.triskel-wrap { max-width: 40ch; display: flex; justify-content: center; }
.triskel { height: 200px; width: auto; margin: 44px 0 0; opacity: 0.9; }

.map-frame { position: relative; width: 100%; aspect-ratio: 4 / 3; }
.map-frame svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
#map-cities { position: absolute; inset: 0; }
.map-city {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  transform-origin: left center;
}
.map-city-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-hover); flex: none; }
.map-city-name { font-size: 14px; color: #e8e5e0; white-space: nowrap; text-shadow: 0 0 7px var(--dark), 0 0 3px var(--dark); }
.map-note { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: #7f7b75; margin: 22px 0 0; letter-spacing: 0.06em; text-align: center; }

/* Contact */
.contact { padding: 96px 24px 104px; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 64px; align-items: stretch; }
.contact-info { display: flex; flex-direction: column; }
.contact-lede { font-size: 17px; line-height: 1.65; color: var(--muted); margin: 0 0 32px; max-width: 38ch; text-wrap: pretty; }
.contact-details { border-top: 1px solid var(--line); padding-top: 24px; display: flex; flex-direction: column; gap: 18px; flex: 1; }
.contact-email { font-size: 17px; font-weight: 500; border-bottom: 1px solid #cfcbc4; }
.phone-soon { font-size: 17px; color: var(--muted-3); margin: 0; }
.contact-small { font-size: 14px; line-height: 1.55; color: var(--muted-2); margin: 0; }
.breton-greeting {
  font-family: 'Uncial Antiqua', 'Playfair Display', serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-align: center;
  margin: auto 0 34px;
}

.contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}
.contact-form label { display: flex; flex-direction: column; gap: 7px; }
.contact-form .full { grid-column: 1 / -1; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 14px;
  border: 1px solid #d8d4cd;
  background: #fff;
  font-size: 15px;
  border-radius: 2px;
  color: var(--ink);
}
.contact-form textarea { resize: vertical; }
.form-submit { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-status { font-size: 14px; }
.form-status.ok { color: var(--success); }
.form-status.error { color: #b3412c; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: var(--panel); }
.footer-inner { padding: 40px 24px; display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { height: 16px; width: auto; flex: none; border: 1px solid #d8d4cd; }
.footer-name { font-size: 14px; font-weight: 600; letter-spacing: 0.02em; }
.footer-region { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--muted-3); letter-spacing: 0.1em; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; font-size: 14px; color: var(--muted); }
.footer-copy { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--muted-3); margin: 0; letter-spacing: 0.06em; }

@media (max-width: 640px) {
  .footer-inner { justify-content: center; text-align: center; }
  .header-inner { justify-content: center; text-align: center; }
}
