/* ── Reset & Base ────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --champagne: #cba96a;
  --walnut: #6e5239;
  --walnut-deep: #4d3826;
  --blush: #c8a7a0;
  --blush-light: #e0c8c4;
  --blush-lightest: #faf3f2;
  --neutral-warm: #f1eae5;
  --ceramic: #e8dfd8;
  --text: rgba(0, 0, 0, 0.87);
  --text-soft: rgba(0, 0, 0, 0.58);
  --text-faint: rgba(0, 0, 0, 0.38);
  --shadow-card: 0 0 0.5px rgba(0, 0, 0, 0.14), 0 1px 1px rgba(0, 0, 0, 0.24);
  --shadow-nav:
    0 1px 3px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.06),
    0 0 2px rgba(0, 0, 0, 0.07);
  --shadow-tile: 0 2px 8px rgba(0, 0, 0, 0.1), 0 0 2px rgba(0, 0, 0, 0.08);
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  background: var(--neutral-warm);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

a,
button,
input,
textarea,
select {
  font-family: inherit;
}

/* ── Page load animation ─────────────────────────────────────── */
body {
  padding-top: 68px;
  animation: pageIn 0.28s ease;
}
@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Nav ─────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #fff;
  box-shadow: var(--shadow-nav);
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  gap: 32px;
}
.nav-links {
  display: flex;
  gap: 20px;
  flex: 1;
  flex-wrap: wrap;
}
.nav-link {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
  text-decoration: none;
  letter-spacing: -0.01em;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: all 0.2s ease;
}
.nav-link:hover {
  color: var(--champagne);
}
.nav-link.active {
  color: var(--champagne);
  font-weight: 600;
  border-bottom-color: var(--champagne);
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  line-height: 1.2;
  white-space: nowrap;
  transition: all 0.2s ease;
  text-decoration: none;
  padding: 8px 20px;
  font-size: 14px;
}
.btn:active {
  transform: scale(0.95);
}
.btn-sm {
  padding: 6px 16px;
  font-size: 13px;
}
.btn-lg {
  padding: 13px 30px;
  font-size: 15px;
}
.btn-primary {
  background: var(--champagne);
  color: #fff;
  border-color: var(--champagne);
}
.btn-outlined {
  background: transparent;
  color: var(--champagne);
  border-color: var(--champagne);
}
.btn-dark {
  background: var(--walnut);
  color: #fff;
  border-color: var(--walnut);
}
.btn-inverted {
  background: #fff;
  color: var(--walnut);
  border-color: #fff;
}
.btn-on-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

/* ── Logo ────────────────────────────────────────────────────── */
.logo {
  cursor: pointer;
  flex-shrink: 0;
}

/* ── Card ────────────────────────────────────────────────────── */
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  padding: 28px;
}

/* ── Image Placeholder ───────────────────────────────────────── */
.img-ph {
  background: linear-gradient(135deg, var(--ceramic) 0%, #ddd5cc 100%);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 220px;
}
.img-ph img {
  width: 100%;
  border-radius: 5px;
}
.img-ph-tall {
  min-height: fit-content;
}
.img-ph-med {
  min-height: 340px;
}
.img-ph-sm {
  min-height: 130px;
}
.img-ph-xs {
  min-height: 120px;
}
.img-ph-rect {
  min-height: 280px;
}
.img-ph-xs img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}
.img-ph span {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.28);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Section Label ───────────────────────────────────────────── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 12px;
}

/* ── Checklist ───────────────────────────────────────────────── */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
}
.checklist li::before {
  content: "✦";
  color: var(--champagne);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Typography helpers ──────────────────────────────────────── */
.display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
}
.script-font {
  font-family: "Kalam", cursive;
}

