/* ============================================================
   LES TOITURES DE LA CÔTE D'AZUR — style.css
   Police : Montserrat
   Palette : Navy #1B2B5E / Orange #F18A2C / Sable méditerranéen
   ============================================================ */

/* ── Reset & Variables ── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  /* -- Couleurs Principales -- */
  --blue:      #1B2B5E; /* Navy principal (logo, titres) */
  --blue-d:    #0F1B3F; /* Navy foncé (hover, dégradés) */
  --blue-l:    #3A4F8A; /* Navy clair (liens secondaires) */

  /* -- Accents Méditerranéens -- */
  --red:       #F18A2C; /* Orange chaleureux (CTA) */
  --red-l:     #FAA85A; /* Orange clair (badges, survol doux) */
  --red-d:     #D87111; /* Orange foncé (hover boutons) */

  /* -- Fonds & Neutres -- */
  --bg-main:   #FAFBFE;
  --light:     #EEF1F8;
  --white:     #ffffff;
  --dark:      #0F1B3F;

  /* -- Textes & Bordures -- */
  --text:      #1B2B5E;
  --muted:     #64748B;
  --border:    #E2E8F0;

  /* -- Utilitaires -- */
  --success:   #10B981;
  --r:         12px;
  --r-sm:      6px;
  --shadow:    0 4px 20px rgba(15,27,63,.08);
  --shadow-lg: 0 8px 40px rgba(15,27,63,.12);

  /* -- Typographie -- */
  --font:      'Montserrat', system-ui, sans-serif;
  --font-script: 'Dancing Script', 'Brush Script MT', cursive;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); line-height: 1.7; background: var(--bg-main); padding-bottom: 64px; }
@media(min-width:769px) { body { padding-bottom: 0; } }

