/* ============================================================
   Sydney Travel Company — styles.css
   Mobile-first. Vanilla CSS. Accent palette drawn from the
   STC logo (coral/orange + magenta) on a warm off-white.
============================================================ */

:root {
  --ink:        #1d2433;
  --ink-soft:   #4a5060;
  --muted:      #7d8294;
  --line:       #e6e2dc;
  --bg:         #faf7f2;
  --bg-alt:     #f2ede5;
  --surface:    #ffffff;

  --coral:      #ef8b3e;
  --coral-deep: #d9742a;
  --pink:       #e84c7b;
  --pink-deep:  #c83766;
  --navy-deep:  #11182a;

  --shadow-sm:  0 1px 2px rgba(20, 24, 40, 0.06), 0 2px 6px rgba(20, 24, 40, 0.04);
  --shadow-md:  0 8px 24px rgba(20, 24, 40, 0.10);
  --shadow-lg:  0 24px 60px rgba(20, 24, 40, 0.18);

  --radius:     14px;
  --radius-sm:  8px;

  --serif:      "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:       "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --maxw:       1180px;
  --pad:        clamp(1.25rem, 4vw, 2.5rem);
}

/* -------- Reset / base -------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'><path d='M2 2 L26 13 L13 15 L15 26 Z' fill='%23EF8B3E' stroke='%231B2467' stroke-width='1.2' stroke-linejoin='round'/></svg>") 2 2, auto; }
input, textarea { cursor: text; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--pink-deep); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 .6em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1rem; font-family: var(--sans); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink); }
p  { margin: 0 0 1em; color: var(--ink-soft); }

em { font-style: italic; }

::selection { background: var(--pink); color: #fff; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

/* Accessibility helpers */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy-deep); color: #fff; padding: .75rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
  border-radius: 4px;
}

/* -------- Eyebrow / shared bits -------- */
.eyebrow {
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--coral-deep);
  font-weight: 600;
  margin: 0 0 1rem;
}
.eyebrow.light { color: #f0b079; }

.lede { font-size: 1.1rem; color: var(--ink-soft); max-width: 620px; }

.section { padding: clamp(4rem, 9vw, 7rem) 0; position: relative; }
#about { padding-top: clamp(8rem, 14vw, 12rem); }
.section-alt { background: var(--bg-alt); }

.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }

/* -------- Header / Nav -------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.75);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(250, 247, 242, 0.92);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.brand { display: inline-flex; align-items: center; transform: translateY(4px); }
.brand-logo { height: 51px; width: auto; }

.nav-menu {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 2rem; align-items: center;
}
.nav-menu a {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
}
.nav-menu a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--pink);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-menu a:hover::after { transform: scaleX(1); }
.nav-menu a.nav-cta {
  color: var(--coral-deep);
  font-weight: 600;
}
.nav-menu a.nav-cta:hover { color: var(--coral); }
.nav-menu a.nav-cta::after { background: var(--coral); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: .5rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  display: block;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------- Buttons -------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .95rem 1.6rem;
  font-size: .95rem;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink) 0%, var(--coral) 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(232, 76, 123, 0.25);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(232, 76, 123, 0.35);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* -------- Hero -------- */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  color: var(--navy-deep);
  overflow: hidden;
  isolation: isolate;
  background: var(--bg);
  padding-top: clamp(6rem, 18vh, 10rem);
  padding-bottom: clamp(8rem, 26vh, 16rem);
}
.hero-image {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  z-index: -2;
  opacity: 0;
  animation: heroFadeIn 1.4s ease-out 0.1s forwards;
  pointer-events: auto;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 28%, rgba(239,139,62,0.12) 0%, rgba(239,139,62,0) 55%),
    radial-gradient(ellipse at 85% 22%, rgba(232,76,123,0.10) 0%, rgba(232,76,123,0) 55%);
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero-image {
    width: auto;
    height: 36vh;
    right: auto;
    /* Position church + tower cluster (≈28% across SVG) near viewport centre */
    left: calc(50vw - 52vh);
  }
  .hero { padding-bottom: 36vh; }
}
@keyframes heroFadeIn {
  to { opacity: 1; }
}
.hero-content {
  padding-top: 6rem;
  padding-bottom: 6rem;
  max-width: 820px;
}
.hero .eyebrow {
  color: var(--coral-deep);
}
.hero-title {
  color: var(--navy-deep);
  margin-bottom: 1.2rem;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(120deg, var(--coral-deep) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(17, 24, 42, 0.78);
  max-width: 600px;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: .8rem;
}
.hero .btn-ghost {
  color: var(--navy-deep);
  border-color: rgba(17, 24, 42, 0.35);
}
.hero .btn-ghost:hover {
  background: rgba(17, 24, 42, 0.06);
  color: var(--navy-deep);
  border-color: var(--navy-deep);
}

.scroll-cue {
  --cue-border: rgba(239, 139, 62, 0.55);
  --cue-dot: rgba(239, 139, 62, 0.75);
  position: absolute;
  bottom: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1.5px solid var(--cue-border);
  border-radius: 14px;
  display: flex; justify-content: center;
  cursor: pointer;
  z-index: 5;
}
.scroll-cue span {
  display: block;
  width: 3px; height: 8px;
  background: var(--cue-dot);
  border-radius: 2px;
  margin-top: 8px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
.scroll-cue-coral  { --cue-border: rgba(239, 139, 62, 0.55); --cue-dot: rgba(239, 139, 62, 0.85); }
.scroll-cue-pink   { --cue-border: rgba(231, 122, 156, 0.60); --cue-dot: rgba(231, 122, 156, 0.90); }
.scroll-cue-yellow { --cue-border: rgba(228, 178, 70, 0.65);  --cue-dot: rgba(228, 178, 70, 0.95); }
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* -------- Grids -------- */
.grid-two {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.grid-three {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* -------- About -------- */
.portrait-wrap {
  position: relative;
  display: block;
  width: 100%;
  max-width: 480px;
}
.portrait-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  padding-right: 18px;
  padding-bottom: 18px;
}
.portrait {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  filter: saturate(1.02);
  position: relative;
  z-index: 1;
  display: block;
}
.portrait-frame::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  right: 0;
  bottom: 0;
  border: 2px solid var(--coral);
  border-radius: var(--radius);
  z-index: 0;
  pointer-events: none;
}
.caption {
  margin-top: 1rem;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.copy .pull {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--ink);
  margin: 1.4rem 0;
  line-height: 1.4;
}
.copy .pull.light { color: #fff; }
.signoff {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  margin-top: 1.5rem;
}

/* -------- Cards (How We Work) -------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card:hover::after { transform: scaleX(1); }
.card-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--coral-deep);
  margin-bottom: .5rem;
}
.card h3 { margin-bottom: .6rem; }
.card p { margin: 0; font-size: .98rem; }

/* -------- Clients -------- */
.clients {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
  text-align: center;
}
.clients-label {
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.clients-list {
  list-style: none; padding: 0; margin: 0 0 2.5rem;
  display: flex; flex-wrap: wrap;
  gap: .6rem 1.6rem;
  justify-content: center;
}
.clients-list li {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
  position: relative;
  padding-right: 1.6rem;
}
.clients-list li:not(:last-child)::after {
  content: "·";
  color: var(--coral);
  position: absolute;
  right: 0;
  top: 0;
}
.closer {
  max-width: 720px; margin: 0 auto;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
}

/* -------- Observation (dark section) -------- */
.observation {
  background: var(--navy-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.observation::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(232,76,123,0.15), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(239,139,62,0.12), transparent 50%);
  pointer-events: none;
}
.observation h2, .observation h3 { color: #fff; }
.observation p { color: rgba(255,255,255,0.78); }
.obs-body {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.obs-copy {
  text-align: left;
}
.obs-copy p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  margin-bottom: 1.4rem;
}
.obs-copy em { color: #f5c8a1; font-style: italic; }

.obs-quote {
  margin: 3rem auto 0;
  padding: 2rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  max-width: 620px;
  position: relative;
}
.obs-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.35;
  color: #fff;
  margin: 0;
  background: linear-gradient(120deg, #ffd0a8 0%, #ffb3cf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* -------- Services -------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.service {
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.service:hover {
  border-color: var(--coral);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.service h3 {
  margin-bottom: .4rem;
  display: flex; align-items: baseline; gap: .5rem;
}
.service h3::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--coral));
  display: inline-block;
  flex-shrink: 0;
}
.service p { margin: 0; font-size: .96rem; }

/* -------- Contact -------- */
.contact-grid { align-items: start; }
.contact-list {
  list-style: none; padding: 0; margin: 2rem 0 0;
  display: grid; gap: 1.25rem;
}
.contact-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  align-items: baseline;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-label {
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.contact-list a { color: var(--ink); border-bottom: 1px solid transparent; }
.contact-list a:hover { color: var(--pink-deep); border-bottom-color: var(--pink-deep); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 1.2rem; }
.field label {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  margin-bottom: .4rem;
  color: var(--ink);
  letter-spacing: .02em;
}
.field input,
.field textarea {
  width: 100%;
  padding: .85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--coral);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(239,139,62,0.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { width: 100%; margin-top: .5rem; }
.form-note {
  margin: 1rem 0 0;
  font-size: .9rem;
  color: var(--coral-deep);
  min-height: 1.2em;
}
.form-note.success { color: #2f8a5e; }
.form-note.error   { color: #b3324c; }

.form-reassure {
  margin: 1rem 0 0;
  font-size: .88rem;
  font-style: italic;
  color: var(--muted);
  text-align: center;
}

/* -------- Process steps -------- */
.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  counter-reset: process;
}
.process-step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.process-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.process-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--pink), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: .25rem;
  line-height: 1;
}
.process-step h3 { margin-bottom: .5rem; }
.process-step p  { margin: 0; font-size: .98rem; }

/* -------- Pricing note -------- */
.pricing-note {
  margin-top: 3rem;
  padding: 2rem clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(135deg, rgba(232,76,123,0.06), rgba(239,139,62,0.06));
  border: 1px solid rgba(239,139,62,0.25);
  border-radius: var(--radius);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-label {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--ink);
  margin: 0 0 .5rem;
}
.pricing-note p:last-child { margin: 0; }

/* -------- FAQ -------- */
.faq-list {
  display: grid;
  gap: .75rem;
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item[open] {
  border-color: var(--coral);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--pink-deep); }
.faq-q { flex: 1; }
.faq-icon {
  width: 14px;
  height: 14px;
  position: relative;
  flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--coral);
  border-radius: 2px;
  transition: transform .25s ease;
}
.faq-icon::before {
  left: 0; right: 0; top: 50%;
  height: 2px;
  transform: translateY(-50%);
}
.faq-icon::after {
  top: 0; bottom: 0; left: 50%;
  width: 2px;
  transform: translateX(-50%);
}
.faq-item[open] .faq-icon::after { transform: translateX(-50%) scaleY(0); }
.faq-body {
  padding: 0 1.5rem 1.5rem;
}
.faq-body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

/* -------- Footer -------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.75);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  font-size: .92rem;
}
.site-footer h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.footer-logo {
  height: 153px;
  width: auto;
  margin-bottom: 1rem;
}
.site-footer p { color: rgba(255,255,255,0.7); margin: 0 0 .4em; }
.site-footer .small { font-size: .82rem; line-height: 1.7; }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: .82rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
}

/* -------- Reveal animations -------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   Breakpoints
============================================================ */

/* Tablet — 640px+ */
@media (min-width: 640px) {
  .grid-three { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

/* Desktop — 900px+ */
@media (min-width: 900px) {
  .grid-two { grid-template-columns: 1fr 1.1fr; }
  .grid-three { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.4fr; }
  .contact-grid { grid-template-columns: 1fr 1.1fr; }
  .process-list { gap: 1.5rem; }
}

/* Large — 1180px+ */
@media (min-width: 1180px) {
  .hero-content { padding-top: 8rem; padding-bottom: 8rem; }
}

/* Mobile nav */
@media (max-width: 800px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(250, 247, 242, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem var(--pad) 1.75rem;
    gap: 0;
    border-bottom: 1px solid var(--line);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .nav-menu.open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .nav-menu li {
    border-bottom: 1px solid var(--line);
  }
  .nav-menu li:last-child { border-bottom: 0; }
  .nav-menu a {
    display: block;
    padding: 1rem 0;
    font-size: 1.05rem;
  }
  .nav-menu a::after { display: none; }
  .nav-menu .nav-cta {
    background: transparent;
    color: var(--coral-deep) !important;
    padding: 1rem 0;
    border-radius: 0;
    font-weight: 500;
  }
  .nav-menu .nav-cta:hover { background: transparent; color: var(--coral) !important; }
}

/* Small phones — iPhone SE / 375px and below */
@media (max-width: 480px) {
  :root {
    --pad: 1.1rem;
  }
  body { font-size: 16px; }

  h1 { font-size: clamp(2rem, 8vw, 2.4rem); line-height: 1.1; }
  h2 { font-size: clamp(1.6rem, 6vw, 2rem); }
  h3 { font-size: 1.2rem; }

  .section { padding: 3.5rem 0; }
  .section-head { margin-bottom: 2rem; }

  .nav-row { min-height: 64px; }
  .brand-logo { height: 44px; }

  .hero {
    min-height: 92vh;
    min-height: 92svh;
  }
  .hero-content {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .hero-title { margin-bottom: .9rem; }
  .hero-sub {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .hero-actions { gap: .6rem; }
  .btn { padding: .8rem 1.3rem; font-size: .9rem; }
  .scroll-cue { display: none; }

  .eyebrow { font-size: .72rem; letter-spacing: .18em; }

  .portrait-wrap { max-width: 100%; }

  .copy .pull { font-size: 1.2rem; margin: 1rem 0; }

  .card,
  .process-step,
  .service { padding: 1.5rem 1.25rem; }
  .card-num { font-size: 1.4rem; }
  .process-num { font-size: 1.9rem; }

  .clients-list {
    gap: .4rem 1rem;
    font-size: .95rem;
  }
  .clients-list li {
    font-size: 1rem;
    padding-right: 1rem;
  }
  .clients-list li:not(:last-child)::after { display: none; }

  .closer { font-size: 1.1rem; }

  .obs-copy p { font-size: .98rem; line-height: 1.7; }
  .obs-quote { margin-top: 2rem; padding-top: 1.5rem; }

  .faq-item summary {
    padding: 1rem 1.1rem;
    font-size: 1.05rem;
    gap: 1rem;
  }
  .faq-body { padding: 0 1.1rem 1.1rem; }

  .contact-list li {
    grid-template-columns: 1fr;
    gap: .25rem;
    padding-bottom: 1rem;
  }
  .contact-list a { word-break: break-word; }

  .contact-form { padding: 1.25rem; }

  .footer-grid { gap: 2rem; }
  .footer-logo { height: 109px; }
}

