/* Surface — the original palette, applied to the lean markup.
   Wet slate, aged brass, grout off-white. Same colours as the printed card. */

:root {
  --slate:   #16232E;
  --slate-2: #1E303E;
  --brass:   #A8792C;
  --brass-l: #C89A4A;
  --grout:   #F2EFE9;
  --paper:   #FBFAF8;
  --ink:     #1B2731;
  --muted:   #5C6B76;
  --muted-l: #8FA0AB;
  --line:    #DDD8CF;
  --wrap:    62rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1.125rem;              /* 18px — a lot of this audience is older */
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 1.25rem; }

a { color: var(--slate); text-underline-offset: 3px; }
a:hover { color: var(--brass); }
:focus-visible { outline: 3px solid var(--brass); outline-offset: 3px; }

.skip { position: absolute; left: -9999px; }
.skip:focus { left: 0; top: 0; background: var(--brass); color: #14202B;
              padding: .75rem 1rem; z-index: 100; font-weight: 600; }

/* ── header ── */
header { background: var(--slate); color: var(--grout); }
.head { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem;
        position: relative; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: .8rem; color: var(--grout);
         text-decoration: none; min-height: 44px; }
.brand:hover { color: var(--grout); }
.brand .mark { width: 1.9rem; height: 1.9rem; flex: none; color: var(--grout); }
.brand span { font-size: 1.2rem; font-weight: 600; letter-spacing: .3em; }

.menu { position: absolute; right: 1.25rem; top: 1.1rem;
        background: none; color: var(--grout); border: 1px solid rgba(242,239,233,.3);
        border-radius: 3px; font: inherit; font-size: .95rem; padding: .6rem 1rem;
        cursor: pointer; min-height: 44px; }

nav { display: none; width: 100%; }
nav.open { display: block; }
nav ul { list-style: none; margin: .75rem 0 0; padding: 0; }
nav li { border-top: 1px solid rgba(242,239,233,.12); }
nav a { display: block; padding: .8rem .25rem; color: var(--grout);
        text-decoration: none; min-height: 44px; }
nav a:hover, nav a[aria-current="page"] { color: var(--brass-l); }

@media (min-width: 60rem) {
  .head { flex-wrap: nowrap; position: static; }
  .menu { display: none; }
  nav { display: block; width: auto; margin-left: auto; }
  nav ul { display: flex; gap: 1.2rem; margin: 0; flex-wrap: nowrap; }
  nav li { border: 0; }
  nav a { padding: .35rem 0; font-size: .92rem; min-height: 0; white-space: nowrap; }
  nav a[aria-current="page"] { border-bottom: 2px solid var(--brass); }
}

/* ── sticky call bar ── */
.callbar { position: sticky; top: 0; z-index: 50; display: flex;
           background: var(--slate-2); border-top: 1px solid rgba(242,239,233,.1); }
.callbar a { flex: 1; text-align: center; padding: .9rem .5rem;
             text-decoration: none; font-size: 1.02rem; color: var(--grout);
             font-weight: 600; min-height: 48px; }