/* ── Layout helpers ──────────────────────────────────────────── */
.sp {
  padding: 72px 60px;
}
.sp-hero {
  padding: 100px 60px 72px;
}
.sp-full {
  padding: 64px 60px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col-60 {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
}
.two-col-hero {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 48px;
  align-items: center;
}
.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.two-col-sm {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.two-col-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.max-w {
  max-width: 1200px;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
}

.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-row-14 {
  display: flex;
  gap: 14px;
}

.text-center {
  text-align: center;
}

/* ── Background helpers ──────────────────────────────────────── */
.bg-white {
  background: #fff;
}
.bg-warm {
  background: var(--neutral-warm);
}
.bg-ceramic {
  background: var(--ceramic);
}

/* ── Spacing helpers ─────────────────────────────────────────── */
.mb-12 {
  margin-bottom: 12px;
}
.mb-14 {
  margin-bottom: 14px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-18 {
  margin-bottom: 18px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-22 {
  margin-bottom: 22px;
}
.mb-24 {
  margin-bottom: 24px;
}
.mb-28 {
  margin-bottom: 28px;
}
.mb-32 {
  margin-bottom: 32px;
}
.mb-36 {
  margin-bottom: 36px;
}
.mb-44 {
  margin-bottom: 44px;
}
.mb-52 {
  margin-bottom: 52px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-28 {
  margin-top: 28px;
}

/* ── Section headings ────────────────────────────────────────── */
.sh1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 62px;
  color: var(--walnut);
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 22px;
}
.sh1 em {
  font-style: italic;
  color: var(--champagne);
}

.sh2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 38px;
  color: var(--walnut);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.sh2-sm {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 34px;
  color: var(--walnut);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 16px;
}
.sh2-36 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 36px;
  color: var(--walnut);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.sh1-page {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 54px;
  color: var(--walnut);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.lead {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}
.body-text {
  font-size: 15.5px;
  color: var(--text-soft);
  line-height: 1.8;
}
.body-text-sm {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ── Home Hero ───────────────────────────────────────────────── */
.home-hero {
  background: var(--neutral-warm);
  padding: 108px 60px 80px;
  min-height: 580px;
}
.home-hero .script-font {
  font-size: 19px;
  color: var(--champagne);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

/* ── Services Cards ──────────────────────────────────────────── */
.service-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  cursor: pointer;
}
.service-card .card-img {
  border-radius: 12px 12px 0 0;
  min-height: 160px;
}

.card-img,
.card-img img {
  height: 160px;
  object-fit: cover;
}
.service-card .card-body {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
}
.service-card .card-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--champagne);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  margin-top: 14px;
}
.service-card .card-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--walnut);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 8px;
}
.service-card .card-sub {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

/* ── Feature Band (dark walnut) ──────────────────────────────── */
.feature-band {
  background: var(--walnut);
  padding: 72px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.feature-band h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 40px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.feature-band p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* ── Contact Strip ───────────────────────────────────────────── */
.contact-strip {
  background: var(--blush-lightest);
  border-top: 1px solid var(--blush-light);
  padding: 56px 60px;
  text-align: center;
}
.contact-strip .script-label {
  font-family: "Kalam", cursive;
  font-size: 18px;
  color: var(--blush);
  margin-bottom: 12px;
}
.contact-strip h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 38px;
  font-weight: 400;
  color: var(--walnut);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.contact-strip p {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 28px;
}

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--walnut-deep);
  padding: 56px 60px 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  max-width: 1200px;
}
.footer-tagline {
  margin-top: 16px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 220px;
}
.footer-col-head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}
.footer-link {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.footer-link:hover {
  color: #fff;
}
.footer-contact-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* ── Page Hero ───────────────────────────────────────────────── */
.page-hero {
  background: var(--neutral-warm);
  padding: 100px 60px 72px;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 48px;
  align-items: center;
  min-height: 520px;
}
.page-hero p {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 32px;
}

/* ── Full-width section ──────────────────────────────────────── */
.full-sec {
  max-width: 800px;
}

/* ── Info card grid ──────────────────────────────────────────── */
.info-card {
  padding: 20px;
}
.info-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--walnut);
  margin-bottom: 6px;
}
.info-card-body {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ── How We Work steps ───────────────────────────────────────── */
.step-num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 36px;
  color: var(--champagne);
  font-weight: 400;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.step-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--walnut);
  margin-bottom: 10px;
}
.step-body {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ── Pakistani function cards ────────────────────────────────── */
.func-card {
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  padding: 32px;
  text-align: center;
}
.func-card-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  color: var(--walnut);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.func-card-body {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ── Contact page ────────────────────────────────────────────── */
.contact-page {
  background: var(--neutral-warm);
  min-height: 100vh;
}
.contact-grid {
  padding: 72px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.contact-page h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--walnut);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 18px;
}
.contact-page p.lead-sm {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 36px;
}
.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-icon {
  font-size: 20px;
}
.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 4px;
}
.contact-info-val {
  font-size: 15px;
  color: var(--text);
}
.form-card {
  padding: 36px;
}
.form-card-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--walnut);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
}
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  display: block;
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--ceramic);
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus {
  border-color: var(--champagne);
}
textarea.form-input {
  min-height: 110px;
  resize: vertical;
}

