/* ===========================================================
   NAGOMI — なごみ内装
   Light-gray monochrome editorial corporate site
   =========================================================== */

:root {
  /* Palette — light-gray monochrome with one quiet accent */
  --paper:    #F4F2EE;   /* off-white background */
  --paper-2:  #ECEAE5;   /* card / panel */
  --line:     #D7D4CD;   /* hairline divider */
  --mute:     #A8A49C;   /* muted text */
  --ink-2:    #56544F;   /* secondary ink */
  --ink:      #2A2926;   /* charcoal — primary */
  --accent:   #6B6357;   /* single accent — warm taupe */

  /* Type */
  --serif: "Cormorant Garamond", "Shippori Mincho", "Noto Serif JP", serif;
  --sans:  "Manrope", "Zen Kaku Gothic New", "Noto Sans JP", system-ui, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  /* Layout */
  --pad-x: clamp(20px, 6vw, 80px);
  --maxw: 1280px;
  --rule: 1px solid var(--line);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;            /* hard guarantee no horizontal scroll */
}

img, svg { display: block; max-width: 100%; }

a {
  color: inherit;
  text-decoration: none;
}

button { font: inherit; cursor: pointer; }

/* ---------- Reusable ---------- */

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}

.rule {
  height: 1px;
  background: var(--line);
  border: 0;
  width: 100%;
  margin: 0;
}

.serif {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.shell {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #F4F2EE;
  border-bottom: 1px solid var(--line);
  border-bottom: var(--rule);
}

.site-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0.02em;
  line-height: 1;
}
.brand-en {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--mute);
  text-transform: uppercase;
}

.nav {
  display: none;
}

.nav a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-family: var(--mono);
  padding: 4px 0;
  position: relative;
  transition: color 0.2s;
}
.nav a:hover { color: var(--ink); }

.cta-mini {
  display: none;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 16px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--mono);
  transition: background 0.2s, color 0.2s;
}
.cta-mini:hover { background: var(--ink); color: var(--paper); }

/* Hamburger */
.hamburger {
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-right: -10px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  position: absolute;
  transition: transform 0.3s, opacity 0.2s;
}
.hamburger span:nth-child(1) { transform: translateY(-5px); }
.hamburger span:nth-child(2) { transform: translateY(0); }
.hamburger span:nth-child(3) { transform: translateY(5px); }

body.menu-open .hamburger span:nth-child(1) { transform: translateY(0) rotate(45deg); }
body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
body.menu-open .hamburger span:nth-child(3) { transform: translateY(0) rotate(-45deg); }

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--paper);
  z-index: 40;
  transform: translateY(-110%);
  transition: transform 0.45s cubic-bezier(.7,.0,.2,1);
  padding: 40px var(--pad-x) 60px;
  display: flex;
  flex-direction: column;
  border-bottom: var(--rule);
}
body.menu-open .mobile-menu { transform: translateY(0); }

.mobile-menu .eyebrow {
  margin-bottom: 28px;
}
.mobile-menu ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.mobile-menu li {
  border-top: var(--rule);
}
.mobile-menu li:last-child { border-bottom: var(--rule); }
.mobile-menu a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 22px 0;
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 0.02em;
}
.mobile-menu a .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--mute);
}
.mobile-menu .mm-foot {
  margin-top: auto;
  padding-top: 36px;
}
.mobile-menu .mm-phone {
  font-family: var(--serif);
  font-size: 24px;
  display: block;
}
.mobile-menu .mm-note {
  font-size: 12px;
  color: var(--mute);
  margin-top: 6px;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding-top: clamp(40px, 9vw, 80px);
  padding-bottom: clamp(60px, 10vw, 100px);
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: clamp(28px, 5vw, 56px);
  gap: 16px;
}
.hero-top .meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--mute);
  text-transform: uppercase;
  text-align: right;
  line-height: 1.8;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 9.5vw, 6.5rem);
  line-height: 1.08;
  letter-spacing: 0.005em;
  margin: 0;
  color: var(--ink);
}
.hero h1 .light {
  font-style: italic;
  color: var(--ink-2);
  font-weight: 300;
}
.hero h1 .br { display: block; }

.hero-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 6vw, 64px);
  margin-top: clamp(40px, 7vw, 72px);
  align-items: start;
}

.hero-lead {
  max-width: 520px;
  font-size: clamp(14px, 3.6vw, 16px);
  color: var(--ink-2);
  line-height: 1.95;
}
.hero-lead .first {
  font-family: var(--serif);
  font-size: clamp(18px, 4.4vw, 22px);
  color: var(--ink);
  line-height: 1.7;
  display: block;
  margin-bottom: 14px;
}

.hero-img {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(140deg, #DAD6CE 0%, #C9C5BD 55%, #B8B4AC 100%);
  overflow: hidden;
}
.hero-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 70% 20%, rgba(255,255,255,0.35), transparent 60%),
    radial-gradient(120% 80% at 20% 90%, rgba(0,0,0,0.10), transparent 60%);
}
.hero-img .ph-tag {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(42,41,38,0.6);
  text-transform: uppercase;
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: clamp(40px, 6vw, 72px);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--mute);
  text-transform: uppercase;
}
.hero-scroll .line {
  width: 60px;
  height: 1px;
  background: var(--ink);
  opacity: 0.4;
}

/* ============================================================
   Section frame
   ============================================================ */
section.block {
  padding-top: clamp(60px, 10vw, 130px);
  padding-bottom: clamp(60px, 10vw, 130px);
  border-top: var(--rule);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: clamp(36px, 6vw, 64px);
}
.section-head .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--accent);
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 6.5vw, 3.6rem);
  line-height: 1.12;
  margin: 0;
  letter-spacing: 0.005em;
}
.section-head .sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--mute);
  text-transform: uppercase;
}

/* ============================================================
   About
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 6vw, 80px);
}
.about-copy p {
  margin: 0 0 1.2em;
  color: var(--ink-2);
  font-size: clamp(14px, 3.6vw, 16px);
  line-height: 1.95;
  max-width: 56ch;
}
.about-copy p.lead-line {
  font-family: var(--serif);
  font-size: clamp(20px, 5vw, 28px);
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 1em;
}

.about-meta {
  border-top: var(--rule);
  padding-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
}
.about-meta dt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--mute);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.about-meta dd {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(17px, 4.2vw, 20px);
}

/* ============================================================
   Services
   ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: var(--rule);
}
.svc {
  border-bottom: var(--rule);
  padding: clamp(28px, 5vw, 40px) 0;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 8px 20px;
  align-items: start;
  position: relative;
  transition: padding-left 0.4s;
}
.svc:hover { /* desktop hover lift */
  padding-left: 8px;
}
.svc .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
  padding-top: 6px;
}
.svc h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(20px, 5vw, 30px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.005em;
}
.svc p {
  margin: 0;
  color: var(--ink-2);
  font-size: clamp(13px, 3.4vw, 15px);
  line-height: 1.85;
  max-width: 48ch;
}
.svc .en {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--mute);
  text-transform: uppercase;
  grid-column: 2;
  margin-bottom: 6px;
}

/* ============================================================
   Strengths
   ============================================================ */
.strengths-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: var(--rule);
}
.strength {
  border-bottom: var(--rule);
  padding: clamp(28px, 5vw, 44px) 0;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 14px 20px;
}
.strength .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(32px, 7vw, 48px);
  color: var(--accent);
  line-height: 1;
  padding-top: 4px;
}
.strength h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 5.4vw, 30px);
  margin: 0 0 10px;
  line-height: 1.25;
}
.strength p {
  margin: 0;
  color: var(--ink-2);
  font-size: clamp(13px, 3.4vw, 15px);
  line-height: 1.85;
  max-width: 50ch;
}

/* ============================================================
   Works
   ============================================================ */
