@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --white: #ffffff;
  --off-white: #f8f7f4;
  --paper: #f2efe9;
  --green: #1b4332;
  --green-2: #2d6a4f;
  --green-3: #40916c;
  --green-light: #d8f3dc;
  --copper: #b5451b;
  --copper-2: #e05f2c;
  --copper-light: #fde8e0;
  --ink: #111827;
  --ink-2: #374151;
  --muted: #6b7280;
  --line: #e5e0d8;
  --line-green: rgba(27,67,50,.15);
  --shadow: 0 4px 32px rgba(17,24,39,.1);
  --shadow-lg: 0 16px 64px rgba(17,24,39,.16);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.12;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Layout ── */
.container { width: min(1200px, calc(100% - 48px)); margin: 0 auto; }
.section { padding: 96px 0; }
.section--paper { background: var(--paper); }
.section--green { background: var(--green); color: var(--white); }
.section--green-2 { background: var(--green-2); color: var(--white); }

/* ── Deco elements ── */
.deco-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.deco-line::before { content: ''; width: 40px; height: 2px; background: var(--copper); flex-shrink: 0; }
.deco-line::after { content: ''; width: 8px; height: 8px; background: transparent; border: 2px solid var(--copper); transform: rotate(45deg); flex-shrink: 0; }

.deco-label {
  font-family: 'Outfit', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--copper);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .06em;
  cursor: pointer;
  transition: all .2s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
}

.btn-dark {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn-dark:hover { background: var(--copper); border-color: var(--copper); }

.btn-copper {
  background: var(--copper);
  color: var(--white);
  border-color: var(--copper);
}

.btn-copper:hover { background: var(--copper-2); border-color: var(--copper-2); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-outline:hover { background: var(--ink); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}

.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--green);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.brand-sub {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
}

.brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: .08em;
  color: var(--green);
  line-height: 1;
}

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

.nav a {
  padding: 8px 14px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: .15s;
}

.nav a:hover, .nav a.active { color: var(--green); border-bottom-color: var(--green); }
.nav .btn { margin-left: 10px; border-radius: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--line);
  color: var(--green);
  width: 40px;
  height: 40px;
  font-size: 1rem;
  cursor: pointer;
}

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 72px);
  overflow: hidden;
}

.hero-text {
  background: var(--off-white);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Deco corner ornament */
.hero-text::before {
  content: '';
  position: absolute;
  top: 40px;
  right: 40px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--line-green);
  transform: rotate(45deg);
  pointer-events: none;
}

.hero-text::after {
  content: '';
  position: absolute;
  top: 60px;
  right: 60px;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(181,69,27,.12);
  transform: rotate(45deg);
  pointer-events: none;
}

.hero-text h1 {
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  color: var(--green);
  margin: 18px 0 24px;
  max-width: 580px;
  line-height: 1.05;
}

.hero-text h1 i { color: var(--copper); font-style: italic; }

.hero-desc {
  font-size: 1.05rem;
  color: var(--ink-2);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.hero-fact {
  padding: 18px 16px;
  border-right: 1px solid var(--line);
}

.hero-fact:last-child { border-right: none; }

.hero-fact strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: .06em;
  color: var(--green);
  margin-bottom: 2px;
}

.hero-fact span { font-size: .75rem; color: var(--muted); letter-spacing: .04em; }

.hero-visual {
  position: relative;
  overflow: hidden;
}

.hero-visual .img-placeholder {
  height: 100%;
  min-height: 480px;
}

.hero-info-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--green);
  padding: 22px 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: var(--green);
}

.info-strip-item {
  padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,.12);
}

.info-strip-item:first-child { padding-left: 0; }
.info-strip-item:last-child { border-right: none; }

.info-strip-item .label {
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 4px;
}

.info-strip-item .val {
  font-size: .9rem;
  color: var(--white);
  font-weight: 500;
}

/* ── Registration bar ── */
.reg-bar {
  background: var(--green);
  border-bottom: 3px solid var(--copper);
}

.reg-bar-inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
}