.callbar a:hover { color: var(--grout); background: #24394a; }
.callbar .wa { background: var(--brass); color: #14202B; }
.callbar .wa:hover { background: var(--brass-l); color: #14202B; }

/* ── hero ── */
.hero { background: var(--slate); color: var(--grout); padding: 3rem 0 3.25rem; }
@media (min-width: 60rem) { .hero { padding: 4rem 0 4.25rem; } }
.hero h1 { margin: 0; font-size: clamp(1.9rem, 5.5vw, 3rem); line-height: 1.13;
           font-weight: 600; letter-spacing: -.015em; max-width: 20ch; }
.hero .sub { margin: 1.1rem 0 0; font-size: 1.15rem; color: #C3D0D9; max-width: 46ch; }

/* ── body ── */
.body { padding: 2.75rem 1.25rem 4rem; }
@media (min-width: 60rem) { .body { padding: 3.5rem 1.25rem 4.5rem; } }
.body > * { max-width: 40rem; }
.body > .grid4, .body > .gallery, .body > .shot { max-width: none; }

.cta { display: flex; flex-wrap: wrap; gap: .7rem; margin: 3rem 0 0; }
.btn { display: inline-flex; align-items: center; min-height: 50px;
       padding: .85rem 1.4rem; border-radius: 3px; text-decoration: none;
       font-weight: 600; font-size: 1.02rem; border: 1px solid var(--brass);
       background: var(--brass); color: #14202B; }
.btn:hover { background: var(--brass-l); border-color: var(--brass-l); color: #14202B; }
.btn.ghost { background: none; color: var(--slate); border-color: var(--line); }
.btn.ghost:hover { background: none; border-color: var(--slate); color: var(--slate); }

/* ── spec lists ── */
.spec { list-style: none; margin: 0; padding: 0; }
.spec li { position: relative; padding: .85rem 0 .85rem 1.6rem;
           border-bottom: 1px solid var(--line); font-size: 1.05rem; }
.spec li:first-child { border-top: 1px solid var(--line); }
.spec li::before { content: ""; position: absolute; left: 0; top: 1.5rem;
                   width: .7rem; height: 2px; background: var(--brass); }

.note { margin: 2.5rem 0 0; padding: 1.15rem 1.35rem; background: var(--grout);
        border-left: 4px solid var(--brass); color: var(--ink); font-size: 1.02rem; }
.creds { margin: 2.5rem 0 0; color: var(--muted); font-size: 1rem; }
.creds a { display: inline-block; padding: .5rem 0; min-height: 44px; }

/* ── images ── */
.shot { margin: 0 0 2.5rem; }
.shot img, .grid4 img, .gallery img { width: 100%; height: auto; display: block; border-radius: 3px; }
.shot figcaption, .gallery figcaption { margin-top: .7rem; font-size: .95rem; color: var(--muted); }

.grid4 { display: grid; gap: .7rem; grid-template-columns: repeat(2, 1fr); margin: 0 0 3rem; }
.grid4 img { aspect-ratio: 3 / 4; object-fit: cover; object-position: center; }
@media (min-width: 44rem) {
  .grid4 { grid-template-columns: repeat(4, 1fr); }
  .grid4 img { aspect-ratio: 1; }
}

.gallery { display: grid; gap: 2rem 1.25rem; grid-template-columns: 1fr; margin: 0; }
.gallery figure { margin: 0; }
@media (min-width: 40rem) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 62rem) { .gallery { grid-template-columns: repeat(3, 1fr); } }

/* ── home service list ── */
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li { border-bottom: 1px solid var(--line); }
.menu-list li:first-child { border-top: 1px solid var(--line); }
.menu-list a { display: flex; flex-direction: column; gap: .25rem;
               padding: 1.1rem 0; text-decoration: none; min-height: 50px; }
.menu-list span { font-size: 1.15rem; font-weight: 600; }
.menu-list em { font-style: normal; font-size: .95rem; color: var(--muted); }
.menu-list a:hover span { color: var(--brass); }
@media (min-width: 32rem) {
  .menu-list a { flex-direction: row; align-items: baseline;
                 justify-content: space-between; gap: 1.5rem; }
  .menu-list em { text-align: right; }
}

/* ── form ── */
form { margin: 2.5rem 0 0; max-width: 28rem; }
label { display: block; font-weight: 600; font-size: .98rem; margin-bottom: .4rem; }
input, textarea { width: 100%; padding: .8rem .9rem; font: inherit; background: #fff;
                  border: 1px solid var(--line); border-radius: 3px; color: var(--ink); }
input:focus, textarea:focus { border-color: var(--slate); outline: none; }
button.btn { cursor: pointer; }
.hidden { position: absolute; left: -9999px; }

/* ── footer ── */
footer { background: #101A22; color: var(--muted-l); border-top: 5px solid var(--brass);
         padding: 2.25rem 0 2.75rem; font-size: 1rem; }
.foot { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem; }
.foot p { margin: 0; }
.foot a { color: var(--grout); display: inline-block; padding: .5rem 0; min-height: 44px; }
.foot a:hover { color: var(--brass-l); }
.foot p:last-child { align-self: center; }

@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }
