:root {
  --ink: #0b2630;
  --ink-soft: #27444e;
  --teal: #176e78;
  --aqua: #62c6c8;
  --aqua-soft: #dff4f2;
  --sky: #f1f8f7;
  --white: #ffffff;
  --mist: #e5eeee;
  --copper: #c88d63;
  --copper-soft: #f1dfd2;
  --shadow: 0 18px 55px rgba(10, 38, 48, 0.1);
  --shadow-soft: 0 10px 34px rgba(10, 38, 48, 0.07);
  --radius: 24px;
  --shell: min(1180px, calc(100% - 40px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img {
  display: block;
  max-width: 100%;
}

figure { margin: 0; }

a { color: inherit; }

button,
a { -webkit-tap-highlight-color: transparent; }

button,
input,
textarea { font: inherit; }

button { color: inherit; }

:focus-visible {
  outline: 3px solid rgba(23, 110, 120, 0.35);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 12px;
  z-index: 999;
  transform: translateY(-180%);
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
}

.skip-link:focus { transform: translateY(0); }

.section-shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, border-color .25s ease;
}

.scrolled .site-header {
  border-color: rgba(11, 38, 48, 0.08);
  box-shadow: 0 8px 30px rgba(11, 38, 48, 0.06);
}

.header-shell {
  width: var(--shell);
  min-height: 82px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  position: relative;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 110, 120, 0.24);
  border-radius: 17px 7px 17px 7px;
  background: linear-gradient(145deg, var(--aqua-soft), #fff);
  color: var(--teal);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.15em;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(200, 141, 99, 0.55);
  border-radius: 12px 5px 12px 5px;
}

.brand-mark span { position: relative; z-index: 1; }
.brand-mark span:first-child { transform: translateX(-1px); }
.brand-mark span:last-child { transform: translateX(1px); }

.brand-copy { display: grid; line-height: 1.2; }
.brand-copy strong { font-family: var(--serif); font-size: 20px; font-weight: 500; }
.brand-copy small { margin-top: 4px; color: var(--ink-soft); font-size: 12px; letter-spacing: .11em; text-transform: uppercase; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav > a:not(.button) {
  position: relative;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
}

.desktop-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  border-radius: 2px;
  background: var(--copper);
  transition: right .2s ease;
}

.desktop-nav > a:hover::after,
.desktop-nav > a[aria-current="page"]::after { right: 0; }

.desktop-nav .nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
}

svg {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 720;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 10px 22px rgba(23, 110, 120, 0.2);
}

.button-small { min-height: 42px; padding: 9px 17px; font-size: 14px; }

.button-secondary {
  border-color: rgba(11, 38, 48, 0.19);
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
}

.button-secondary:hover { background: var(--white); color: var(--teal); }

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.menu-button {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  padding: 12px;
  border: 1px solid var(--mist);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 82px;
  inset-inline: 0;
  height: calc(100dvh - 82px);
  padding: 28px 20px;
  background: rgba(255,255,255,.98);
  overflow-y: auto;
}

.mobile-menu nav { width: min(520px, 100%); margin: 0 auto; display: grid; }
.mobile-menu a {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--mist);
  font-size: 19px;
  font-weight: 670;
  text-decoration: none;
}

.mobile-menu .button { margin-top: 22px; border-bottom: 0; justify-content: center; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  padding: 36px 0 76px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -220px;
  left: -220px;
  border: 1px solid rgba(98, 198, 200, 0.28);
  border-radius: 50%;
  box-shadow: inset 0 0 0 88px rgba(223, 244, 242, 0.28), inset 0 0 0 90px rgba(98, 198, 200, 0.12);
  pointer-events: none;
}

.hero-grid {
  width: var(--shell);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 56px;
}

.hero-copy { padding: 48px 0; }

.hero h1,
.page-hero h1,
.section-heading h2,
.contact-lead h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.hero h1 { max-width: 680px; font-size: clamp(46px, 6vw, 78px); }

.hero h1 em {
  color: var(--teal);
  font-style: normal;
}

