/*
Theme Name: Antoni Hilla Consulting
Description: Conseil informatique indépendant — Paris
Version: 1.0
*/

/* ── FONTS ───────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=DM+Sans:wght@300;400;500&display=swap');

/* ── TOKENS ──────────────────────────────────────────── */
:root {
  --beige:      #F5F3EF;
  --beige-mid:  #EDEBE5;
  --beige-dark: #D9D6D0;
  --or:         #C8B89A;
  --dark:       #1A1A18;
  --dark-2:     #111110;
  --vert:       #1E2A1A;
  --vert-acc:   #7BC47A;
  --texte:      #1A1A18;
  --mid:        #5A5855;
  --leger:      #8A8880;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
  --max:        1160px;
  --radius:     4px;
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--texte); background: var(--beige); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-sans); }

/* ── LAYOUT ──────────────────────────────────────────── */
.ah-wrap        { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.ah-wrap--narrow { max-width: 640px; margin: 0 auto; padding: 0 40px; }

/* ── TYPO HELPERS ────────────────────────────────────── */
.ah-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--leger);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ah-label--light { color: rgba(245,243,239,.35); }

.ah-heading {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--texte);
  letter-spacing: -.5px;
  margin-bottom: 12px;
  line-height: 1.1;
}
.ah-heading--light { color: #E8F2E4; }

.ah-intro {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 580px;
}
.ah-intro--light { color: rgba(220,240,210,.55); }

/* ── NAVIGATIE ───────────────────────────────────────── */
.ah-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--beige);
  border-bottom: 1px solid var(--beige-dark);
}
.ah-nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.ah-nav__left  { display: flex; gap: 28px; justify-content: flex-end; list-style: none; }
.ah-nav__right { display: flex; gap: 28px; align-items: center; justify-content: flex-start; list-style: none; }
.ah-nav__left li a,
.ah-nav__right li a { font-size: 13px; font-weight: 400; color: var(--mid); transition: color .2s; }
.ah-nav__left li a:hover,
.ah-nav__right li a:hover { color: var(--texte); }
.ah-nav__cta {
  font-size: 11px !important;
  font-weight: 500 !important;
  color: var(--texte) !important;
  border: 1px solid var(--texte);
  padding: 7px 16px;
  border-radius: var(--radius);
  letter-spacing: .3px;
  text-transform: uppercase;
  transition: background .2s, color .2s;
}
.ah-nav__cta:hover { background: var(--texte); color: var(--beige) !important; }
.ah-nav__brand { text-align: center; display: flex; flex-direction: column; gap: 2px; }
.ah-nav__brand-name { font-family: var(--font-serif); font-size: 16px; color: var(--texte); letter-spacing: -.2px; }
.ah-nav__brand-meta { font-size: 10px; font-weight: 300; color: var(--leger); letter-spacing: .5px; text-transform: uppercase; }
.ah-nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.ah-nav__toggle span { display: block; width: 20px; height: 1.5px; background: var(--texte); }
.ah-nav__mobile { display: none; flex-direction: column; border-top: 1px solid var(--beige-dark); padding: 16px 40px 20px; gap: 16px; background: var(--beige); }
.ah-nav__mobile a { font-size: 14px; font-weight: 400; color: var(--mid); }
.ah-nav__mobile.is-open { display: flex; }

/* ── HERO ────────────────────────────────────────────── */
.ah-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  background: var(--dark);
}
.ah-hero__left {
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
.ah-hero__eyebrow {
  font-size: 10px;
  font-weight: 400;
  color: rgba(245,243,239,.4);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.ah-hero__title {
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--beige);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.ah-hero__title em { color: var(--or); font-style: normal; }
.ah-hero__sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(245,243,239,.65);
  line-height: 1.8;
  max-width: 360px;
  margin-bottom: 36px;
}
.ah-hero__btn {
  display: inline-block;
  background: var(--or);
  color: var(--dark);
  font-size: 11px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: var(--radius);
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: opacity .2s;
  align-self: flex-start;
}
.ah-hero__btn:hover { opacity: .88; }
.ah-hero__right { overflow: hidden; }
.ah-hero__right img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(.72); }

/* ── STRIP ───────────────────────────────────────────── */
.ah-strip {
  background: var(--or);
  padding: 14px 40px;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 11px;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: .2px;
}
.ah-strip__sep { color: rgba(26,26,24,.4); }