.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
@media(max-width:480px) { .container { padding: 0 1rem; } }
a { color: var(--blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--red); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── Typographie ── */
h1 { font-size: clamp(1.7rem,3.2vw,2.3rem); font-weight: 800; line-height: 1.2; color: #fff; text-wrap: balance; }
h2 { font-size: clamp(1.4rem,2.6vw,1.9rem); font-weight: 800; color: var(--blue); line-height: 1.3; text-wrap: balance; }
h3 { font-size: 1rem; font-weight: 700; color: var(--blue); text-wrap: balance; }
p  { line-height: 1.7; text-wrap: pretty; hyphens: auto; }

/* Évite les veuves : maintient les mots courts collés à leur voisin (« la », « le », « du », « à »…) */
.hero__sub, .page-hero__desc, .sec-head p, .silo-card p, .step-card p, .artisan__intro p { hyphens: auto; }

/* Slogan en script */
.slogan { font-family: var(--font-script); font-style: italic; color: var(--red); font-size: 1.6rem; font-weight: 500; }

/* ── Boutons ── */
.btn { display: inline-flex; align-items: center; gap: .4rem; padding: .75rem 1.6rem; border-radius: 50px; font-weight: 700; font-size: .92rem; border: none; cursor: pointer; font-family: var(--font); transition: background .2s, transform .15s, border-color .2s; white-space: nowrap; }
.btn--red     { background: var(--red);  color: #fff !important; }
.btn--red:hover  { background: var(--red-d); transform: translateY(-2px); }
.btn--blue    { background: var(--blue); color: #fff !important; }
.btn--blue:hover { background: var(--blue-d); transform: translateY(-2px); }
.btn--outline { background: transparent; color: #fff !important; border: 2px solid rgba(255,255,255,.6); }
.btn--outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--outline-dark { background: transparent; color: var(--blue) !important; border: 2px solid var(--blue); }
.btn--outline-dark:hover { background: var(--blue); color: #fff !important; transform: translateY(-2px); }
.btn--full    { width: 100%; justify-content: center; }
.btn--red .icone,
.btn--blue .icone,
.btn--outline .icone { filter: brightness(0) invert(1); }

/* ── Topbar ── */
.topbar { background: var(--dark); color: rgba(255,255,255,.78); font-size:.78rem; padding:.5rem 0; }
.topbar__inner { display:flex; justify-content:space-between; align-items:center; }
.topbar a { color:rgba(255,255,255,.88); display:inline-flex; align-items:center; gap:.4rem; }
.topbar a:hover { color:var(--red-l); }
@media(max-width:600px) { .topbar__addr { display:none; } }

/* ── Header ── */
.hd { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--border); box-shadow: 0 2px 10px rgba(15,27,63,.04); transition: transform .35s ease; }
@media(min-width:769px) { .hd { background: rgba(255,255,255,.97); backdrop-filter: blur(10px); } }
.hd--hidden { transform: translateY(-100%); }
.hd__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .65rem 1.5rem; }

/* ── Logo ── */
.logo { display: inline-flex; align-items: center; color: var(--blue) !important; }
.logo img  { height: 60px; width: auto; }
.logo--ft img { height: 56px; }
@media(max-width:768px) { .logo img { height: 48px; } }

/* ── Nav desktop ── */
.nav__list { display: flex; align-items: center; gap: .05rem; }
.nav__list > li > a { display: flex; align-items: center; gap: .3rem; padding: .5rem .9rem; border-radius: var(--r-sm); font-weight: 600; font-size: .9rem; color: var(--text); transition: background .15s, color .15s; }
.nav__list > li > a:hover { background: var(--light); color: var(--red); }

/* ── Burger ── */
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .4rem; }
.burger span { display: block; width: 24px; height: 2px; background: var(--blue); border-radius: 2px; transition: transform .3s, opacity .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__cta-mobile { display: none; }

/* ── Barre mobile ── */
.mob-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; height: 64px; z-index: 99; }
.mob-bar a { display: flex; align-items: center; justify-content: center; gap: .6rem; width: 50%; height: 100%; font-weight: 700; font-size: .95rem; }
.mob-bar { opacity: 0; pointer-events: none; transition: opacity .3s ease; }
.mob-bar.visible { opacity: 1; pointer-events: auto; }
.mob-bar__tel   { background: var(--red);  color: #fff !important; }
.mob-bar__devis { background: var(--blue); color: #fff !important; }
.mob-bar__tel .icone,
.mob-bar__devis .icone { filter: brightness(0) invert(1); }

/* ── Hero ── */
.hero { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-d) 100%); padding: 3rem 0 3rem; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -120px; right: -80px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(241,138,44,.22), transparent 60%); pointer-events: none; }
.hero__inner { display: grid; grid-template-columns: 55% 45%; gap: 2.5rem; align-items: center; position: relative; }
.hero__logo { display: block; width: 180px; height: auto; margin-bottom: .75rem; background: #fff; border-radius: 10px; padding: .6rem 1rem; box-shadow: 0 8px 30px rgba(0,0,0,.15); }
.hero__brand { font-size: clamp(1.05rem, 1.5vw, 1.25rem); font-weight: 700; color: var(--red-l); letter-spacing: .02em; margin: .25rem 0 .4rem; text-wrap: balance; line-height: 1.2; }
.hero h1   { color: #fff; margin-bottom: .5rem; }
.hero__tagline { font-family: var(--font-script); font-size: 1.6rem; color: var(--red-l); margin: .3rem 0 .9rem; font-weight: 500; text-wrap: balance; line-height: 1.2; }
.hero__sub { color: rgba(255,255,255,.88); font-size: 1rem; margin: .75rem 0 1.5rem; max-width: 520px; }
.hero__btns { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.25rem; }

.hero__img-wrap { position: relative; }
.hero__img-wrap > img { width: 100%; border-radius: var(--r); box-shadow: var(--shadow-lg); display: block; }

/* ── Page hero ── */
.page-hero { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-d) 100%); padding: 2.5rem 0 2.5rem; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -100px; right: -60px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(241,138,44,.18), transparent 60%); pointer-events: none; }
.page-hero__inner { display: grid; grid-template-columns: 55% 45%; gap: 3rem; align-items: center; position: relative; }
.breadcrumb { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 1rem; font-size: .8rem; color: rgba(255,255,255,.5); }
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: #fff; }
.page-hero__desc { color: rgba(255,255,255,.88); max-width: 640px; margin: .8rem 0 1rem; }
.page-hero__btns { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.25rem; }
.page-hero__img-wrap { position: relative; }
.page-hero__img-wrap > img { width: 100%; border-radius: var(--r); box-shadow: var(--shadow-lg); display: block; object-fit: cover; height: 340px; }

/* ── Sections ── */
.section { padding: 4rem 0; }
.section--light { background: var(--light); }
.section--dark  { background: var(--dark); }
.sec-head { text-align: center; margin-bottom: 3rem; }
@media(max-width:768px) { .sec-head { text-align: left; } .sec-head p { text-align: left; } }
.sec-head p { color: var(--muted); max-width: 640px; margin: .8rem auto 0; }
.sec-head--white h2, .sec-head--white p { color: rgba(255,255,255,.9); }

/* ── Silos services ── */
.silos { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.silos--3 { grid-template-columns: repeat(3,1fr); }
.silo-card { background: var(--white); border: 1px solid var(--border); border-top: 4px solid var(--red); border-radius: var(--r); padding: 1.8rem 1.4rem; text-align: center; transition: transform .25s, box-shadow .25s; }
.silo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.silo-card__icon { display: flex; align-items: center; justify-content: center; width: 72px; height: 72px; margin: 0 auto 1rem; background: rgba(241,138,44,.12); border-radius: 50%; }
.silo-card__icon img { width: 40px; height: 40px; object-fit: contain; display: inline-block; }
.silo-card h3 { margin-bottom: .6rem; color: var(--blue); font-size: 1rem; line-height: 1.35; }
.silo-card p  { font-size: .9rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.6; }

/* ── Chiffres ── */
.chiffres { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.chiffre { text-align: center; padding: 2rem; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); }
.chiffre strong { display: block; font-size: 3rem; font-weight: 900; color: var(--red-l); line-height: 1; margin-bottom: .4rem; }
.chiffre h3 { color: #fff; margin-bottom: .4rem; }
.chiffre p  { color: rgba(255,255,255,.7); font-size: .85rem; }

/* ── Ville pills ── */
.cluster__villes { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px,1fr)); gap: .6rem; }
.ville-pill { display: flex; align-items: center; justify-content: space-between; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r); padding: .7rem 1rem; transition: border-color .2s, transform .2s; color: inherit; }
.ville-pill:hover { border-color: var(--red); transform: translateY(-2px); color: inherit; }
.ville-pill strong { color: var(--blue); font-size: .9rem; display: block; }

