*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --white:       #FFFFFF;
  --off-white:   #F7F5F1;
  --light:       #EDE9E2;
  --mid:         #D6D0C6;
  --muted:       #9E9890;
  --soft:        #6A6560;
  --ink:         #1E1C1A;
  --sage:        #5C7A65;
  --sage-mid:    #7A9E84;
  --sage-pale:   #C2D9C8;
  --sage-light:  #E4EEE7;
  --forest:      #2D4A35;
  --forest-mid:  #3D5A45;
  --terra:       #B07A5A;
  --terra-pale:  #E8D5C4;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  background: rgba(247,245,241,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background 0.4s, border-color 0.4s;
}

nav.on-hero {
  background: transparent;
  border-bottom-color: transparent;
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--ink);
  line-height: 1.2;
  transition: color 0.3s;
}

nav.on-hero .nav-brand { color: rgba(255,255,255,0.92); }

.nav-brand small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 300;
  margin-top: 1px;
}

nav.on-hero .nav-brand small { color: rgba(255,255,255,0.5); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft);
  transition: color 0.2s;
}

nav.on-hero .nav-links a { color: rgba(255,255,255,0.7); }
nav.on-hero .nav-links a:hover { color: rgba(255,255,255,1); }
.nav-links a:hover { color: var(--ink); }

.nav-cta {
  border: 1px solid rgba(0,0,0,0.2) !important;
  padding: 9px 22px;
  color: var(--ink) !important;
  transition: border-color 0.2s !important;
}

nav.on-hero .nav-cta {
  border-color: rgba(255,255,255,0.4) !important;
  color: rgba(255,255,255,0.85) !important;
}

.nav-cta:hover { border-color: var(--ink) !important; }
nav.on-hero .nav-cta:hover {
  border-color: white !important;
  color: white !important;
}

/* ── HERO ── */
#home {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 48px 100px;
  overflow: hidden;
  background-color: var(--forest);
  background-image: url('https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
}

#home::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,35,22,0.25) 0%,
    rgba(20,35,22,0.3) 40%,
    rgba(15,25,17,0.65) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  margin-bottom: 24px;
  display: block;
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-content h1 em { font-style: italic; }

.hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  font-weight: 300;
  margin-bottom: 36px;
}

.hero-link {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}

.hero-link:hover {
  color: white;
  border-color: rgba(255,255,255,0.7);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 140px 48px 72px;
  background: var(--off-white);
  border-bottom: 1px solid var(--light);
}

.page-hero .section-tag { margin-bottom: 16px; }

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  max-width: 700px;
}

.page-hero h1 em { font-style: italic; }

/* ── SHARED SECTION ── */
.section-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-wrap.wide { max-width: 1040px; }

section { scroll-margin-top: 68px; }

.section-tag {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  display: block;
  margin-bottom: 44px;
}

.section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 36px;
}

.section-h2 em { font-style: italic; }

.prose p {
  color: var(--soft);
  font-size: 1.01rem;
  line-height: 1.88;
  margin-bottom: 20px;
  font-weight: 300;
}

.prose p:last-child { margin-bottom: 0; }
.prose p strong { color: var(--ink); font-weight: 500; }
.prose p em { font-style: italic; }

hr.thin {
  border: none;
  border-top: 1px solid var(--light);
}

/* ── PHOTO BREAK ── */
.photo-break {
  height: 400px;
  background-color: var(--sage-pale);
  background-size: cover;
  background-position: center;
  position: relative;
}

.photo-break::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(45,74,53,0.15);
}

/* ── WHO THIS IS FOR ── */
.for-section {
  background: var(--off-white);
  padding: 100px 0;
}

.for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 52px;
  border-top: 1px solid var(--mid);
}

.for-item {
  padding: 36px 40px 36px 0;
  border-bottom: 1px solid var(--light);
}

.for-item:nth-child(even) {
  padding-left: 40px;
  padding-right: 0;
  border-left: 1px solid var(--mid);
}

.for-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
}

.for-item p {
  font-size: 0.94rem;
  color: var(--soft);
  line-height: 1.8;
  font-weight: 300;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--forest);
  background-image: url('https://images.unsplash.com/photo-1501854140801-50d01698950b?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 38, 24, 0.78);
}

.testimonials-section .section-wrap {
  position: relative;
  z-index: 2;
}

.testimonials-section .section-tag {
  color: rgba(255,255,255,0.45);
  text-align: center;
}

.testimonials-section .section-h2 {
  color: rgba(255,255,255,0.88);
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 44px 40px;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 24px;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 2.5rem;
  line-height: 0;
  vertical-align: -0.6rem;
  margin-right: 4px;
  color: var(--sage-mid);
  font-style: normal;
}

.testimonial-attribution {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.testimonial-disclaimer {
  margin-top: 40px;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  font-weight: 300;
  font-style: italic;
}

/* ── SERVICES ── */
.service-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--light);
}

.service-section:first-child { border-top: 1px solid var(--light); }
.service-section.bg-off-white { background: var(--off-white); }
.service-section.bg-sage { background: var(--sage-light); border-color: var(--sage-pale); }
.service-section.bg-sage + .service-section { border-top: none; }

.service-block {
  padding: 0;
  border: none;
}

.service-block:last-child { border-bottom: none; }

.service-block-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: start;
}

.service-meta .service-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}

.service-meta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
}

.service-body p {
  color: var(--soft);
  font-size: 1rem;
  line-height: 1.88;
  margin-bottom: 18px;
  font-weight: 300;
}

.service-body p:last-child { margin-bottom: 0; }
.service-body p strong { color: var(--ink); font-weight: 500; }
.service-body p em { font-style: italic; }

.service-photo {
  width: 100%;
  aspect-ratio: 16/9;
  margin-top: 28px;
  background-color: var(--sage-pale);
  background-size: cover;
  background-position: center;
}

.service-coming-tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--mid);
  padding: 4px 12px;
  margin-top: 14px;
}

/* ── MANIFESTO ── */
.manifesto-strip {
  background: var(--sage-light);
  border-top: 1px solid var(--sage-pale);
  border-bottom: 1px solid var(--sage-pale);
  padding: 80px 0;
}

.manifesto-strip .inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 48px;
}

.manifesto-strip .tag {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 36px;
  display: block;
}

.manifesto-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(92,122,101,0.2);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--forest-mid);
  line-height: 1.6;
  font-style: italic;
}

.manifesto-item:first-of-type { border-top: 1px solid rgba(92,122,101,0.2); }

/* ── ABOUT ── */
.about-body { padding: 100px 0; }

.about-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}

.about-left {
  position: sticky;
  top: 100px;
}

.portrait-box {
  width: 100%;
  aspect-ratio: 3/4;
  background-color: var(--sage-pale);
  background-size: cover;
  background-position: center top;
  margin-bottom: 28px;
  position: relative;
}

.about-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.about-title {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.7;
}

.credential-list {
  list-style: none;
  padding-top: 22px;
  border-top: 1px solid var(--mid);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.credential-list li {
  font-size: 0.84rem;
  color: var(--soft);
  font-weight: 300;
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}

.credential-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--sage);
}

.about-right p {
  color: var(--soft);
  font-size: 1.01rem;
  line-height: 1.88;
  margin-bottom: 22px;
  font-weight: 300;
}

.about-right p strong { color: var(--ink); font-weight: 500; }
.about-right p:last-child { margin-bottom: 0; }
.about-right p em { font-style: italic; }

.about-right h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 36px;
}

.about-right h2 em { font-style: italic; }

.qualities {
  margin: 40px 0;
  border-top: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
  padding: 8px 0;
}

.quality-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--light);
}

.quality-row:last-child { border-bottom: none; }

.quality-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  padding-top: 3px;
}

.quality-text {
  font-size: 0.97rem;
  color: var(--soft);
  font-weight: 300;
  line-height: 1.75;
}

/* ── RATES ── */
.rates-body {
  background: var(--off-white);
  padding: 100px 0;
}

.rates-table {
  border-top: 1px solid var(--mid);
  margin-top: 48px;
  margin-bottom: 40px;
}

.rate-row {
  display: grid;
  grid-template-columns: 1fr 80px;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--light);
  align-items: baseline;
}

.rate-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 3px;
}

.rate-desc {
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 300;
}

.rate-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--ink);
  text-align: right;
}

/* ── CONTACT ── */
.contact-body { padding: 100px 0; }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-left p {
  color: var(--soft);
  font-size: 1rem;
  line-height: 1.88;
  margin-bottom: 18px;
  font-weight: 300;
}

.contact-left p strong { color: var(--ink); font-weight: 500; }

.contact-meta {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--light);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-meta-row { display: flex; gap: 20px; }

.contact-meta-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 100px;
  padding-top: 2px;
  flex-shrink: 0;
}

.contact-meta-value {
  font-size: 0.92rem;
  color: var(--soft);
  font-weight: 300;
  line-height: 1.6;
}

/* ── FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 20px; }

.field-group { display: flex; flex-direction: column; gap: 7px; }

.field-group label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.field-group input,
.field-group select,
.field-group textarea {
  background: var(--off-white);
  border: 1px solid var(--mid);
  padding: 13px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink);
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  appearance: none;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus { border-color: var(--sage); }

.field-group textarea { resize: vertical; min-height: 130px; }

.field-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239E9890' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.field-note {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
  font-style: italic;
}

.form-btn {
  background: var(--forest);
  color: var(--white);
  border: none;
  padding: 15px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}

.form-btn:hover { background: var(--forest-mid); }

/* ── FOOTER ── */
footer {
  background: var(--forest);
  padding: 56px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 6px;
}

.footer-sub {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}

.footer-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
  line-height: 1.65;
  max-width: 380px;
  font-style: italic;
}

.footer-right {
  text-align: right;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.8;
}

.footer-right a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-right a:hover { color: rgba(255,255,255,0.85); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.2);
}

/* ── CALL TO ACTION ── */
.cta-action {
  display: inline-block;
  margin-top: 36px;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  border-bottom: 1px solid var(--sage-mid);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.cta-action:hover { color: var(--sage); border-color: var(--sage); }

.cta-btn {
  display: inline-block;
  margin-top: 28px;
  background: var(--forest);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.cta-btn:hover { background: var(--forest-mid); color: var(--white); }

.cta-btn.outline {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--sage-mid);
}
.cta-btn.outline:hover { background: var(--forest); color: var(--white); border-color: var(--forest); }

.section-cta {
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid var(--light);
  text-align: center;
}

.section-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  color: var(--forest-mid);
  margin-bottom: 20px;
}

/* ── WHAT BRINGS / THE WORK ── */
.section-textured {
  padding: 100px 0;
  background: var(--off-white);
}

.section-textured-sage {
  padding: 100px 0;
  background: var(--sage-light);
  border-top: 1px solid var(--sage-pale);
  border-bottom: 1px solid var(--sage-pale);
}

.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-style: italic;
  font-weight: 300;
  color: var(--forest);
  line-height: 1.5;
  border-left: 2px solid var(--sage-mid);
  padding: 4px 0 4px 28px;
  margin: 40px 0 36px;
}

.section-textured .prose p,
.section-textured-sage .prose p {
  color: var(--soft);
}

.section-textured-sage .section-h2 { color: var(--forest); }
.section-textured-sage .section-tag { color: var(--sage); }

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 300;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
}

nav.on-hero .nav-hamburger span { background: rgba(255,255,255,0.85); }

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  background: rgba(247,245,241,0.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--light);
  z-index: 190;
  padding: 24px 24px 32px;
  flex-direction: column;
  gap: 0;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft);
  padding: 16px 0;
  border-bottom: 1px solid var(--light);
  transition: color 0.2s;
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--ink); }

.mobile-menu .nav-cta {
  margin-top: 16px;
  border: 1px solid rgba(0,0,0,0.2) !important;
  padding: 14px 0 !important;
  text-align: center;
  color: var(--ink) !important;
  border-bottom: 1px solid rgba(0,0,0,0.2) !important;
}

/* ── MOBILE ── */
@media (max-width: 820px) {
  nav { padding: 0 24px; }
  #home { padding: 120px 24px 80px; }
  .page-hero { padding: 120px 24px 56px; }
  .section-wrap, .section-wrap.wide { padding: 0 24px; }
  .manifesto-strip .inner { padding: 0 24px; }

  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-left { position: static; }

  .for-grid { grid-template-columns: 1fr; }
  .for-item:nth-child(even) { padding-left: 0; border-left: none; }

  .service-block-inner { grid-template-columns: 1fr; gap: 16px; }
  .quality-row { grid-template-columns: 1fr; gap: 6px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; gap: 32px; align-items: flex-start; }
  .footer-right { text-align: left; }
  .footer-bottom { flex-direction: column; gap: 6px; }

  .photo-break { height: 260px; }

  .pull-quote { font-size: 1.2rem; padding-left: 20px; margin: 28px 0; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}