/* ── Thank you state ─────────────────────────────────────────── */
.thank-you {
  background: var(--neutral-warm);
  min-height: calc(100vh - 68px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px;
}
.thank-you.show {
  display: flex;
}
.thank-you-inner {
  text-align: center;
  max-width: 480px;
}
.thank-you-inner .ty-script {
  font-family: "Kalam", cursive;
  font-size: 22px;
  color: var(--champagne);
  margin-bottom: 14px;
}
.thank-you-inner h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 40px;
  color: var(--walnut);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.thank-you-inner p {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ── Tweaks panel ────────────────────────────────────────────── */
#tweaks-panel {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: #fff;
  border-radius: 14px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(0, 0, 0, 0.06);
  padding: 24px;
  width: 280px;
}
#tweaks-panel.open {
  display: block;
}
.tweak-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 18px;
}
.tweak-row {
  margin-bottom: 16px;
}
.tweak-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 6px;
  display: block;
}
.tweak-row select,
.tweak-row input[type="color"] {
  width: 100%;
  padding: 7px 10px;
  border: 1px solid var(--ceramic);
  border-radius: 6px;
  font-size: 13px;
  background: #faf9f7;
  color: var(--text);
}
.tweak-row input[type="color"] {
  height: 36px;
  padding: 2px 6px;
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

/* ── Hamburger toggle — hidden on desktop ────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--walnut);
  border-radius: 2px;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile CTA link inside dropdown — hidden on desktop */
.nav-link-mobile-cta {
  display: none;
}

/* ── Large tablet ≤ 1024px ───────────────────────────────────── */
@media (max-width: 1024px) {
  .four-col {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

/* ── Tablet ≤ 900px ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .sp {
    padding: 56px 40px;
  }
  .sp-hero {
    padding: 80px 40px 56px;
  }
  .sp-full {
    padding: 48px 40px;
  }

  .home-hero {
    padding: 80px 40px 56px;
  }
  .page-hero {
    padding: 72px 40px 56px;
    gap: 36px;
    min-height: auto;
  }
  .feature-band {
    padding: 56px 40px;
    gap: 36px;
  }
  .contact-strip {
    padding: 48px 40px;
  }
  .site-footer {
    padding: 48px 40px 28px;
  }
  .contact-grid {
    padding: 56px 40px;
    gap: 48px;
  }

  .sh1 {
    font-size: 48px;
  }
  .sh1-page {
    font-size: 42px;
  }
  .sh2 {
    font-size: 32px;
  }
  .sh2-sm {
    font-size: 28px;
  }
  .sh2-36 {
    font-size: 30px;
  }
  .contact-page h1 {
    font-size: 40px;
  }
  .lead {
    font-size: 16px;
  }

  .three-col {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* ── Mobile nav ≤ 768px ──────────────────────────────────────── */
@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }
  #nav {
    height: 60px;
    padding: 0 20px;
    gap: 0;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 8px 20px 20px;
    gap: 0;
    z-index: 199;
    border-top: 1px solid var(--ceramic);
  }
  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: 13px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--ceramic);
    border-radius: 0;
  }

  .nav-link-mobile-cta {
    display: block;
    margin-top: 12px;
    padding: 12px 20px;
    background: var(--walnut);
    color: #fff !important;
    border-radius: 50px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    border-bottom: none;
    letter-spacing: -0.01em;
    text-decoration: none;
  }

  #nav > .btn {
    display: none;
  }
}

