@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Montserrat:wght@400;500;600&display=swap');

/* variables */
:root {
  --nav-height: 72px;
  --shadow-soft: 0 8px 32px rgba(13, 30, 50, 0.12);
  --shadow-panel: 0 12px 60px rgba(13, 30, 50, 0.28);
  --transition: 0.2s ease;

  /* padding */
  --container-pad: 7%;
  --section-pad-x: 160px;
  --section-pad-y: 110px;
  --section-pad-x-tablet: 80px;
  --section-pad-y-tablet: 90px;
  --section-pad-y-mobile: 70px;

  /* colors */
  --navy: #0d1e32;
  --gold: #836a1c;
  --gold-on-dark: #B49632;
  --gold-bg: rgba(138, 110, 30, 0.1);
  --white: #fff;
  --off-white: #f7f6f2;
  --rule: #d8d0c0;
  --text: #1a1a1a;
  --text-light: #2a2a2a;
  --text-mid: #1a1a1a;

  /* fonts */
  --font-sans: 'Montserrat', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --body-size: 1rem;
  --small-size: 0.8125rem;
  --body-line: 2;
  --body-line-tight: 1.85;
  --label-size: 1.35375rem;
  --section-title-size: clamp(2.25625rem, 2.8vw, 3.20625rem);
  --hero-title-size: clamp(3.0875rem, 4.5vw, 4.9875rem);
}

/* reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-sans); font-weight: 400; color: var(--text); background: var(--white); }
img { display: block; max-width: 100%; }
section[id] { scroll-margin-top: var(--nav-height); }

/* shared */
.gold-rule { height: 1px; margin: 0 var(--container-pad); background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.section-label, .contact-label { display: block; margin: 1rem 0; font-size: var(--label-size); font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.section-h2, .contact-title, .contact-business-name { font-family: var(--font-serif); font-weight: 600; line-height: 1.25; }
.section-h2, .contact-title { font-size: var(--section-title-size); }
.section-h2 { color: var(--navy); }
.section-h2 em, .contact-title em { font-style: italic; font-weight: 400; }
.section-copy, .hero-sub, .about-text p, .expertise-gen > p, .approach-left p, .team-head p, .fees-intro, .contact-copy { font-size: var(--body-size); color: var(--text-mid); }
.hero-sub, .about-text p, .expertise-gen > p, .approach-left p, .team-head p, .fees-intro, .contact-copy { line-height: var(--body-line); }
.section-copy + .section-copy, .hero-sub + .hero-sub, .about-text p + p { margin-top: 1.4rem; }
.inline-heading-group { display: inline-flex; align-items: center; gap: 0.7rem; flex-wrap: wrap; }
.heading-divider, .member-vdivider { display: inline-block; width: 1px; background: var(--gold); flex-shrink: 0; }
.heading-divider { height: 1.1em; vertical-align: middle; }
.heading-divider--short { height: 1em; }
.heading-divider--with-margin { margin: 0 0.5rem; }
.section-h2--spaced { margin-bottom: 1.6rem; }
.content-block--large { margin-top: 3rem; }
.subsection-header { margin-bottom: 0.6rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--gold); }
.subsection-title { font-size: 1.0925rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; }
.subsection-intro { margin-bottom: 1.6rem; font-size: 1.0925rem; font-style: italic; line-height: var(--body-line-tight); color: var(--text-light); }
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* nav */
nav { position: fixed; top: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; width: 100%; height: var(--nav-height); padding: 0 var(--container-pad); background: rgba(255, 255, 255, 0.97); border-bottom: 1px solid var(--rule); }
.nav-brand { display: inline-flex; align-items: center; text-decoration: none; }
.nav-brand-logo { display: block; width: auto; height: auto; max-height: 38px; }
.nav-links, .nav-desktop-btns, .mobile-menu { list-style: none; }
.nav-links, .nav-desktop-btns { display: flex; align-items: center; }
.nav-links { gap: 0; margin-right: 5px; }
.nav-links li { display: flex; align-items: center; }
.nav-links li + li::before { content: ''; display: block; width: 1px; height: 14px; margin: 0 .5rem; background: var(--gold); opacity: 0.6; }
.nav-links a, .mobile-menu a { color: var(--text-mid); text-decoration: none; text-transform: uppercase; }
.nav-links a { padding: 5px; font-size: var(--body-size); font-weight: 500; border-radius: 3px; transition: background var(--transition); }
.nav-links a:hover, .nav-links a.is-active { background: var(--gold-bg); }
.nav-btn { padding: 4px 6px; font-size: var(--small-size); font-weight: 500; text-transform: uppercase; text-decoration: none; white-space: nowrap; color: var(--text-light); background: transparent; border: 1px solid var(--rule); transition: border-color var(--transition), color var(--transition), background var(--transition); }
.nav-btn:hover, .nav-btn.is-active { color: var(--text-mid); border-color: var(--gold); }
.nav-btn.is-active { background: var(--gold-bg); }
.nav-desktop-btns { gap: 6px; margin-right: -2%; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; background: none; border: 0; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); transition: all 0.3s; }
.mobile-menu { position: fixed; top: var(--nav-height); left: 0; right: 0; z-index: 99; display: none; flex-direction: column; padding: 20px var(--container-pad); background: rgba(255, 255, 255, 0.98); border-bottom: 1px solid var(--rule); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 14px 0; font-size: var(--body-size); font-weight: 500; letter-spacing: 0.14em; border-bottom: 1px solid var(--rule); }
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu a:hover, .mobile-menu a.is-active { color: var(--gold); }