.reg-item {
  padding: 14px 28px;
  border-right: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.reg-item:last-child { border-right: none; }

.reg-item .ri-label {
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

.reg-item .ri-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--copper-2);
  letter-spacing: .08em;
}

/* ── Section header ── */
.section-header { margin-bottom: 56px; }

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  color: var(--green);
  margin-top: 10px;
  max-width: 680px;
}

.section-title--white { color: var(--white); }
.section-title--ink { color: var(--ink); }

.section-lead {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.75;
  margin-top: 16px;
}

.section-lead--light { color: rgba(255,255,255,.6); }

/* ── Feature grid - deco card style ── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}

.feat-card {
  padding: 40px 36px;
  border-right: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: background .2s;
}

.feat-card:last-child { border-right: none; }
.feat-card:hover { background: var(--paper); }

.feat-card::before {
  content: attr(data-num);
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--green-light);
  line-height: 1;
  letter-spacing: .04em;
}

.feat-icon {
  width: 52px;
  height: 52px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 22px;
  color: var(--white);
}

.feat-card h3 {
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 12px;
}

.feat-card p { color: var(--muted); font-size: .93rem; line-height: 1.7; }

/* ── Two-column split ── */
.split-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split-panel {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-visual-panel {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.split-visual-panel .img-placeholder { height: 100%; }

.split-accent {
  position: absolute;
  left: 0;
  top: 60px;
  width: 5px;
  height: 100px;
  background: var(--copper);
}

/* ── Checklist ── */
.checklist { display: grid; gap: 18px; margin-top: 28px; }

.check-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.check-row:last-child { border-bottom: none; padding-bottom: 0; }

.check-mark {
  width: 24px;
  height: 24px;
  background: var(--copper);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 3px;
}

.check-row strong { display: block; margin-bottom: 3px; color: var(--ink); font-size: .97rem; }
.check-row p { font-size: .9rem; color: var(--muted); }

/* ── Steps ── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.step-card {
  padding: 48px 36px;
  border-right: 1px solid var(--line-green);
  position: relative;
}

.step-card:last-child { border-right: none; }

.step-num-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--copper);
  line-height: 1;
  letter-spacing: .04em;
}

.step-line { flex: 1; height: 1px; background: var(--copper); opacity: .3; }

.step-card h3 { font-size: 1.35rem; color: var(--white); margin-bottom: 12px; }
.step-card p { font-size: .92rem; color: rgba(255,255,255,.6); line-height: 1.7; }

/* ── Testimonials ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.testi-card {
  padding: 44px 48px;
  border-right: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
}

.testi-card:nth-child(even) { border-right: none; }
.testi-card:nth-child(3), .testi-card:nth-child(4) { border-bottom: none; }

.testi-deco {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--copper);
  line-height: .7;
  margin-bottom: 16px;
  opacity: .7;
}

.testi-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,.82);
  line-height: 1.6;
  margin-bottom: 20px;
}

.testi-card cite {
  font-size: .78rem;
  font-style: normal;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--copper-2);
  font-weight: 600;
}

/* ── CTA band ── */
.cta-wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 0;
  align-items: stretch;
}

.cta-left {
  padding: 80px 64px;
  background: var(--green);
  color: var(--white);
}

.cta-right {
  background: var(--copper);
  padding: 64px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-right .deco-label { color: rgba(255,255,255,.6); }
.cta-right .deco-line::before, .cta-right .deco-line::after { background: rgba(255,255,255,.4); border-color: rgba(255,255,255,.4); }

.contact-list { display: grid; gap: 18px; margin-top: 24px; }

.contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: rgba(255,255,255,.85);
  font-size: .93rem;
}

.contact-row .ci {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  flex-shrink: 0;
}

/* ── Page hero ── */
.page-hero {
  background: var(--green);
  padding: 72px 0;
  border-bottom: 3px solid var(--copper);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255,255,255,.06);
  transform: rotate(45deg);
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -30px;
  top: -30px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(181,69,27,.2);
  transform: rotate(45deg);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: var(--white);
  margin: 12px 0 16px;
}

.page-hero p { color: rgba(255,255,255,.62); font-size: 1rem; max-width: 600px; line-height: 1.7; }