/* ── Mobile ≤ 540px ──────────────────────────────────────────── */
@media (max-width: 540px) {
  .sp {
    padding: 40px 20px;
  }
  .sp-hero {
    padding: 56px 20px 40px;
  }
  .sp-full {
    padding: 36px 20px;
  }

  .home-hero {
    padding: 56px 20px 40px;
    min-height: auto;
  }
  .page-hero {
    padding: 48px 20px 40px;
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .two-col-60 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .two-col-hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .two-col-sm {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .four-col {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .three-col {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature-band {
    padding: 40px 20px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-strip {
    padding: 40px 20px;
  }
  .contact-strip h2 {
    font-size: 26px;
  }
  .contact-strip p {
    font-size: 15px;
  }

  .site-footer {
    padding: 36px 20px 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .contact-grid {
    padding: 40px 20px;
    gap: 32px;
    grid-template-columns: 1fr;
  }
  .contact-page h1 {
    font-size: 32px;
  }

  .sh1 {
    font-size: 34px;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .sh1-page {
    font-size: 30px;
    line-height: 1.18;
  }
  .sh2 {
    font-size: 24px;
  }
  .sh2-sm {
    font-size: 22px;
  }
  .sh2-36 {
    font-size: 24px;
  }

  .lead {
    font-size: 15px;
    max-width: 100%;
    margin-bottom: 24px;
  }
  .btn-lg {
    padding: 11px 22px;
    font-size: 14px;
  }
  .btn-row,
  .btn-row-14 {
    gap: 10px;
  }

  .img-ph-tall {
    min-height: 240px;
  }
  .img-ph-med {
    min-height: 200px;
  }
  .img-ph-rect {
    min-height: 180px;
  }

  .step-num {
    font-size: 28px;
  }
  .func-card {
    padding: 24px 20px;
  }
  .func-card-title {
    font-size: 26px;
  }
}

/* ── Accessibility helpers ────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 10px 20px;
  background: var(--walnut);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 0 0 6px 6px;
  text-decoration: none;
  transition: top 0.15s;
}
.skip-link:focus {
  top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── sh1-page italic em ──────────────────────────────────── */
.sh1-page em {
  font-style: italic;
  color: var(--champagne);
}

/* ── About page value cards ──────────────────────────────── */
.about-value-card {
  padding: 28px;
  text-align: center;
}
.about-value-icon {
  font-size: 22px;
  color: var(--champagne);
  margin-bottom: 14px;
}
.about-value-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--walnut);
  margin-bottom: 8px;
}
.about-value-body {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ── Testimonial cards ───────────────────────────────────── */
.testimonial-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-stars {
  color: var(--champagne);
  font-size: 15px;
  letter-spacing: 2px;
}
.testimonial-quote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  font-style: italic;
  color: var(--walnut);
  line-height: 1.65;
  flex: 1;
}
.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.testimonial-event {
  font-size: 11px;
  font-weight: 700;
  color: var(--champagne);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ── Portfolio grid ──────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-tile);
  aspect-ratio: 4 / 3;
  background: var(--ceramic);
}
.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.portfolio-card:hover img {
  transform: scale(1.06);
}
.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(78, 56, 38, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.portfolio-card:hover .portfolio-card-overlay {
  background: rgba(78, 56, 38, 0.45);
}
.portfolio-card-overlay svg {
  opacity: 0;
  transition: opacity 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.portfolio-card:hover .portfolio-card-overlay svg {
  opacity: 1;
}

/* ── Lightbox ────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open {
  display: flex;
}
.lightbox-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 88vh;
}
.lightbox-img {
  max-width: 88vw;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  box-shadow: 0 12px 60px rgba(0, 0, 0, 0.6);
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 9001;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  line-height: 1;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.24);
}
.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9001;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-prev {
  left: 20px;
}
.lightbox-next {
  right: 20px;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.24);
}
.lightbox-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9001;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ── Portfolio responsive ────────────────────────────────── */
@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
@media (max-width: 540px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .lightbox-prev {
    left: 8px;
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
  .lightbox-next {
    right: 8px;
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}