/* hero */
.hero { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 100vh; padding-top: var(--nav-height); }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 80px 12% 80px 0; background: var(--white); }
.hero-left-inner { margin-left: 160px; }
.hero h1 { font-family: var(--font-serif); font-size: var(--hero-title-size); font-weight: 600; line-height: 1.18; color: var(--navy); }
.hero h1 em { font-style: italic; font-weight: 400; color: var(--gold); }
.hero-sub { max-width: 640px; color: var(--text-light); }
.hero-img { position: relative; min-height: 100%; background: url('../images/hero.jpg') center / cover no-repeat; }
.hero-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(255, 255, 255, 0.12) 0%, transparent 40%), linear-gradient(to top, rgba(13, 30, 50, 0.35) 0%, transparent 60%); }

/* about */
.about, .approach { display: grid; grid-template-columns: 1fr 1fr; align-items: center; background: var(--white); }
.about { width: 100%; gap: 0; padding: var(--section-pad-y) 0 var(--section-pad-y) 160px; }
.about-text { padding-right: 80px; }
.about-text p { max-width: 640px; }
.about-right-col { display: flex; align-items: center; justify-content: center; padding: 0 9% 0 0; }
.about-logo-band { position: relative; width: 75%; height: 320px; overflow: hidden; background: #313e49; border-radius: 4px; box-shadow: var(--shadow-panel); }
.logo-phase-img { position: absolute; top: 46px; left: 50%; width: 160px; height: 160px; object-fit: contain; opacity: 0; transform: translateX(-50%); transition: opacity 1.4s ease-in-out; }
.about-logo-caption-wrap { position: absolute; top: 200px; left: 0; right: 0; display: flex; flex-direction: column; align-items: center; padding: 0 20px; }
.logo-caption, .logo-story-text { font-family: var(--font-serif); font-style: italic; font-weight: 600; color: #fff; text-align: center; }
.logo-caption { font-size: clamp(1.246875rem, 1.8vw, 1.721875rem); line-height: 1.4; transition: opacity 0.4s ease; }
.logo-controls { display: flex; align-items: center; gap: 1.2rem; margin-top: 10px; }
.logo-nav-btn { padding: 2px; cursor: pointer; background: none; border: 0; opacity: 1; transition: opacity var(--transition); }
.logo-nav-btn.is-muted { opacity: 0.35; }
.logo-dots { display: flex; gap: 5px; }

/* expertise */
.expertise { position: relative; display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.expertise-left { position: sticky; top: var(--nav-height); height: calc(100vh - var(--nav-height)); background: url('../images/italian_landscape.jpg') center / cover no-repeat; }
.expertise-left::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(13, 30, 50, 0.45) 0%, transparent 50%); }
.expertise-right { padding-top: 50px; }
.expertise-gen { display: flex; flex-direction: column; justify-content: center; min-height: calc(100vh - var(--nav-height)); padding: 80px 9%; }
.expertise-mobile-image { display: none; }
.expertise-gen > p { margin-top: 1.3rem; }
.gen-items { margin-top: 2.2rem; }
.gen-item, .approach-item { padding: 18px 0; border-top: 1px solid var(--rule); }
.gen-item:last-child, .approach-item:last-child { border-bottom: 1px solid var(--rule); }
.gen-item h4, .approach-item h4 { margin-bottom: 5px; font-size: 1.230625rem; font-weight: 500; }
.gen-item h4 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; color: var(--navy); }
.gen-item p, .approach-item p { font-size: var(--body-size); line-height: var(--body-line-tight); color: var(--text-light); }