.hero .lead {
  max-width: 590px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.6;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 14px;
}

.hero-note::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--copper);
}

.hero-visual {
  position: relative;
  min-height: 610px;
  isolation: isolate;
}

.hero-photo {
  position: absolute;
  inset: 0 0 0 30px;
  border-radius: 105px 22px 105px 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, transparent 55%, rgba(11, 38, 48, .24));
  pointer-events: none;
}

.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }

.rating-card {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 56px;
  min-width: 190px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.rating-line { display: flex; align-items: baseline; gap: 10px; }
.rating-line strong { font-family: var(--serif); font-size: 34px; font-weight: 500; line-height: 1; }
.rating-stars { color: var(--copper); font-size: 14px; letter-spacing: .08em; }
.rating-card p { margin: 8px 0 0; color: var(--ink-soft); font-size: 13px; }

.photo-stamp {
  position: absolute;
  z-index: 2;
  top: 28px;
  right: -8px;
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(11,38,48,.2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.proof-strip {
  width: var(--shell);
  margin: 0 auto 96px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--mist);
}

.proof-item {
  min-height: 105px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 24px 30px;
  border-right: 1px solid var(--mist);
}

.proof-item:last-child { border-right: 0; }
.proof-item svg { flex: 0 0 24px; color: var(--teal); }
.proof-item strong { display: block; font-size: 15px; }
.proof-item span { display: block; margin-top: 2px; color: var(--ink-soft); font-size: 13px; }

.section { padding: 96px 0; }
.section-soft { background: var(--sky); }
.section-dark { background: var(--ink); color: var(--white); }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .52fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 46px;
}

.section-heading h2 { max-width: 760px; font-size: clamp(38px, 5vw, 58px); }
.section-heading > p { margin: 0 0 4px; color: var(--ink-soft); }
.section-dark .section-heading > p { color: rgba(255,255,255,.7); }
.section-dark .eyebrow { color: var(--aqua); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 300px;
  padding: 32px;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(23,110,120,.35);
  box-shadow: var(--shadow-soft);
}

.service-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -66px;
  bottom: -70px;
  border: 1px solid rgba(98,198,200,.3);
  border-radius: 50%;
  box-shadow: 0 0 0 25px rgba(223,244,242,.5);
}

.service-number { color: var(--copper); font-family: var(--serif); font-size: 18px; }
.service-card h3 { margin: 50px 0 12px; font-family: var(--serif); font-size: 29px; font-weight: 500; line-height: 1.16; }
.service-card p { max-width: 520px; margin: 0; color: var(--ink-soft); }

.tag-list { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 24px; }
.tag-list span {
  padding: 5px 10px;
  border: 1px solid var(--mist);
  border-radius: 999px;
  color: var(--ink-soft);
  background: #fbfdfd;
  font-size: 12px;
}

.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.path-step {
  position: relative;
  min-height: 290px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.035);
  overflow: hidden;
}

.path-step::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -35px;
  top: -35px;
  border: 1px solid rgba(98,198,200,.27);
  border-radius: 50%;
}

.path-step > span { color: var(--aqua); font-family: var(--serif); font-size: 18px; }
.path-step h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 27px; font-weight: 500; }
.path-step p { margin: 0; color: rgba(255,255,255,.68); }

.team-preview-grid,
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }

.team-card {
  min-height: 320px;
  display: grid;
  grid-template-columns: 145px 1fr;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(11,38,48,.04);
}

.team-card[hidden] { display: none; }

.team-monogram {
  position: relative;
  display: grid;
  place-items: end center;
  padding: 30px 14px;
  background: linear-gradient(165deg, #edf8f7, #cceae7);
  overflow: hidden;
}

.team-monogram::before,
.team-monogram::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(23,110,120,.18);
  border-radius: 50%;
}