/* ── PRESTATIONS ─────────────────────────────────────── */
.ah-prestations { padding: 80px 0; background: var(--beige); }
.ah-presta-list { border-top: 1px solid var(--beige-dark); }
.ah-presta-item {
  display: grid;
  grid-template-columns: 44px 1fr 1fr 120px;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--beige-dark);
}
.ah-presta-num { font-size: 11px; font-weight: 300; color: #B0ADA8; }
.ah-presta-title { font-size: 14px; font-weight: 500; color: var(--texte); letter-spacing: -.1px; }
.ah-presta-desc { font-size: 12px; font-weight: 300; color: var(--mid); line-height: 1.7; }
.ah-presta-price { font-size: 12px; font-weight: 500; color: var(--texte); text-align: right; white-space: nowrap; }

/* ── IMAGE BREAK ─────────────────────────────────────── */
.ah-imgbreak { display: grid; grid-template-columns: 3fr 2fr; height: 280px; }
.ah-imgbreak__photo { overflow: hidden; }
.ah-imgbreak__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ah-imgbreak__text {
  background: var(--beige-mid);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--beige-dark);
}
.ah-imgbreak__quote {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--texte);
  line-height: 1.45;
  letter-spacing: -.2px;
  margin-top: 10px;
}

/* ── COMPLEMENTAIRES ─────────────────────────────────── */
.ah-complementaires { padding: 80px 0; background: var(--vert); }
.ah-comp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ah-comp-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-top: 2px solid var(--vert-acc);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.ah-comp-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(123,196,122,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vert-acc);
  margin-bottom: 20px;
}
.ah-comp-card__title { font-size: 15px; font-weight: 500; color: #E8F2E4; margin-bottom: 10px; letter-spacing: -.1px; }
.ah-comp-card__desc { font-size: 12px; font-weight: 300; color: rgba(220,240,210,.55); line-height: 1.75; margin-bottom: 20px; }
.ah-comp-card__detail {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ah-comp-card__detail p { font-size: 11px; color: rgba(220,240,210,.45); line-height: 1.7; }
.ah-comp-card__detail strong { color: rgba(220,240,210,.7); font-weight: 500; }
.ah-comp-card__price { font-size: 13px; font-weight: 500; color: var(--vert-acc); margin-top: 18px; }

/* ── FONCTIONNEMENT ──────────────────────────────────── */
.ah-fonctionnement { padding: 80px 0; background: var(--dark); }
.ah-proc-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: rgba(245,243,239,.06);
  border: 1px solid rgba(245,243,239,.06);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 40px;
}
.ah-proc-step { background: var(--dark); padding: 32px 24px; }
.ah-proc-num {
  font-family: var(--font-serif);
  font-size: 40px;
  color: rgba(200,184,154,.14);
  line-height: 1;
  margin-bottom: 18px;
}
.ah-proc-title { font-size: 13px; font-weight: 500; color: var(--beige); margin-bottom: 8px; }
.ah-proc-desc { font-size: 12px; font-weight: 300; color: rgba(245,243,239,.45); line-height: 1.7; }

/* ── CONTACT ─────────────────────────────────────────── */
.ah-contact { padding: 80px 0; background: var(--beige-mid); border-top: 1px solid var(--beige-dark); }
.ah-contact .ah-intro strong { color: var(--texte); font-weight: 500; }
.ah-form { display: flex; flex-direction: column; gap: 16px; }
.ah-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ah-form__field { display: flex; flex-direction: column; gap: 6px; }
.ah-form__label { font-size: 10px; font-weight: 500; color: var(--leger); letter-spacing: 1px; text-transform: uppercase; }
.ah-form__label span { color: var(--texte); }
.ah-form__input,
.ah-form__select,
.ah-form__textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--beige);
  border: 1px solid var(--beige-dark);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--texte);
  transition: border-color .2s;
  appearance: none;
}
.ah-form__input:focus,
.ah-form__select:focus,
.ah-form__textarea:focus { outline: none; border-color: var(--texte); }
.ah-form__textarea { resize: vertical; min-height: 120px; }
.ah-form__btn {
  background: var(--texte);
  color: var(--beige);
  font-size: 11px;
  font-weight: 500;
  padding: 14px;
  border: none;
  border-radius: var(--radius);
  letter-spacing: .8px;
  text-transform: uppercase;
  width: 100%;
  margin-top: 4px;
  transition: opacity .2s;
}
.ah-form__btn:hover { opacity: .85; }
.ah-form__note { font-size: 11px; color: var(--leger); text-align: center; margin-top: 6px; }