/* approach */
.approach { gap: 100px; align-items: start; padding: var(--section-pad-y) var(--section-pad-x); }
.approach-left p { max-width: 640px; }
.approach-item { padding-block: 22px; }
.approach-item h4 { margin-bottom: 6px; }

/* logo story */
.logo-story { position: relative; display: flex; align-items: center; justify-content: center; height: 420px; background: url('../images/yellow_tall_grass.jpg') center 40% / cover no-repeat; }
.logo-overlay { position: absolute; inset: 0; background: rgba(13, 30, 50, 0.52); }
.logo-inner { position: relative; z-index: 1; display: flex; width: 100%; padding: 60px var(--container-pad); }
.logo-inner, .logo-story-text { justify-content: center; align-items: center; }
.logo-story-text { font-size: clamp(1.6625rem, 2.6vw, 2.6125rem); line-height: 1.5; }

/* team */
.team, .fees { padding: var(--section-pad-y) var(--section-pad-x); }
.team { background: var(--white); }
.team-head { margin-bottom: 60px; }
.team-head p, .fees-intro { max-width: 640px; margin-top: 1.2rem; }
.team-category { margin-bottom: 56px; }
.team-cat-label { margin-bottom: 0; padding-bottom: 14px; font-size: 1.21125rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-mid); border-bottom: 1px solid var(--rule); }
.team-grid, .fees-grid { display: grid; background: var(--rule); }
.team-grid { grid-template-columns: repeat(auto-fit, minmax(440px, 1fr)); gap: 1px; }
.member { padding: 40px 36px; background: var(--white); transition: background 0.3s; }
.member:hover { background: var(--off-white); }
.member-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-right: -20px; padding-right: 8px; }
.member-header-text { flex: 1; min-width: 0; }
.member-name { margin-bottom: 6px; font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: var(--navy); }
.member-name-note { font-family: var(--font-sans); font-size: 1em; font-weight: 400; color: var(--text-light); }
.member-credential { font-size: .95rem; white-space: nowrap; }
.member-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 14px; }
.member-title { font-size: var(--body-size); font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.member-vdivider { height: 12px; }
.member-joined { font-size: var(--body-size); font-weight: 500; letter-spacing: 0.08em; color: var(--text-light); }
.member-photo { width: 168px; height: 168px; flex-shrink: 0; align-self: flex-start; object-fit: cover; object-position: top; border-radius: 2px; box-shadow: var(--shadow-soft); }
.member-bio { display: none; margin-top: 14px; font-size: var(--body-size); line-height: 1.9; color: var(--text-light); }
.member-bio.open { display: block; }
.member-empty, .member-empty--light { background: var(--white); }
.read-bio-btn { display: inline-block; margin-top: 14px; padding: 5px 14px; font-family: var(--font-sans); font-size: var(--body-size); font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mid); cursor: pointer; background: #f0eeea; border: 1px solid #e0dbd4; transition: background var(--transition); }
.read-bio-btn:hover { background: #e4e0da; }
.member-meta-nowrap { display: inline-flex; gap: 8px; align-items: center; white-space: nowrap; }
/** team test edit */
.member-name-note, .member-meta-nowrap { display: block; width: 100%; }
.member-name-note { font-size: 1rem; }
.member-vdivider { display: none; }

/* fees */
.fees { background: var(--off-white); }
.fees-grid { grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 56px; }
.fee-table { padding: 40px 36px; background: var(--white); }
.fee-table-title { text-transform: uppercase; margin-bottom: 22px; padding-bottom: 14px; font-size: 1.365625rem; font-weight: 600; border-bottom: 1px solid var(--rule); }
.fee-row { display: grid; grid-template-columns: 1fr 1fr; padding: 13px 0; font-size: var(--body-size); color: var(--text-mid); border-bottom: 1px solid var(--rule); }
.fee-row:last-child { border-bottom: 0; }
.fee-row.head { padding-bottom: 8px; font-size: var(--body-size); font-family: var(--font-serif); font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--text-light); }
.fee-row span:last-child { text-align: right; color: var(--navy); }
.fee-note { margin-top: 28px; font-size: var(--body-size); line-height: 1.9; color: var(--text-light); }
.fee-note strong { font-weight: 500; color: var(--text-mid); }
.fee-note--tight { margin-top: 0; line-height: 2; }

/* contact */
.contact-band { padding: calc(var(--section-pad-y) / 3) var(--section-pad-x); background: var(--navy); }
.contact-inner { display: flex; align-items: center; gap: 0; }
.contact-content { flex: 1; }
.contact-label { color: var(--gold-on-dark); }
.contact-title { color: #fff; margin: 10px 0; }
.contact-title em { color: var(--gold-on-dark); }
.contact-copy { max-width: 640px; line-height: var(--body-line); color: rgba(255, 255, 255, 0.55); }
.contact-divider { width: 1px; margin: 0 30px 0 20px; align-self: stretch; flex-shrink: 0; background: rgba(149, 125, 46, 0.6); }
.contact-location { display: flex; align-items: center; flex-shrink: 0; }
.contact-map, .contact-details { flex-shrink: 0; }
.contact-map-frame { display: block; border: 0; filter: grayscale(30%); }
.contact-details { display: flex; flex-direction: column; gap: 0.8rem; padding-left: 32px; }
.contact-business-name { font-size: clamp(1.78125rem, 2.8vw, 3.20625rem); color: #fff; margin: 10px 0; }
.contact-address, .contact-phone { font-size: var(--body-size); color: rgba(255, 255, 255, 0.65); margin: 0; }
.contact-address { line-height: 2; letter-spacing: 0.08em; text-transform: uppercase; }
.contact-phone { letter-spacing: 0.06em; }
.contact-email { font-size: var(--body-size); }
.contact-link { color: var(--gold-on-dark); text-decoration: none; }
.contact-email .contact-link { letter-spacing: 0.04em; }

/* interior pages */
.page-hero { padding-top: var(--nav-height); background: var(--white); }
.page-hero-inner { padding: 40px 12% 30px; }
.content-body { padding: 35px 12% 55px; background: var(--white); }
.content-block { margin-bottom: 44px; }
.content-block h2 { margin-bottom: 18px; padding-bottom: 12px; font-size: 1.284375rem; font-weight: 500; letter-spacing: 0.02em; color: var(--navy); border-bottom: 1px solid var(--rule); }
.content-block h2.section-h2 { font-weight: 600; }
.content-block h2.large { font-size: 1.78125rem; font-family: var(--font-serif); font-weight: 700; }
.content-block p { margin-bottom: 1rem; font-size: var(--body-size); line-height: 2.05; color: var(--text-mid); }
.content-block p:last-child { margin-bottom: 0; }

/* content document card */
.content-doc-card { display: flex; align-items: center; justify-content: space-between; padding: 24px 28px; background: var(--off-white); border: 1px solid var(--rule); transition: border-color var(--transition), background var(--transition); }
.content-doc-card:hover { background: #f0ece3; border-color: var(--gold); }
.content-doc-card + .content-doc-card { margin-top: 2px; }
.content-doc-title { font-size: var(--body-size); color: var(--navy); }
.content-doc-sub { margin-top: 4px; font-size: var(--body-size); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); }
.content-doc-link { flex-shrink: 0; margin-left: 24px; padding: 6px 16px; font-size: var(--body-size); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; white-space: nowrap; color: var(--gold); border: 1px solid var(--gold); transition: background var(--transition), color var(--transition); }
.content-doc-link:hover { color: var(--white); background: var(--gold); }

/* links page */
.links-body { padding: 70px 12% 220px; background: var(--white); }
.links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--rule); }
.links-category { padding: 48px 40px; background: var(--white); }
.cat-title { margin-bottom: 0; padding-bottom: 18px; font-family: var(--font-serif); font-size: 2.078125rem; font-weight: 600; color: var(--navy); border-bottom: 1px solid var(--rule); }
.link-list { list-style: none; margin: 4px 0 0; padding: 0; }
.link-list li { border-bottom: 1px solid var(--rule); }
.link-list li:last-child { border-bottom: 0; }
.link-list a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 0; font-size: var(--body-size); line-height: 1.5; text-decoration: none; color: var(--text-mid); transition: color var(--transition), padding-left var(--transition); }
.link-list a:hover { color: var(--gold); padding-left: 6px; }
.link-name { flex: 1; }
.link-arrow { flex-shrink: 0; opacity: 0.3; transition: opacity var(--transition), transform var(--transition); }
.link-list a:hover .link-arrow { opacity: 0.75; transform: translateX(3px); }

