/* -------------------------------------------------------------------------
   Contact page — from design/contact.html.
   Loaded on the Contact page (slug: contact). Self-contained: hero styles
   are duplicated from blog.css on purpose so pages stay decoupled.
   ------------------------------------------------------------------------- */

/* Hero (taller than the blog hero — the contact cards overlap it) */
.page-hero{position:relative;overflow:hidden}
.ph-hero{background:
  linear-gradient(75deg,rgba(0,0,0,.68) 0%,rgba(0,0,0,.44) 36%,rgba(0,0,0,.14) 66%,rgba(0,0,0,0) 100%),
  linear-gradient(180deg,rgba(0,0,0,.42) 0%,rgba(0,0,0,.16) 42%,rgba(0,0,0,.4) 78%,rgba(0,0,0,.62) 100%),
  url('../images/home-featured.jpg') center/cover no-repeat}
.page-hero .container{position:relative;min-height:460px;display:flex;flex-direction:column;justify-content:flex-end;padding-top:150px;padding-bottom:136px}
.eyebrow{font-size:12px;font-weight:600;letter-spacing:.24em;color:rgba(255,255,255,.85);text-transform:uppercase}
.page-hero h1{font-family:var(--serif);font-weight:500;font-size:44px;line-height:1.13;color:#fff;margin-top:14px;max-width:620px}
.page-hero h1 em{font-style:italic;font-weight:500}
.page-hero .hero-sub{margin-top:14px;font-size:15px;line-height:1.65;color:rgba(255,255,255,.88);max-width:540px}

/* Contact section — info card + form card overlapping the hero */
.contact{background:var(--paper);padding:0 0 92px}
.contact-wrap{display:grid;grid-template-columns:.95fr 1.05fr;gap:56px;margin-top:-72px;position:relative;z-index:5}
.c-info{background:var(--pine-950);border-radius:18px;padding:34px 32px 30px;color:#fff;align-self:start}
.c-kicker{font-family:'Caveat',cursive;font-weight:600;font-size:24px;line-height:1;color:#7FC79E;transform:rotate(-2deg);display:inline-block}
.c-info h2{font-family:var(--serif);font-weight:600;font-size:26px;margin-top:10px;color:#fff}
.c-info>cite{display:block;margin-top:8px;font-size:13.5px;font-style:normal;color:rgba(255,255,255,.66);line-height:1.6}
.c-list{margin-top:24px;border-top:1px solid rgba(255,255,255,.14);list-style:none;margin-bottom:0}
.c-item{display:flex;gap:14px;align-items:flex-start;padding:17px 0;border-bottom:1px solid rgba(255,255,255,.14)}
.c-ico{width:44px;height:44px;border-radius:50%;background:rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;color:#8FCBA8;flex-shrink:0}
.c-ico svg{width:19px;height:19px}
.c-item h3{font-size:13px;font-weight:600;letter-spacing:.04em;text-transform:uppercase;color:rgba(255,255,255,.55);margin-bottom:0}
.c-item p,.c-item a{font-size:14px;font-weight:500;color:rgba(255,255,255,.92);margin-top:3px;line-height:1.5;margin-bottom:0}
.c-item a{transition:color .2s}
.c-item a:hover{color:#8FCBA8}
.c-hours{display:flex;gap:10px;align-items:center;margin-top:18px;font-size:12.5px;color:rgba(255,255,255,.66);margin-bottom:0}
.c-hours svg{width:15px;height:15px;color:#8FCBA8;flex-shrink:0}
.c-social{display:flex;gap:14px;margin-top:22px;padding-top:20px;border-top:1px solid rgba(255,255,255,.14)}
.c-social span{font-size:12px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,.55);align-self:center;margin-right:2px}
.c-social a{color:rgba(255,255,255,.85);transition:color .2s,transform .2s}
.c-social a:hover{color:#fff;transform:translateY(-2px)}
.c-social svg{width:18px;height:18px}

/* Form card */
.form-card{background:#fff;border-radius:18px;box-shadow:0 26px 50px -22px rgba(14,36,25,.28);padding:34px 32px 32px}
.form-head{display:flex;align-items:flex-end;justify-content:space-between;gap:18px}
.form-head h2{font-family:var(--serif);font-weight:600;font-size:26px;color:#17352A;margin-bottom:0}
.form-head p{margin-top:6px;font-size:13.5px;color:var(--body);margin-bottom:0}
.form-script{font-family:'Caveat',cursive;font-weight:600;font-size:21px;line-height:1;color:var(--wa);transform:rotate(-2deg);display:inline-block;white-space:nowrap;padding-bottom:4px}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:26px}
.f-field{display:flex;flex-direction:column;gap:7px}
.f-field--full{grid-column:1/-1}
.f-field label{font-size:12px;font-weight:600;color:#3D4C42;letter-spacing:.02em;margin-bottom:0}
.f-field input,.f-field select,.f-field textarea{font-family:inherit;font-size:14px;color:var(--ink);border:1px solid var(--line);border-radius:10px;padding:12px 14px;background:#fff;outline:none;transition:border-color .2s,box-shadow .2s;appearance:none;width:100%}
.f-field select{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238B968D' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6.5 9.5 5.5 5 5.5-5'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 14px center;background-size:16px;padding-right:40px;cursor:pointer}
.f-field textarea{resize:vertical;min-height:120px}
.f-field input:focus,.f-field select:focus,.f-field textarea:focus{border-color:var(--leaf);box-shadow:0 0 0 3px rgba(30,124,75,.12)}
.f-field input::placeholder,.f-field textarea::placeholder{color:#9AA79C}
.btn-send{display:inline-flex;align-items:center;justify-content:center;gap:10px;background:var(--pine-btn);color:#fff;font-size:14px;font-weight:600;border-radius:10px;padding:14px 26px;transition:background .2s,transform .2s;grid-column:1/-1;margin-top:2px;border:0;cursor:pointer;font-family:inherit}
.btn-send:hover{background:var(--pine-btn-hover);transform:translateY(-1px)}
.btn-send svg{width:16px;height:16px}
.form-note{display:flex;align-items:center;gap:8px;grid-column:1/-1;font-size:12px;color:var(--muted);margin-bottom:0}
.form-note svg{width:14px;height:14px;color:var(--leaf);stroke-width:2;flex-shrink:0}

/* Honeypot — hidden from humans, visible to bots */
.ddp-hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}

/* Submit notices */
.c-alert{display:flex;align-items:flex-start;gap:10px;border-radius:10px;padding:14px 16px;font-size:13.5px;line-height:1.55;margin-top:18px;margin-bottom:0}
.c-alert svg{width:16px;height:16px;flex-shrink:0;margin-top:2px}
.c-alert--ok{background:#EAF4EE;color:#1E5C3C;border:1px solid #CDE4D6}
.c-alert--err{background:#FBEEEA;color:#8C3B2E;border:1px solid #F0D6CC}

/* Visit band (hidden for now — remove this rule to re-enable) */
.visit{display:none}
.visit{background-image:linear-gradient(rgba(12,24,28,.4),rgba(12,24,28,.45)),linear-gradient(180deg,rgba(65,98,111,.55) 0%,rgba(44,75,73,.55) 45%,rgba(23,52,43,.65) 100%),url('../images/cta-bg.jpg');background-size:cover;background-position:center;background-repeat:no-repeat}
.visit .container{display:flex;align-items:center;justify-content:space-between;gap:28px;padding-top:44px;padding-bottom:44px}
.visit h2{font-family:var(--serif);font-weight:600;font-size:27px;color:#fff;margin-bottom:0}
.visit p{margin-top:6px;font-size:14px;color:rgba(255,255,255,.85);margin-bottom:0}
.visit-addr{display:flex;align-items:center;gap:8px;margin-top:10px;font-size:13px;font-weight:500;color:rgba(255,255,255,.9)}
.visit-addr svg{width:15px;height:15px;stroke-width:1.8;flex-shrink:0}
.visit-actions{display:flex;align-items:center;gap:14px;flex-shrink:0}
.btn-wa{display:inline-flex;align-items:center;gap:10px;background:var(--wa);color:#fff;font-size:14px;font-weight:600;padding:13px 20px;border-radius:8px;transition:background .2s;white-space:nowrap}
.btn-wa:hover{background:#24B368}
.btn-wa svg{width:18px;height:18px;fill:currentColor}
.btn-ghost{display:inline-flex;align-items:center;color:#fff;font-size:14px;font-weight:600;padding:12px 26px;border-radius:8px;border:1px solid rgba(255,255,255,.65);transition:background .2s;white-space:nowrap}
.btn-ghost:hover{background:rgba(255,255,255,.12)}

@media (max-width:1120px){
  .contact-wrap{gap:36px}
}
@media (max-width:960px){
  .page-hero .container{min-height:380px;padding-top:126px}
  .page-hero h1{font-size:38px}
  .contact-wrap{grid-template-columns:1fr;margin-top:-56px}
  .visit .container{flex-direction:column;align-items:flex-start}
}
@media (max-width:680px){
  .page-hero h1{font-size:32px}
  .form-grid{grid-template-columns:1fr}
  .c-info,.form-card{padding:26px 20px 24px}
  .visit-actions{flex-direction:column;align-items:stretch;width:100%}
  .btn-wa,.btn-ghost{justify-content:center}
}