.info-block {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(181,69,27,.3);
  padding: 22px 26px;
  min-width: 220px;
}

.info-block .label {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--copper-2);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.info-block p, .info-block a { color: rgba(255,255,255,.75); font-size: .9rem; line-height: 1.6; }
.info-block a { color: var(--copper-2); }

/* ── Services ── */
.service-list { display: grid; gap: 0; border: 1px solid var(--line); }

.service-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.service-row:last-child { border-bottom: none; }

.service-row:nth-child(even) { direction: rtl; }
.service-row:nth-child(even) .service-body { direction: ltr; }
.service-row:nth-child(even) .service-thumb { direction: ltr; }

.service-thumb {
  overflow: hidden;
  min-height: 280px;
  position: relative;
}

.service-thumb .img-placeholder { height: 100%; }

.service-body {
  padding: 44px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.service-row:nth-child(odd) .service-body { background: var(--off-white); }

.service-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: .9rem;
  letter-spacing: .14em;
  color: var(--copper);
  margin-bottom: 12px;
  display: block;
}

.service-body h3 {
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 14px;
}

.service-body > p { color: var(--muted); margin-bottom: 24px; font-size: .95rem; }

.service-pts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  list-style: none;
  margin-bottom: 28px;
}

.service-pts li {
  font-size: .88rem;
  color: var(--ink-2);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.service-pts li::before {
  content: '◆';
  font-size: .5rem;
  color: var(--copper);
  margin-top: 5px;
  flex-shrink: 0;
}

/* ── Values ── */
.val-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 3px solid var(--copper);
}

.val-card {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative;
}

.val-card:last-child { border-right: none; }

.val-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: .9rem;
  letter-spacing: .18em;
  color: var(--copper-2);
  margin-bottom: 14px;
  display: block;
}

.val-card h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 12px;
}

.val-card p { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.7; }

/* ── Team ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}

.team-card {
  border-right: 1px solid var(--line);
  overflow: hidden;
}

.team-card:last-child { border-right: none; }

.team-img { aspect-ratio: 4/5; overflow: hidden; position: relative; background: var(--paper); }
.team-img .img-placeholder { height: 100%; }

.team-info {
  padding: 22px 20px 24px;
  border-top: 3px solid var(--green);
}

.team-info h3 { font-size: 1.1rem; color: var(--green); margin-bottom: 2px; }
.team-info .role { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--copper); font-weight: 600; display: block; margin-bottom: 10px; }
.team-info p { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ── Contact ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  border: 1px solid var(--line);
}

.contact-panel {
  background: var(--green);
  color: var(--white);
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
}

.contact-panel::after {
  content: '';
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(255,255,255,.05);
  transform: rotate(45deg);
}

.contact-block { margin-bottom: 32px; }
.contact-block .cl {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--copper-2);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.contact-block a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 600;
  display: block;
  line-height: 1.3;
}

.contact-block a:hover { color: var(--copper-2); }
.contact-block p { color: rgba(255,255,255,.65); font-size: .92rem; line-height: 1.65; margin-top: 6px; }

.license-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(181,69,27,.3);
  padding: 18px 20px;
  margin-top: 28px;
}

.license-box .cl { margin-bottom: 10px; }
.license-box p { color: rgba(255,255,255,.6); font-size: .86rem; line-height: 1.65; }

.form-panel {
  background: var(--white);
  padding: 60px 52px;
}

.form-panel h2 { font-size: 2.2rem; color: var(--green); margin-bottom: 32px; }

.fgroup { margin-bottom: 20px; }
.frow2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 7px;
}

input, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  background: var(--off-white);
  font-family: 'Outfit', sans-serif;
  font-size: .93rem;
  color: var(--ink);
  border-radius: 0;
  transition: border-color .15s;
}

input:focus, textarea:focus { outline: none; border-color: var(--green); }
textarea { min-height: 150px; resize: vertical; }

/* ── FAQ ── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); }

.faq-item {
  padding: 32px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .15s;
}

.faq-item:nth-child(even) { border-right: none; }
.faq-item:nth-last-child(-n+2) { border-bottom: none; }
.faq-item:hover { background: var(--paper); }

.faq-item h3 { font-size: 1.1rem; color: var(--green); margin-bottom: 10px; }
.faq-item p { color: var(--muted); font-size: .9rem; line-height: 1.7; }

/* ── Legal ── */
.legal-intro {
  padding: 28px 36px;
  background: var(--green-light);
  border-left: 4px solid var(--green);
  margin-bottom: 32px;
}