/* ── CTA bandes ── */
.cta { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-d) 100%); padding: 5rem 0; }
.cta h2, .cta p { color: rgba(255,255,255,.9); }
.cta h2 { color: #fff; }
.cta p { margin: 1rem 0 2rem; }

.cta-split { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-d) 100%); padding: 4.5rem 0; }
.cta-split__grid { display: grid; grid-template-columns: 55% 45%; gap: 3rem; align-items: center; }
.cta-split__img { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-lg); }
.cta-split__img img { width: 100%; height: 380px; object-fit: cover; display: block; border-radius: var(--r); }
@media(max-width:900px) { .cta-split__grid { grid-template-columns: 1fr; gap: 2rem; } .cta-split__img img { height: 260px; } }

/* ── Formulaires ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 2rem; box-shadow: var(--shadow); }
.form-wrap h3 { margin-bottom: 1.4rem; color: var(--blue); }
.fg { margin-bottom: .9rem; }
.fg label { display: block; margin-bottom: .35rem; font-weight: 600; font-size: .85rem; color: var(--text); }
.fg input, .fg select, .fg textarea { width: 100%; padding: .7rem 1rem; border: 1.5px solid var(--border); border-radius: var(--r-sm); font-size: .92rem; font-family: var(--font); background: var(--white); color: var(--text); transition: border-color .2s; }
.fg input:focus, .fg select:focus, .fg textarea:focus { outline: none; border-color: var(--red); }
.fg textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.msg-ok  { background: #D1FAE5; color: #065F46; padding: .9rem 1.1rem; border-radius: var(--r-sm); margin-bottom: 1rem; font-weight: 600; border-left: 4px solid var(--success); }
.msg-err { background: #FEE2E2; color: #991B1B; padding: .6rem 1rem; border-radius: var(--r-sm); margin-bottom: .5rem; font-size: .88rem; }

/* ── Artisan ── */
.artisan { background: var(--light); }
.artisan__top { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 2.5rem; }
.artisan__label { display: inline-block; background: var(--white); color: var(--red); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: .35rem 1rem; border-radius: 50px; margin-bottom: 1rem; border: 1px solid var(--red); }
.artisan__intro h2 { margin-bottom: 1rem; }
.artisan__intro p  { color: var(--text); font-size: .96rem; margin-bottom: .85rem; line-height: 1.75; }
.artisan__photo { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); background: var(--white); padding: 2rem; display: flex; align-items: center; justify-content: center; }
.artisan__photo img { max-width: 100%; height: auto; display: block; }
.artisan__atouts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 2rem; }
.artisan__atout { display: flex; align-items: flex-start; gap: .9rem; background: var(--white); border-radius: var(--r-sm); padding: 1rem 1.2rem; border: 1px solid var(--border); border-left: 3px solid var(--red); }
.artisan__atout strong { display: block; font-size: .92rem; color: var(--blue); margin-bottom: .2rem; }
.artisan__atout div > span { font-size: .85rem; color: var(--muted); line-height: 1.45; }
.artisan__cta { display: flex; align-items: center; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid var(--border); flex-wrap: wrap; }