.team-monogram::before { width: 190px; height: 190px; top: -65px; left: -80px; }
.team-monogram::after { width: 110px; height: 110px; top: -25px; left: -30px; }
.team-monogram span { font-family: var(--serif); color: var(--teal); font-size: 46px; letter-spacing: -.08em; }
.team-card-copy { padding: 34px 32px; display: flex; flex-direction: column; align-items: flex-start; }
.team-card h3 { margin: 0 0 14px; font-family: var(--serif); font-size: 28px; font-weight: 500; line-height: 1.15; }
.team-card-copy > p:not(.eyebrow) { margin: 0; color: var(--ink-soft); }

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 18px 0 0;
  border: 0;
  background: none;
  color: var(--teal);
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
}

.text-button svg { transition: transform .2s ease; }
.text-button:hover svg { transform: translateX(4px); }

.section-footer-link { margin-top: 34px; display: flex; justify-content: flex-end; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  grid-template-rows: repeat(2, 270px);
  gap: 14px;
}

.gallery-card {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--mist);
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-card:first-child { grid-row: 1 / 3; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.gallery-card:first-child img { object-position: 62% center; }
.gallery-card:hover img { transform: scale(1.035); }
.gallery-card::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(11,38,48,.72)); }
.gallery-card span {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  font-size: 14px;
  font-weight: 720;
}

.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.article-card {
  min-height: 265px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  background: var(--white);
  text-decoration: none;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.article-card:hover { transform: translateY(-4px); border-color: rgba(23,110,120,.35); box-shadow: var(--shadow-soft); }
.article-category { color: var(--copper); font-size: 12px; font-weight: 780; letter-spacing: .1em; text-transform: uppercase; }
.article-card h3 { margin: 26px 0 30px; font-family: var(--serif); font-size: 25px; font-weight: 500; line-height: 1.28; }
.article-source { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; color: var(--teal); font-size: 13px; font-weight: 720; }

.cta-panel {
  position: relative;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  border-radius: 34px 12px 34px 12px;
  background: var(--aqua-soft);
  overflow: hidden;
}

.cta-panel::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -70px;
  top: -95px;
  border: 1px solid rgba(23,110,120,.2);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(255,255,255,.18);
}

.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { max-width: 720px; margin: 0; font-family: var(--serif); font-size: clamp(34px, 4.5vw, 54px); font-weight: 500; letter-spacing: -.035em; line-height: 1.05; }
.cta-panel p { margin: 16px 0 0; color: var(--ink-soft); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.page-hero { padding: 72px 0 66px; background: linear-gradient(180deg, var(--sky), var(--white)); }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(330px, .62fr); align-items: end; gap: 80px; }
.page-hero h1 { max-width: 780px; font-size: clamp(48px, 7vw, 82px); }
.page-hero-copy > p:not(.eyebrow) { max-width: 720px; margin: 24px 0 0; color: var(--ink-soft); font-size: 19px; }
.page-hero-aside { padding-left: 26px; border-left: 1px solid var(--copper); color: var(--ink-soft); }
.page-hero-aside strong { display: block; margin-bottom: 8px; color: var(--ink); }

.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.filter-bar button {
  min-height: 43px;
  padding: 8px 16px;
  border: 1px solid var(--mist);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.filter-bar button[aria-pressed="true"] { border-color: var(--ink); background: var(--ink); color: var(--white); }

.team-context {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 50px;
  align-items: center;
}

.team-context-photo { min-height: 470px; border-radius: 24px 70px 24px 70px; overflow: hidden; box-shadow: var(--shadow-soft); }
.team-context-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-context-copy h2 { margin: 0 0 20px; font-family: var(--serif); font-size: clamp(36px, 4vw, 52px); font-weight: 500; letter-spacing: -.035em; line-height: 1.08; }
.team-context-copy p { margin: 0 0 18px; color: var(--ink-soft); }

.contact-layout { display: grid; grid-template-columns: .76fr 1.24fr; gap: 20px; }
.contact-card { padding: 34px; border: 1px solid var(--mist); border-radius: var(--radius); background: var(--white); }
.contact-card h2 { margin: 0 0 26px; font-family: var(--serif); font-size: 34px; font-weight: 500; }
.contact-list { display: grid; gap: 0; }
.contact-row { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 20px 0; border-top: 1px solid var(--mist); }
.contact-row:first-child { border-top: 0; padding-top: 0; }
.contact-row:last-child { padding-bottom: 0; }
.contact-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: var(--aqua-soft); color: var(--teal); }
.contact-row strong { display: block; margin-bottom: 4px; font-size: 14px; }
.contact-row a, .contact-row span { color: var(--ink-soft); text-decoration: none; }
.contact-row a:hover { color: var(--teal); }