/* onboarding form */
.form-body { padding: 50px 12% 110px; background: var(--white); }
.form-divider { height: 1px; margin-bottom: 60px; background: var(--rule); }
.jotform-embed { display: flex; align-items: center; justify-content: center; width: 100%; min-height: 600px; background: var(--off-white); border: 1px solid var(--rule); }
.jotform-embed p { font-size: var(--body-size); letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); }

/* footer */
.site-footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0; padding: 50px var(--container-pad); background: var(--off-white); border-top: 1px solid var(--rule); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0; width: 100%; margin: 20px 0; padding: 14px 0; border-top: 1px solid var(--gold); border-bottom: 1px solid var(--gold); }
.footer-link { padding: 0 16px; font-size: var(--small-size); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; color: var(--text-light); border-right: 1px solid var(--rule); }
.footer-link:last-child { border-right: 0; }
.footer-link.is-active { color: var(--gold); }

/* laptop */
@media (max-width: 1425px) and (min-width: 1201px) {
  :root { --nav-height: 122px; }
  nav { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; align-items: center; row-gap: 8px; padding-top: 12px; padding-bottom: 12px; }
  .nav-brand { grid-row: 1 / span 2; }
  .nav-brand-logo { max-height: 34px; }
  .nav-links, .nav-desktop-btns { justify-content: flex-end; min-width: 0; }
  .nav-links { grid-column: 2; grid-row: 1; min-width: 575px; }
  .nav-links li + li::before { margin: 0 0.35rem; }
  .nav-links a { font-size: 0.92rem; }
  .nav-desktop-btns { grid-column: 2; grid-row: 2; margin-right: 0; }
  .nav-btn { font-size: var(--small-size); }
  .contact-location { flex-direction: column; align-items: flex-start; gap: 24px; }
  .contact-details { padding-left: 0; }
}