/* ── FAQ ── */
.faq-list { max-width: 820px; margin: 2rem auto 0; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 1.3rem 1.6rem; transition: border-color .2s; }
.faq-item:hover { border-color: var(--red); }
.faq-item h3 { color: var(--blue); font-size: 1.02rem; line-height: 1.4; margin: 0 0 .7rem; }
.faq-item p  { color: var(--text); font-size: .94rem; line-height: 1.7; margin: 0; }

/* ── Galerie réalisations ── */
.galerie-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.galerie-card { margin: 0; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); background: #fff; transition: transform .25s, box-shadow .25s; }
.galerie-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.galerie-card img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform .4s ease; }
.galerie-card:hover img { transform: scale(1.03); }
.galerie-card figcaption { padding: 1rem 1.2rem; }
.galerie-card strong { color: var(--blue); font-size: .9rem; display: block; margin-bottom: .2rem; }
.galerie-card span { font-size: .82rem; color: var(--muted); }
@media(max-width:1024px) { .galerie-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:560px)  { .galerie-grid { grid-template-columns: 1fr; } .galerie-card img { height: 220px; } }

/* ── Étapes process ── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; max-width: 1100px; margin: 2rem auto 0; }
.step-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 1.8rem 1.6rem; box-shadow: var(--shadow); }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--red); color: #fff; font-weight: 800; font-size: 1.2rem; margin-bottom: 1rem; }
.step-card h3 { color: var(--blue); font-size: 1.05rem; margin: 0 0 .6rem; line-height: 1.35; }
.step-card p { color: var(--text); line-height: 1.65; font-size: .92rem; margin: 0; }

/* ── Footer ── */
.ft { background: var(--dark); color: #94A3B8; padding: 4rem 0 0; }
.ft__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.ft__brand p { font-size: .86rem; color: #CBD5E1; margin: 1rem 0 1.4rem; line-height: 1.75; }
.ft__col h4 { color: #fff; font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; margin-bottom: .9rem; }
.ft__col li { margin-bottom: .45rem; }
.ft__col li a { color: #94A3B8; font-size: .86rem; }
.ft__col li a:hover { color: var(--red-l); }
.ft__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.4rem 0; font-size: .79rem; color: #64748B; }
.ft__bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.ft__bottom-links { display: flex; gap: 1.5rem; }
.ft__bottom a,
.ft__bottom-links a { color: #64748B; }
.ft__bottom a:hover,
.ft__bottom-links a:hover { color: #fff; }
.ft__cta { display: flex; flex-direction: column; gap: .6rem; margin: 1rem 0; max-width: 280px; }
.ft__btn { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: .8rem 1.2rem; border-radius: var(--r-sm); text-decoration: none; transition: background .2s, transform .15s; text-align: center; font-weight: 800; font-size: .98rem; line-height: 1.2; }
.ft__btn small { font-size: .68rem; font-weight: 400; text-transform: uppercase; letter-spacing: .06em; opacity: .75; margin-top: .15rem; }
.ft__btn--red  { background: var(--red); color: #fff !important; }
.ft__btn--red:hover { background: var(--red-d); transform: translateY(-2px); color: #fff !important; }
.ft__btn--dark { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: #fff !important; }
.ft__btn--dark:hover { background: rgba(255,255,255,.14); color: #fff !important; }
.ft__logo-center { display: flex; justify-content: center; margin-bottom: 1rem; background: #fff; padding: .8rem 1.4rem; border-radius: 8px; max-width: 240px; }
.ft__logo-center img { max-width: 100%; height: auto; }
.ft__adresse { display: flex; align-items: center; gap: .4rem; font-size: .82rem; color: #94A3B8; margin-bottom: 1.25rem; }

/* ── Icônes ── */
.icone { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.icone--white { filter: brightness(0) invert(1); }
.icone--ft    { filter: brightness(0) invert(0.6); }
.icone--orange { filter: brightness(0) saturate(100%) invert(57%) sepia(81%) saturate(1019%) hue-rotate(353deg) brightness(98%) contrast(92%); }

/* Page statique */
.static-wrap { max-width: 820px; padding: 4rem 0; margin: 0 auto; }
.static-wrap h2 { font-size: 1.2rem; margin: 2rem 0 .6rem; border-bottom: 1px solid var(--border); padding-bottom: .4rem; color: var(--blue); }
.static-wrap p  { margin-bottom: .9rem; font-size: .94rem; line-height: 1.75; }

/* ── Responsive ── */
@media(max-width:1024px) {
  .silos              { grid-template-columns: repeat(2,1fr); }
  .ft__grid           { grid-template-columns: 1fr 1fr; }
  .hero__inner        { display: flex; flex-direction: column; grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .hero__logo         { margin: 0 auto; }
  .hero__btns         { justify-content: center; }
  .hero__sub          { margin: 0 auto 1.5rem; text-align: center; }
  .page-hero__inner   { display: flex; flex-direction: column; grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .page-hero__btns    { justify-content: center; }
  .steps              { grid-template-columns: 1fr; gap: 1rem; }
}
@media(max-width:768px) {
  .topbar         { display: none; }
  .mob-bar        { display: flex; }
  .burger         { display: flex; }
  .nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100vh; height: 100dvh; z-index: 999; background: var(--white); padding: 5rem 2rem 2rem; overflow-y: auto; flex-direction: column; }
  .nav.open           { display: flex; }
  .nav__list          { flex-direction: column; gap: 0; }
  .nav__list > li > a { padding: 1.1rem 0; font-size: 1.1rem; font-weight: 700; color: var(--blue); border-bottom: 1px solid var(--border); }
  .nav__cta-mobile    { display: flex; flex-direction: column; gap: .8rem; margin-top: auto; padding-top: 1.5rem; }
  .nav__cta-mobile .btn { justify-content: center; font-size: 1.05rem; padding: 1rem 1.5rem; }
  .burger             { z-index: 1000; }
  .form-grid          { grid-template-columns: 1fr; gap: 2rem; }
  .form-row           { grid-template-columns: 1fr; }
  .ft__grid           { grid-template-columns: 1fr; gap: 0; text-align: center; }
  .ft__col            { display: none; }
  .ft__brand          { text-align: center; }
  .ft__logo-center    { margin: 0 auto 1rem; }
  .ft__adresse        { justify-content: center; }
  .ft__cta            { margin: 1rem auto; }
  .ft__bottom-inner   { flex-direction: column; text-align: center; gap: .75rem; }
  .chiffres           { grid-template-columns: 1fr; gap: 1rem; }
  .artisan__top       { grid-template-columns: 1fr; gap: 2rem; }
  .artisan__photo     { max-width: 380px; margin: 0 auto; }
  .artisan__atouts    { grid-template-columns: 1fr; }
  .hd__cta            { display: none; }
}
@media(max-width:480px) {
  .silos        { grid-template-columns: 1fr; }
  .hero__btns,
  .page-hero__btns { flex-direction: column; align-items: stretch; }
  .hero__btns .btn,
  .page-hero__btns .btn { width: 100%; justify-content: center; }
}