.map-card { min-height: 555px; padding: 10px; border-radius: 24px 70px 24px 70px; background: var(--aqua-soft); overflow: hidden; }
.map-card iframe { width: 100%; height: 100%; min-height: 535px; border: 0; border-radius: 18px 62px 18px 62px; }

.visit-notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.visit-note { padding: 26px; border: 1px solid var(--mist); border-radius: 20px; background: var(--white); }
.visit-note span { color: var(--copper); font-family: var(--serif); font-size: 18px; }
.visit-note h3 { margin: 36px 0 8px; font-family: var(--serif); font-size: 23px; font-weight: 500; }
.visit-note p { margin: 0; color: var(--ink-soft); font-size: 15px; }

.site-footer { padding-top: 72px; background: var(--ink); color: var(--white); }
.footer-main { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 44px; padding-bottom: 60px; }
.brand-light { color: var(--white); }
.brand-light .brand-mark { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: var(--aqua); }
.brand-light .brand-copy small { color: rgba(255,255,255,.6); }
.footer-main > div:first-child p { margin: 22px 0 0; color: rgba(255,255,255,.58); }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-column strong { margin-bottom: 8px; font-size: 14px; }
.footer-column a { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.62); font-size: 14px; text-decoration: none; }
.footer-column a:hover { color: var(--aqua); }
.footer-column svg { width: 15px; height: 15px; }
.footer-bottom { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.45); font-size: 12px; }