.works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 48px);
}
.work {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.work-img {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}
.work-img.a { background: linear-gradient(150deg, #E2DED6 0%, #CAC6BE 100%); }
.work-img.b { background: linear-gradient(150deg, #D9D5CC 0%, #B9B5AC 100%); }
.work-img.c { background: linear-gradient(150deg, #CBC7BF 0%, #9F9B92 100%); }
.work-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(100% 80% at 80% 15%, rgba(255,255,255,0.32), transparent 55%),
    radial-gradient(100% 80% at 15% 90%, rgba(0,0,0,0.10), transparent 55%);
}
.work-img .ph-tag {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(42,41,38,0.55);
  text-transform: uppercase;
  z-index: 2;
}
.work-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: var(--rule);
  padding-bottom: 6px;
}
.work-meta .num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--accent);
}
.work-meta .cat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--mute);
  text-transform: uppercase;
}
.work h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 5vw, 26px);
  margin: 0;
  line-height: 1.35;
  letter-spacing: 0.005em;
}

/* ============================================================
   Contact
   ============================================================ */
.contact {
  background: var(--paper-2);
  border-top: var(--rule);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 56px);
}
.contact-lead {
  font-family: var(--serif);
  font-size: clamp(26px, 7vw, 48px);
  line-height: 1.2;
  margin: 0 0 18px;
  font-weight: 400;
}
.contact-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--ink);
  padding: 8px 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.contact-note .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.contact-desc {
  color: var(--ink-2);
  font-size: clamp(14px, 3.6vw, 15px);
  line-height: 1.9;
  max-width: 50ch;
}

.contact-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 8px;
}
.opt {
  border: 1px solid var(--ink);
  background: var(--paper);
  padding: clamp(22px, 4vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.25s, color 0.25s;
}
.opt .opt-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--mute);
  text-transform: uppercase;
}
.opt .opt-main {
  font-family: var(--serif);
  font-size: clamp(26px, 6vw, 38px);
  line-height: 1.2;
}
.opt .opt-sub {
  font-size: 12px;
  color: var(--ink-2);
}
.opt.tel:hover, .opt.tel:focus-visible {
  background: var(--ink);
  color: var(--paper);
}
.opt.tel:hover .opt-eyebrow,
.opt.tel:hover .opt-sub { color: rgba(244,242,238,0.7); }

.opt.form {
  cursor: pointer;
  text-align: left;
  width: 100%;
  font: inherit;
  color: var(--ink);
}
.opt.form:hover {
  background: var(--ink);
  color: var(--paper);
}
.opt.form:hover .opt-eyebrow,
.opt.form:hover .opt-sub { color: rgba(244,242,238,0.7); }
.opt .arrow {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.opt .arrow::after {
  content: "→";
  transition: transform 0.25s;
}
.opt:hover .arrow::after { transform: translateX(6px); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(28px, 4vw, 40px);
}
.site-footer .shell { color: var(--paper); }
.foot-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 64px);
  padding-bottom: clamp(40px, 6vw, 64px);
  border-bottom: 1px solid rgba(244,242,238,0.16);
}
.foot-brand .brand-mark {
  color: var(--paper);
  font-size: clamp(40px, 10vw, 80px);
  line-height: 1;
}
.foot-brand .brand-en {
  color: rgba(244,242,238,0.5);
  margin-top: 12px;
  display: block;
  font-size: 11px;
}
.foot-brand p {
  margin-top: 24px;
  max-width: 40ch;
  color: rgba(244,242,238,0.7);
  font-size: 13px;
  line-height: 1.85;
}

.foot-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 18px;
}
.foot-info dt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(244,242,238,0.45);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.foot-info dd {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(15px, 3.8vw, 18px);
  line-height: 1.5;
  color: var(--paper);
}

.foot-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(244,242,238,0.45);
  text-transform: uppercase;
}

