/* ===========================
   VIAHGRAPHY — style.css
   Clean · Minimal · Editorial
   =========================== */

:root {
  --white: #ffffff;
  --off-white: #faf7f7;
  --paper: #f4eced;
  --ink: #1f1517;
  --ink-light: #4d3f42;
  --ink-muted: #8d7f82;
  --accent: #2b1f22;
  --gold: #7a1f2b;
  --gold-light: #a8323f;
  --border: #e8dadc;
  --border-dark: #d8c4c7;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;

  --nav-h: 72px;
  --container: 1200px;
  --radius: 4px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- CONTAINER ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- TYPOGRAPHY ---- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
}

.section-title em, h2 em, h1 em {
  font-style: italic;
  color: var(--ink);
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.btn-primary:hover {
  background: transparent;
  color: var(--ink);
}

.btn-ghost {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
}
.btn-ghost:hover { border-color: var(--ink); }

.btn-sm { padding: 10px 24px; font-size: 12px; }
.btn-full { width: 100%; text-align: center; }

.text-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--border-dark);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.text-link:hover { border-color: var(--ink); }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: border-color 0.3s, background 0.3s;
}
.nav.scrolled { border-bottom-color: var(--border); }

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.nav-logo span {
  font-style: italic;
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-light);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--ink);
}
.nav-links a:hover::after, .nav-links a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--off-white);
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.6;
}

.hero-lines {
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 79px,
    var(--border) 79px,
    var(--border) 80px
  );
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 40px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s var(--ease-out) forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 32px;
  max-width: 700px;
}
.hero-title .line {
  display: block;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) forwards;
}
.hero-title .line:nth-child(1) { animation-delay: 0.35s; }
.hero-title .line:nth-child(2) { animation-delay: 0.5s; }
.hero-title .italic { font-style: italic; font-weight: 300; }

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--ink-light);
  max-width: 480px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s 0.65s var(--ease-out) forwards;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s var(--ease-out) forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  opacity: 0;
  animation: fadeIn 1s 1.2s forwards;
}
.hero-scroll-line {
  width: 60px;
  height: 1px;
  background: var(--ink-muted);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: lineSlide 2s 1.5s infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes lineSlide {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ---- INTRO ---- */
.intro {
  padding: 120px 0;
  background: var(--white);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.intro-left { padding-top: 8px; }
.intro-right p {
  font-size: 16px;
  color: var(--ink-light);
  margin-bottom: 20px;
}
.intro-right .text-link { margin-top: 12px; display: inline-block; }

/* ---- SERVICES PREVIEW ---- */
.services-preview {
  padding: 80px 0 120px;
  background: var(--off-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  padding: 48px 40px;
  position: relative;
  transition: box-shadow 0.3s;
}
.service-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.07); z-index: 1; }
.service-card::before {
  content: attr(data-index);
  position: absolute;
  top: 32px; right: 36px;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--border-dark);
  letter-spacing: 0.05em;
}
.service-icon {
  width: 48px; height: 48px;
  color: var(--gold);
  margin-bottom: 28px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: var(--ink-light);
  margin-bottom: 24px;
  line-height: 1.6;
}
.card-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  border-bottom: 1px solid var(--border-dark);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.card-link:hover { color: var(--gold); border-color: var(--gold); }

/* ---- WHY ---- */
.why {
  padding: 120px 0;
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-visual {
  position: relative;
  height: 360px;
}
.why-box {
  position: absolute;
  border-radius: 2px;
}
.why-box--1 {
  width: 70%; height: 70%;
  top: 0; left: 0;
  background: var(--paper);
  border: 1px solid var(--border);
}
.why-box--2 {
  width: 55%; height: 55%;
  bottom: 0; right: 0;
  background: var(--ink);
  opacity: 0.06;
}
.why-number {
  position: absolute;
  bottom: 24px; left: 24px;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  letter-spacing: 0.1em;
}
.why-right .section-title { margin-bottom: 40px; }
.why-list { display: flex; flex-direction: column; gap: 28px; }
.why-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-check {
  width: 28px; height: 28px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-list strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}
.why-list p { font-size: 14px; color: var(--ink-light); margin: 0; }

/* ---- CTA BANNER ---- */
.cta-banner {
  padding: 100px 40px;
  background: var(--ink);
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner h2 em { font-style: italic; color: var(--gold-light); }
.cta-banner p { color: rgba(255,255,255,0.6); font-size: 15px; margin-bottom: 40px; }
.cta-banner .btn-primary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.cta-banner .btn-primary:hover {
  background: transparent;
  color: var(--white);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--ink-muted);
  margin-top: 12px;
  line-height: 1.6;
}
.footer-links h4, .footer-contact h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--ink-light);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--ink); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 12px; color: var(--ink-muted); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--ink);
}
.page-sub {
  font-size: 16px;
  color: var(--ink-light);
  max-width: 560px;
  font-weight: 300;
}

/* ---- SERVICE SECTIONS ---- */
.service-section { padding: 100px 0; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }

.service-detail-left { position: relative; }
.service-number {
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: -20px;
  position: relative;
  z-index: 2;
}
.service-visual {
  position: relative;
  height: 320px;
  border-radius: 2px;
  overflow: hidden;
}
.photo-visual { background: var(--paper); }
.video-visual { background: #f1e4e6; }
.sv-box {
  position: absolute;
  border-radius: 2px;
  transition: transform 0.4s var(--ease-out);
}
.photo-visual .sv-box--a {
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent, transparent 10px,
    rgba(122,31,43,0.05) 10px, rgba(122,31,43,0.05) 11px
  );
}
.photo-visual .sv-box--b {
  bottom: 20px; right: 20px;
  width: 40%; height: 40%;
  background: var(--gold);
  opacity: 0.12;
}
.video-visual .sv-box--a {
  top: 30px; left: 30px;
  width: 60%; height: 60%;
  border: 2px solid var(--gold);
  opacity: 0.25;
}
.video-visual .sv-box--b {
  bottom: 0; right: 0;
  width: 50%; height: 50%;
  background: var(--ink);
  opacity: 0.05;
}
.sv-label {
  position: absolute;
  bottom: 28px; left: 28px;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ink-muted);
}

.service-detail-right h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 16px;
}
.service-lead {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink-light);
  margin-bottom: 20px;
  font-weight: 300;
}
.service-detail-right > p {
  font-size: 15px;
  color: var(--ink-light);
  margin-bottom: 32px;
}
.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 40px;
}
.service-list li {
  font-size: 14px;
  color: var(--ink-light);
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
}

.section-divider {
  height: 1px;
  background: var(--border);
  margin: 0 40px;
}

/* ---- PACKAGES ---- */
.packages-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.packages-header h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 16px;
}
.packages-header p { font-size: 15px; color: var(--ink-light); }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.package-card {
  background: var(--off-white);
  padding: 48px 36px;
  position: relative;
  border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.package-card:hover { border-color: var(--border-dark); box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.package-card.featured {
  background: var(--ink);
  border-color: var(--ink);
}
.package-card.featured * { color: var(--white) !important; }
.package-card.featured .btn-primary {
  background: var(--white);
  color: var(--ink) !important;
  border-color: var(--white);
}
.package-card.featured .btn-primary:hover {
  background: transparent;
  color: var(--white) !important;
}
.package-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.package-card.featured .package-tag { color: var(--gold-light); }
.package-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 16px;
}
.package-card p { font-size: 14px; color: var(--ink-light); margin-bottom: 24px; line-height: 1.6; }
.package-card ul { margin-bottom: 36px; display: flex; flex-direction: column; gap: 8px; }
.package-card li {
  font-size: 13px;
  color: var(--ink-light);
  padding-left: 14px;
  position: relative;
}
.package-card li::before { content: '·'; position: absolute; left: 0; }

.packages-note {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--ink-muted);
}
.packages-note a { color: var(--ink); border-bottom: 1px solid var(--border-dark); }

/* ---- CONTACT ---- */
.contact-section { padding: 80px 0 100px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.2;
}
.contact-info > p { font-size: 15px; color: var(--ink-light); margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.contact-detail-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 36px; height: 36px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-icon svg { width: 16px; height: 16px; }
.contact-detail-item strong { display: block; font-size: 13px; font-weight: 500; margin-bottom: 2px; }
.contact-detail-item p { font-size: 14px; color: var(--ink-light); margin: 0; }
.contact-detail-item a { color: var(--ink-light); }
.contact-detail-item a:hover { color: var(--ink); }

.response-note {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-muted);
}
.response-dot {
  width: 8px; height: 8px;
  background: #5cb85c;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(92,184,92,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(92,184,92,0); }
}

/* FORM */
.contact-form-wrap {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 48px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
}
.req { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ink);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-size: 12px;
  color: var(--ink-muted);
  text-align: center;
  margin-top: 8px;
}
.form-success {
  text-align: center;
  padding: 48px 20px;
}
.success-icon {
  width: 60px; height: 60px;
  background: var(--ink);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin: 0 auto 24px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 12px;
}
.form-success p { color: var(--ink-light); font-size: 15px; }

/* ---- SERVICE AREA ---- */
.service-area {
  padding: 80px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}
.service-area h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  margin-bottom: 36px;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.area-tags span {
  padding: 8px 20px;
  border: 1px solid var(--border-dark);
  border-radius: 40px;
  font-size: 13px;
  color: var(--ink-light);
  background: var(--white);
  transition: border-color 0.2s, color 0.2s;
}
.area-tags span:hover { border-color: var(--ink); color: var(--ink); }
.area-note { font-size: 14px; color: var(--ink-muted); margin-top: 8px; }

/* ---- SCROLL ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---- MOBILE NAV ---- */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links li { padding: 4px 0; }
  .nav-links a { padding: 12px 24px; display: block; }
  .nav-links a::after { display: none; }

  .container { padding: 0 20px; }

  .hero-content { padding: 60px 20px; }
  .hero-lines { display: none; }
  .hero-scroll { left: 20px; bottom: 32px; }

  .intro-grid,
  .service-detail-grid,
  .service-detail-grid.reverse,
  .why-grid,
  .contact-grid { grid-template-columns: 1fr; direction: ltr; gap: 40px; }

  .services-grid,
  .packages-grid { grid-template-columns: 1fr; gap: 2px; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .cta-banner { padding: 60px 20px; }

  .service-list { grid-template-columns: 1fr; }

  .section-divider { margin: 0 20px; }

  .contact-form-wrap { padding: 28px 20px; }

  .why-visual { height: 220px; }
}