/* tablet */
@media (max-width: 1200px) and (min-width: 901px) {
  :root { --nav-height: 122px; --section-pad-x: var(--section-pad-x-tablet); --section-pad-y: var(--section-pad-y-tablet); }
  nav { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; align-items: center; row-gap: 8px; padding-top: 12px; padding-bottom: 12px; }
  .nav-brand { grid-row: 1 / span 2; }
  .nav-brand-logo { max-height: 34px; }
  .nav-links, .nav-desktop-btns { justify-content: flex-end; min-width: 0; }
  .nav-links { grid-column: 2; grid-row: 1; min-width: 575px; }
  .nav-links li + li::before { margin: 0 0.35rem; }
  .nav-links a { font-size: 0.92rem; }
  .nav-desktop-btns { grid-column: 2; grid-row: 2; margin-right: 0; }
  .nav-btn { font-size: var(--small-size); }
  .hero-left-inner { margin-left: 60px; }
  .about { padding-left: 80px; }
  .approach { gap: 60px; }
  .contact-location { flex-direction: column; align-items: flex-start; gap: 24px; }
  .contact-details { padding-left: 0; }
  .page-hero-inner { padding: 70px 8% 50px; }
  .content-body { padding: 60px 8% 90px; }
  .content-doc-card { padding: 20px 22px; }
  .links-body { padding: 60px 8% 160px; }
  .links-category { padding: 36px 28px; }
}