/* ============================================================
   Modal — contact form
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,19,17,0.55);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}
body.modal-open .modal-overlay { display: flex; }
body.modal-open { overflow: hidden; }

.modal {
  background: var(--paper);
  width: 100%;
  max-width: 640px;
  padding: 28px var(--pad-x) 36px;
  position: relative;
  max-height: 92vh;
  overflow-y: auto;
  border-top: 3px solid var(--ink);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: 1px solid var(--line);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
}
.modal-close:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.modal h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 5.5vw, 32px);
  margin: 8px 0 6px;
  line-height: 1.25;
}
.modal .sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--mute);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-row label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--mute);
  text-transform: uppercase;
}
.form-row input,
.form-row textarea,
.form-row select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--ink);
}
.form-row textarea {
  resize: vertical;
  min-height: 90px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-2);
  padding: 7px 12px;
  font-size: 12px;
  font-family: var(--sans);
  transition: all 0.2s;
}
.chip.on {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.submit-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.submit {
  background: var(--ink);
  color: var(--paper);
  border: 0;
  padding: 16px 22px;
  font-family: var(--mono);
  letter-spacing: 0.18em;
  font-size: 12px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.submit::after { content: "→"; }
.submit:hover { background: var(--accent); }
.form-note {
  font-size: 11px;
  color: var(--mute);
  line-height: 1.7;
}

.form-success {
  text-align: center;
  padding: 30px 0;
}
.form-success h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  margin: 12px 0 8px;
}
.form-success p {
  color: var(--ink-2);
  font-size: 14px;
  margin: 0;
}

/* ============================================================
   Desktop ≥ 768
   ============================================================ */
@media (min-width: 768px) {
  .nav { display: flex; gap: 28px; }
  .cta-mini { display: inline-flex; align-items: center; }
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }

  .hero-body {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
  }

  .section-head {
    grid-template-columns: 1.2fr 2fr;
    gap: 40px;
    align-items: end;
  }
  .section-head .num { grid-row: 1; }
  .section-head h2 { grid-row: 2; grid-column: 1 / -1; }
  .section-head .sub { grid-row: 1; grid-column: 2; justify-self: end; }

  .about-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
  }
  .about-meta {
    grid-template-columns: 1fr 1fr;
  }

  .svc-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(28px, 4vw, 64px);
    border-top: var(--rule);
  }
  .svc:nth-child(odd)  { border-right: var(--rule); padding-right: clamp(20px, 3vw, 40px); }
  .svc:nth-child(even) { padding-left: clamp(20px, 3vw, 40px); }

  .strengths-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(40px, 6vw, 96px);
  }
  .strength:nth-child(odd)  { border-right: var(--rule); padding-right: clamp(20px, 3vw, 40px); }
  .strength:nth-child(even) { padding-left: clamp(20px, 3vw, 40px); }

  .works-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: clamp(24px, 3vw, 40px);
  }

  .contact-inner { grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 96px); }
  .contact-options { grid-template-columns: 1fr; }

  .foot-top {
    grid-template-columns: 1.2fr 1.8fr;
    gap: 64px;
  }
  .foot-info { grid-template-columns: 1fr 1fr 1fr; }

  .modal-overlay { align-items: center; padding: 40px 24px; }
  .modal { max-width: 580px; padding: 36px 40px 40px; border-top: 0; }
}

@media (min-width: 1100px) {
  .svc-grid { grid-template-columns: 1fr 1fr 1fr; }
  .svc:nth-child(n) { border-right: var(--rule); padding-right: clamp(20px, 2vw, 40px); padding-left: 0; }
  .svc:nth-child(3n) { border-right: 0; padding-right: 0; }
  .svc:nth-child(3n+2) { padding-left: clamp(20px, 2vw, 40px); }
  .svc:nth-child(3n)   { padding-left: clamp(20px, 2vw, 40px); }
}

/* desktop: fit hero within one screen */
@media (min-width: 960px){
  .hero{ padding-top: clamp(22px,3vw,46px); padding-bottom: clamp(26px,3.5vw,50px); }
  .hero-top{ margin-bottom: clamp(14px,2.2vw,26px); }
  .hero h1{ font-size: clamp(2.2rem,5vw,4.2rem); }
  .hero-body{ margin-top: clamp(18px,2.6vw,34px); }
  .hero-img{ aspect-ratio: 5 / 4; }
  .hero-scroll{ margin-top: clamp(18px,2.4vw,30px); }
}