dialog {
  width: min(720px, calc(100% - 30px));
  padding: 0;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(5,20,26,.3);
  color: var(--ink);
}
dialog::backdrop { background: rgba(5, 20, 26, .72); backdrop-filter: blur(4px); }
.dialog-close { position: absolute; z-index: 2; top: 14px; right: 14px; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--mist); border-radius: 50%; background: var(--white); cursor: pointer; }
.team-dialog-content { display: grid; grid-template-columns: 185px 1fr; min-height: 350px; }
.dialog-monogram { display: grid; place-items: center; background: linear-gradient(160deg, var(--aqua-soft), #bddfdd); color: var(--teal); font-family: var(--serif); font-size: 60px; }
.dialog-copy { padding: 52px 46px 44px; }
.dialog-copy h2 { margin: 0 0 16px; font-family: var(--serif); font-size: 34px; font-weight: 500; line-height: 1.1; }
.dialog-copy > p:not(.eyebrow) { color: var(--ink-soft); }

.gallery-dialog { width: min(1000px, calc(100% - 24px)); border-radius: 18px; background: #071a21; color: var(--white); }
.gallery-dialog img { width: 100%; max-height: 78vh; object-fit: contain; background: #071a21; }
.gallery-dialog figcaption { padding: 14px 20px; font-size: 14px; }
.gallery-dialog .dialog-close { border-color: rgba(255,255,255,.2); background: rgba(7,26,33,.82); color: var(--white); }

.quick-actions { display: none; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease var(--delay, 0ms), transform .55s ease var(--delay, 0ms); }
.js .reveal.revealed { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  :root { --shell: min(100% - 32px, 760px); }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .hero { padding-top: 20px; }
  .hero-grid { grid-template-columns: 1fr; gap: 8px; }
  .hero-copy { padding: 44px 0 20px; }
  .hero-visual { min-height: 540px; }
  .hero-photo { left: 0; }
  .photo-stamp { right: 12px; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-item { border-right: 0; border-bottom: 1px solid var(--mist); }
  .proof-item:last-child { border-bottom: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .path-grid { grid-template-columns: 1fr; }
  .path-step { min-height: 220px; }
  .team-preview-grid, .team-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .article-card { min-height: 220px; }
  .cta-panel { grid-template-columns: 1fr; padding: 44px; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .page-hero-aside { max-width: 560px; }
  .team-context { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .map-card { min-height: 440px; }
  .map-card iframe { min-height: 420px; }
  .footer-main { grid-template-columns: 1.3fr repeat(2, 1fr); }
  .footer-main > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  :root { --shell: min(100% - 24px, 560px); --radius: 20px; }
  body { padding-bottom: 68px; }
  .header-shell { min-height: 72px; }
  .mobile-menu { top: 72px; height: calc(100dvh - 72px); }
  .brand-mark { width: 42px; height: 42px; flex-basis: 42px; }
  .brand-copy strong { font-size: 18px; }
  .brand-copy small { font-size: 11px; }
  .hero { padding-bottom: 52px; }
  .hero::before { width: 360px; height: 360px; }
  .hero h1 { font-size: clamp(42px, 13vw, 62px); }
  .hero .lead { font-size: 18px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 420px; }
  .hero-photo { inset: 0; border-radius: 62px 14px 62px 14px; }
  .rating-card { left: 12px; bottom: 14px; padding: 15px 17px; }
  .photo-stamp { width: 92px; height: 92px; top: 16px; right: 12px; font-size: 10px; }
  .proof-strip { margin-bottom: 54px; }
  .proof-item { min-height: 88px; padding: 18px 12px; }
  .section { padding: 68px 0; }
  .section-heading { margin-bottom: 30px; }
  .section-heading h2 { font-size: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 280px; padding: 26px; }
  .service-card h3 { margin-top: 42px; font-size: 26px; }
  .team-card { min-height: 0; grid-template-columns: 1fr; }
  .team-monogram { min-height: 150px; place-items: center; }
  .team-card-copy { min-height: 285px; padding: 28px 24px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: 360px repeat(2, 230px); }
  .gallery-card:first-child { grid-row: auto; }
  .cta-panel { padding: 34px 24px; border-radius: 24px 8px 24px 8px; }
  .cta-actions { display: grid; grid-template-columns: 1fr; }
  .page-hero { padding: 52px 0 48px; }
  .page-hero h1 { font-size: 48px; }
  .page-hero-copy > p:not(.eyebrow) { font-size: 17px; }
  .team-context-photo { min-height: 330px; border-radius: 18px 46px 18px 46px; }
  .contact-card { padding: 26px 22px; }
  .map-card { min-height: 350px; border-radius: 18px 46px 18px 46px; }
  .map-card iframe { min-height: 330px; border-radius: 12px 39px 12px 39px; }
  .visit-notes { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-main > div:first-child { grid-column: auto; }
  .footer-bottom { min-height: 100px; align-items: flex-start; justify-content: center; flex-direction: column; padding-block: 20px; }
  .team-dialog-content { grid-template-columns: 1fr; }
  .dialog-monogram { min-height: 150px; }
  .dialog-copy { padding: 34px 24px 30px; }
  .quick-actions {
    position: fixed;
    z-index: 100;
    bottom: 0;
    inset-inline: 0;
    min-height: 68px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(11,38,48,.1);
    background: rgba(255,255,255,.96);
    box-shadow: 0 -8px 30px rgba(11,38,48,.08);
    backdrop-filter: blur(14px);
  }
  .quick-actions a { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--ink); font-size: 13px; font-weight: 760; text-decoration: none; }
  .quick-actions a + a { border-left: 1px solid var(--mist); }
  .quick-actions a[data-feature="booking"] { grid-column: 1 / -1; }
}

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

@media print {
  .site-header, .site-footer, .quick-actions, .hero-actions, .dialog-close { display: none !important; }
  body { padding: 0; color: #000; }
  .section, .page-hero { padding: 32px 0; }
}