/* ── FOOTER ──────────────────────────────────────────── */
.ah-footer { background: var(--dark-2); padding: 56px 40px 32px; }
.ah-footer__top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}
.ah-footer__brand { font-family: var(--font-serif); font-size: 20px; color: var(--beige); margin-bottom: 6px; }
.ah-footer__activite { font-size: 11px; font-weight: 300; color: rgba(245,243,239,.38); line-height: 1.65; margin-bottom: 24px; max-width: 280px; }
.ah-footer__contact { display: flex; flex-direction: column; gap: 12px; }
.ah-footer__contact-row { display: flex; flex-direction: column; gap: 2px; }
.ah-footer__contact-label { font-size: 9px; font-weight: 500; color: rgba(245,243,239,.28); letter-spacing: 1.2px; text-transform: uppercase; }
.ah-footer__contact-val { font-size: 13px; color: rgba(245,243,239,.78); font-weight: 300; }
.ah-footer__contact-val a { color: rgba(245,243,239,.78); transition: color .2s; }
.ah-footer__contact-val a:hover { color: var(--beige); }
.ah-footer__col-head { font-size: 9px; font-weight: 500; color: rgba(245,243,239,.28); letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 14px; }
.ah-footer__links { display: flex; flex-direction: column; gap: 9px; }
.ah-footer__links a { font-size: 12px; font-weight: 300; color: rgba(245,243,239,.5); transition: color .2s; }
.ah-footer__links a:hover { color: var(--beige); }

/* Legal blok */
.ah-footer__legal-block {
  max-width: var(--max);
  margin: 0 auto;
  background: rgba(245,243,239,.04);
  border: 1px solid rgba(245,243,239,.09);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.ah-footer__legal-title {
  font-size: 9px;
  font-weight: 500;
  color: rgba(245,243,239,.28);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.ah-footer__legal-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
.ah-footer__legal-item { padding: 10px 16px 10px 0; border-bottom: 1px solid rgba(245,243,239,.05); }
.ah-footer__legal-item:nth-child(n+4) { border-bottom: none; }
.ah-footer__legal-key { font-size: 9px; font-weight: 500; color: rgba(245,243,239,.28); letter-spacing: .8px; text-transform: uppercase; display: block; margin-bottom: 3px; }
.ah-footer__legal-val { font-size: 12px; color: rgba(245,243,239,.78); font-weight: 400; }

.ah-footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid rgba(245,243,239,.06);
  margin-top: 28px;
  padding-top: 20px;
  text-align: center;
}
.ah-footer__bottom p { font-size: 10px; color: rgba(245,243,239,.18); letter-spacing: .3px; line-height: 1.8; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 960px) {
  .ah-hero { grid-template-columns: 1fr; }
  .ah-hero__right { height: 280px; }
  .ah-hero__title { font-size: 36px; }
  .ah-presta-item { grid-template-columns: 40px 1fr 80px; }
  .ah-presta-desc { display: none; }
  .ah-imgbreak { grid-template-columns: 1fr; height: auto; }
  .ah-imgbreak__photo { height: 220px; }
  .ah-comp-grid { grid-template-columns: 1fr; }
  .ah-proc-grid { grid-template-columns: 1fr 1fr; }
  .ah-footer__top { grid-template-columns: 1fr 1fr; }
  .ah-footer__col--brand { grid-column: 1 / -1; }
  .ah-footer__legal-grid { grid-template-columns: 1fr 1fr; }
  .ah-nav__left, .ah-nav__right { display: none; }
  .ah-nav__inner { grid-template-columns: 1fr auto; }
  .ah-nav__toggle { display: flex; }
}
@media (max-width: 600px) {
  .ah-wrap, .ah-wrap--narrow { padding: 0 20px; }
  .ah-hero__left { padding: 40px 20px; }
  .ah-hero__title { font-size: 28px; }
  .ah-heading { font-size: 26px; }
  .ah-prestations, .ah-complementaires, .ah-fonctionnement, .ah-contact { padding: 56px 0; }
  .ah-presta-item { grid-template-columns: 36px 1fr; }
  .ah-presta-price { display: none; }
  .ah-proc-grid { grid-template-columns: 1fr; }
  .ah-footer__top { grid-template-columns: 1fr; gap: 32px; }
  .ah-footer__legal-grid { grid-template-columns: 1fr; }
  .ah-footer__legal-item { border-bottom: 1px solid rgba(245,243,239,.05) !important; }
  .ah-form__row { grid-template-columns: 1fr; }
  .ah-strip { gap: 12px; }
}