/* mobile */
@media (max-width: 900px) {
  :root { --section-pad-x: var(--container-pad); --section-pad-y: var(--section-pad-y-mobile); --hero-title-size: clamp(3.0875rem, 8vw, 3.5625rem); }
  .nav-links, .nav-desktop-btns { display: none; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { order: 1; padding: 60px var(--container-pad) 50px; }
  .hero-left-inner { margin-left: 0; }
  .hero-img { order: 2; min-height: 55vw; }
  .about { grid-template-columns: 1fr; padding-left: var(--container-pad); padding-right: var(--container-pad); }
  .about-text { padding-right: 0; }
  .about-right-col { justify-content: center; padding: 40px 0 0; }
  .about-logo-band { width: 100%; max-width: 340px; }
  .expertise { display: flex; flex-direction: column; }
  .expertise-left { display: none; }
  .expertise-right { order: 1; }
  .expertise-gen { min-height: auto; padding: 60px var(--container-pad); }
  .expertise-mobile-image { display: block; width: 100%; height: auto; margin-top: 1.3rem; border-radius: 2px; box-shadow: var(--shadow-soft); object-fit: cover; }
  .approach { grid-template-columns: 1fr; gap: 40px; }
  .logo-story { height: 300px; }
  .logo-inner { padding: 40px var(--container-pad); }
  .team-grid, .fees-grid { grid-template-columns: 1fr; }
  .member { padding: 32px 24px; }
  .member-header { margin-right: -24px; padding-right: 24px; }
  .member-photo { width: 100px; height: 100px; }
  .member-empty, .member-empty--light { display: none; }
  .fee-table { padding: 30px 24px; }
  .contact-inner { flex-direction: column; align-items: flex-start; gap: 40px; }
  .contact-content { padding-right: 0; }
  .contact-divider { display: none; }
  .contact-location { flex-direction: column; align-items: flex-start; width: 100%; gap: 24px; }
  .contact-map { width: 100%; }
  .contact-map-frame { width: 100%; height: 220px; }
  .contact-details { padding-left: 0; }
  .site-footer { padding: 28px var(--container-pad); }
  .footer-links { gap: 8px; margin: 0; }
  .footer-link { padding: 4px 10px; border-right: 0; }
  .page-hero-inner { padding: 50px var(--container-pad) 40px; }
  .content-body { padding: 50px var(--container-pad) 80px; }
  .content-block { margin-bottom: 36px; }
  .content-doc-card { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px; }
  .content-doc-link { margin-left: 0; }
  .links-body { padding: 50px var(--container-pad) 100px; }
  .links-grid { grid-template-columns: 1fr; }
  .links-category { padding: 36px 24px; }
  .cat-title { font-size: 1.78125rem; }
}

/* small mobile */
@media (max-width: 480px) {
  .nav-brand-logo { height: 30px; }
  .hero h1 { font-size: 2.375rem; }
  .section-h2 { font-size: 2.01875rem; }
  .member-photo { width: 80px; height: 80px; }
  .about-logo-band { height: 280px; }
  .logo-story { height: 240px; }
  .content-block h2 { font-size: 1.30625rem; }
  .content-block p { font-size: var(--body-size); }
  .content-doc-title { font-size: 1.1875rem; }
  .cat-title { font-size: 1.603125rem; }
  .link-list a { font-size: var(--body-size); }
}