.legal-intro p { color: var(--ink-2); font-size: .95rem; line-height: 1.75; }

.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
}

.legal-card {
  padding: 32px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.legal-card:nth-child(even) { border-right: none; }
.legal-card--full { grid-column: 1 / -1; border-right: none; }
.legal-card:last-child { border-bottom: none; }
.legal-card:nth-last-child(2):not(.legal-card--full) { border-bottom: none; }

.legal-card h2 {
  font-size: 1.1rem;
  color: var(--green);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-light);
}

.legal-card p { color: var(--muted); font-size: .9rem; line-height: 1.75; }
.legal-card p + p { margin-top: 10px; }
.legal-card ul { margin: 10px 0 0 18px; color: var(--muted); font-size: .9rem; }
.legal-card li + li { margin-top: 7px; }

/* ── Footer ── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.5);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr .9fr .7fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 24px;
}

.footer-logo {
  display: block;
  margin-bottom: 14px;
}

.footer-logo-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: .1em;
  color: var(--white);
  display: block;
  line-height: 1;
}

.footer-logo-sub {
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--copper-2);
  font-weight: 600;
}

.footer-grid .desc { font-size: .86rem; line-height: 1.7; margin-top: 4px; }

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--copper-2);
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links { display: grid; gap: 10px; }
.footer-links a, .footer-links span { font-size: .87rem; transition: color .15s; }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
}

.footer-bottom span:last-child { color: var(--copper-2); }

/* ── Cookie ── */
#cc-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 680px;
  margin: auto;
  background: var(--ink);
  border: 1px solid rgba(181,69,27,.4);
  border-top: 3px solid var(--copper);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 200;
  box-shadow: var(--shadow-lg);
}

#cc-popup.is-hidden { display: none; }
#cc-popup p { color: rgba(255,255,255,.65); font-size: .86rem; flex: 1; }
#cc-popup a { color: var(--copper-2); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ── Image placeholders ── */
.img-placeholder {
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  font-size: .76rem;
  color: var(--muted);
  line-height: 1.55;
  font-style: italic;
  width: 100%;
}

.img-placeholder--green {
  background: var(--green-2);
  color: rgba(255,255,255,.4);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .hero, .split-wrap, .cta-wrap { grid-template-columns: 1fr; }
  .hero-text { padding: 60px 40px; }
  .hero-facts { grid-template-columns: repeat(3, 1fr); }
  .hero-info-strip { position: static; }
  .split-panel { padding: 60px 40px; }
  .split-visual-panel { min-height: 340px; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .reg-bar-inner { flex-wrap: wrap; }
  .reg-item { flex: 1 0 40%; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 24px;
    right: 24px;
    background: var(--white);
    border: 2px solid var(--green);
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
    z-index: 99;
  }
  .nav.is-open { display: flex; }
  .hero-text { padding: 44px 24px; }
  .hero-facts { grid-template-columns: 1fr 1fr; }
  .hero-info-strip { grid-template-columns: 1fr; }
  .feat-grid, .val-grid, .steps-row, .team-grid { grid-template-columns: 1fr; }
  .feat-card, .val-card, .step-card, .team-card { border-right: none; border-bottom: 1px solid var(--line); }
  .testi-grid, .faq-grid, .legal-grid { grid-template-columns: 1fr; }
  .testi-card, .faq-item, .legal-card { border-right: none !important; }
  .service-row { grid-template-columns: 1fr; direction: ltr !important; }
  .service-thumb { min-height: 240px; }
  .service-body { padding: 32px 28px; }
  .cta-left { padding: 56px 32px; }
  .cta-right { padding: 44px 32px; }
  .contact-panel, .form-panel { padding: 44px 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .frow2 { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  #cc-popup { flex-direction: column; align-items: flex-start; }
}
