:root {
  --navy: #0a2d50;
  --navy-soft: #123f6b;
  --gold: #c7953e;
  --gold-dark: #a9782b;
  --ivory: #f7f1e8;
  --paper: #fffaf2;
  --warm: #efe4d4;
  --line: rgba(10, 45, 80, 0.12);
  --gold-line: rgba(199, 149, 62, 0.34);
  --muted: #5d6471;
  --shadow: 0 18px 54px rgba(54, 38, 18, 0.09);
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  background:
    linear-gradient(180deg, #fbf7ef 0, var(--ivory) 520px, #f8f1e7 100%);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
}

body::selection {
  color: #fff;
  background: var(--gold-dark);
}

img,
svg {
  display: block;
}

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

button {
  font: inherit;
}

[id] {
  scroll-margin-top: 104px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(220px, auto) 1fr auto;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  min-height: 88px;
  padding: 10px clamp(24px, 5vw, 76px);
  background: rgba(247, 241, 232, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.brand small,
.eyebrow {
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand small,
.brand strong {
  display: block;
}

.brand strong {
  margin-top: 4px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 38px);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.site-header nav a {
  position: relative;
  padding: 14px 0;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 7px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 180ms ease;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  width: 100%;
}

.header-actions,
.button-row,
.section-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.phone-link {
  color: var(--navy);
  font-weight: 900;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 11px;
}

.button-gold {
  color: #23170a;
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: inset 0 -1px 0 rgba(35, 23, 10, 0.16);
}

.button-gold:hover,
.button-gold:focus-visible {
  color: #fff;
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.button-navy {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.button-navy:hover,
.button-navy:focus-visible {
  background: var(--navy-soft);
}

.button-outline {
  color: var(--navy);
  background: rgba(255, 250, 242, 0.66);
  border-color: var(--gold-line);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--gold);
  background: #fff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.03;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(48px, 5.5vw, 82px);
  letter-spacing: 0.022em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 64px);
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
}

.eyebrow {
  margin: 0 0 18px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.72fr);
  grid-template-rows: 1fr auto;
  gap: 0 clamp(18px, 3vw, 54px);
  min-height: calc(100svh - 83px);
  padding: clamp(42px, 4.6vw, 70px) clamp(24px, 5vw, 76px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 22%, rgba(199, 149, 62, 0.08), transparent 30%),
    linear-gradient(115deg, rgba(255, 250, 242, 0.97) 0%, rgba(247, 241, 232, 0.96) 48%, rgba(239, 228, 212, 0.58) 100%),
    var(--ivory);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  top: 104px;
  left: clamp(24px, 5vw, 76px);
  width: 118px;
  height: 1px;
  background: var(--gold);
}

.hero::after {
  content: "";
  position: absolute;
  right: 6vw;
  bottom: 118px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(199, 149, 62, 0.16);
  transform: rotate(8deg);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 720px;
  padding-bottom: clamp(38px, 4vw, 66px);
}

.hero-content::after {
  content: "";
  display: block;
  width: min(360px, 70%);
  height: 1px;
  margin-top: 34px;
  background: linear-gradient(90deg, rgba(199, 149, 62, 0.56), transparent);
}

.hero-content h2 {
  max-width: 650px;
  margin-bottom: 38px;
  font-size: clamp(46px, 5vw, 77px);
  line-height: 1.04;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 44px;
  color: #2d3748;
  font-size: clamp(17px, 1.18vw, 20px);
}

.hero-content .button-row {
  gap: 14px;
}

.hero-content .button {
  min-height: 60px;
  padding-inline: 30px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  align-self: center;
  min-height: 510px;
  margin-left: clamp(-34px, -2vw, -14px);
  padding: 30px 0 58px 0;
}

.hero-visual::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 56px;
  z-index: 0;
  width: 76px;
  height: 64%;
  border-left: 1px solid rgba(199, 149, 62, 0.34);
  border-top: 1px solid rgba(199, 149, 62, 0.2);
  pointer-events: none;
}

.hero-visual figure {
  position: relative;
  z-index: 2;
  height: clamp(450px, 48vw, 620px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(199, 149, 62, 0.24);
  border-radius: 12px;
  background: rgba(255, 250, 242, 0.74);
  box-shadow: inset 0 0 0 1px rgba(199, 149, 62, 0.18), 0 20px 54px rgba(54, 38, 18, 0.07);
}

.hero-visual figure::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 250, 242, 0.52);
  border-radius: 8px 2px 8px 2px;
  pointer-events: none;
}

.hero-visual figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 241, 232, 0.16), transparent 28%),
    linear-gradient(180deg, transparent 62%, rgba(247, 241, 232, 0.18));
  pointer-events: none;
}

.hero-visual picture,
.hero-visual img {
  width: 100%;
  height: 100%;
}

.hero-visual img {
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(0.88) contrast(0.94) brightness(1.06);
}

.visual-frame {
  position: absolute;
  inset: 13px 18px 24px -24px;
  border: 1px solid var(--gold);
  border-radius: 12px 2px 12px 2px;
  opacity: 0.15;
}

.hero-info {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.76), rgba(255, 250, 242, 0.54));
  border-top: 1px solid rgba(6, 27, 51, 0.08);
  border-left: 0;
}

.hero-info article {
  min-height: 146px;
  padding: 34px clamp(22px, 3vw, 38px);
  border-right: 1px solid rgba(6, 27, 51, 0.055);
}

.hero-info article:first-child {
  padding-left: 0;
}

.hero-info article:last-child {
  border-right: 0;
}

.hero-info span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.hero-info strong,
.why-grid strong {
  display: block;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.15;
}

.hero-info p,
.why-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.52;
}

.services-section,
.why-section,
.booking-section,
.useful-section {
  padding: clamp(62px, 6.6vw, 92px) clamp(24px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
}

.services-section {
  background:
    radial-gradient(circle at 84% 10%, rgba(199, 149, 62, 0.07), transparent 26%),
    linear-gradient(180deg, rgba(255, 250, 242, 0.9), rgba(247, 241, 232, 1)),
    var(--ivory);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr);
  align-items: end;
  gap: 28px;
  margin-bottom: 12px;
}

.section-head h2 {
  max-width: 620px;
  margin-bottom: 0;
}

.service-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 1020px;
  margin: 0 0 50px auto;
}

.service-pills a {
  min-height: 32px;
  padding: 8px 13px;
  color: var(--navy);
  background: rgba(255, 250, 242, 0.7);
  border: 1px solid rgba(6, 27, 51, 0.1);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.service-pills a:first-child {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.service-card {
  position: relative;
  min-height: 286px;
  padding: clamp(46px, 4.2vw, 58px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(255, 250, 242, 0.62));
  border: 1px solid rgba(6, 27, 51, 0.1);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.service-card:nth-child(2),
.service-card:nth-child(5) {
  transform: translateY(12px);
}

.service-card:nth-child(2):hover,
.service-card:nth-child(2):focus-within,
.service-card:nth-child(5):hover,
.service-card:nth-child(5):focus-within {
  transform: translateY(8px);
}

.service-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-line);
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(199, 149, 62, 0.5), transparent 42%);
  opacity: 0.62;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-2px);
  background: rgba(255, 253, 248, 0.96);
  border-color: rgba(199, 149, 62, 0.52);
  box-shadow: 0 10px 28px rgba(54, 38, 18, 0.05);
}

.service-card svg {
  width: 32px;
  height: 32px;
  margin-bottom: 26px;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.12;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.16;
  color: #041b33;
}

.service-card p {
  max-width: 390px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.75;
}

.service-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-card.accent {
  background: linear-gradient(180deg, #fffdf8, rgba(239, 228, 212, 0.48));
  border-color: var(--gold-line);
}

.section-actions {
  justify-content: center;
  margin-top: 46px;
}

.section-actions .button-outline {
  background: rgba(255, 250, 242, 0.9);
  border-color: rgba(6, 27, 51, 0.14);
}

.section-actions .button-gold {
  min-width: 178px;
}

.why-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.52fr) minmax(0, 1fr);
  gap: clamp(58px, 8vw, 132px);
  align-items: center;
  padding-top: clamp(76px, 7.8vw, 112px);
  padding-bottom: clamp(76px, 7.8vw, 112px);
  background:
    radial-gradient(circle at 12% 18%, rgba(199, 149, 62, 0.11), transparent 30%),
    linear-gradient(105deg, #06172b 0%, #09233f 100%);
  color: #fff;
}

.why-section .eyebrow {
  color: #d6a960;
}

.why-copy {
  align-self: center;
  max-width: 560px;
}

.why-copy h2 {
  color: #fff;
  max-width: 560px;
  line-height: 1.08;
}

.why-copy p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.72);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(28px, 4vw, 58px);
  row-gap: 24px;
  background: transparent;
  border: 0;
}

.why-grid article {
  position: relative;
  min-height: 134px;
  padding: 30px 0 32px;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(199, 149, 62, 0.12);
  border-radius: 0;
}

.why-grid article:hover {
  border-top-color: rgba(199, 149, 62, 0.42);
}

.why-grid article:nth-child(7) {
  grid-column: 1 / -1;
  min-height: 96px;
}

.why-grid strong {
  position: relative;
  color: #fff;
  font-size: 24px;
  padding-left: 18px;
}

.why-grid strong::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.why-grid p {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15.5px;
  line-height: 1.66;
}

.booking-section {
  padding-top: clamp(78px, 8vw, 116px);
  padding-bottom: clamp(78px, 8vw, 116px);
  background:
    radial-gradient(circle at 88% 16%, rgba(199, 149, 62, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(247, 241, 232, 1), rgba(255, 250, 242, 0.86)),
    var(--ivory);
}

.booking-card {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 0.9fr) minmax(440px, 1.12fr);
  gap: 0;
  overflow: hidden;
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(6, 27, 51, 0.1);
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(54, 38, 18, 0.1);
}

.booking-card .eyebrow {
  margin-bottom: 18px;
}

.booking-card article {
  padding: clamp(74px, 6.5vw, 102px);
  border-right: 1px solid rgba(6, 27, 51, 0.1);
}

.booking-card article:last-child {
  border-right: 0;
}

.booking-card p {
  color: var(--muted);
  line-height: 1.62;
}

.booking-card h2 {
  font-size: clamp(40px, 3.55vw, 58px);
  line-height: 1.02;
}

.booking-card h3 {
  margin-bottom: 18px;
  color: #041b33;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.32;
}

.booking-cta .button {
  min-height: 64px;
  margin: 24px 0 20px;
  width: min(100%, 360px);
  box-shadow: 0 12px 28px rgba(6, 27, 51, 0.12);
}

.inline-phone {
  display: inline-flex;
  padding-top: 12px;
  border-top: 1px solid var(--gold-line);
  color: var(--gold-dark);
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.map-frame {
  position: relative;
  overflow: hidden;
  min-height: 444px;
  border: 1px solid rgba(6, 27, 51, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 23%, rgba(199, 149, 62, 0.16) 24%, transparent 25%),
    linear-gradient(0deg, transparent 31%, rgba(6, 27, 51, 0.1) 32%, transparent 33%),
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(239, 228, 212, 0.72));
}

.map-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(199, 149, 62, 0.16);
  border-radius: 6px;
  pointer-events: none;
}

.map-frame iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 444px;
}

.map-frame::after {
  content: "World Trade Center, Bucuresti";
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  max-width: calc(100% - 32px);
  padding: 8px 10px;
  color: var(--navy);
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid var(--gold-line);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}

.useful-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  gap: clamp(54px, 7vw, 118px);
  background: #fffaf2;
}

.useful-list {
  border-top: 1px solid rgba(6, 27, 51, 0.1);
}

.useful-list details {
  border-bottom: 1px solid rgba(6, 27, 51, 0.1);
  transition: background 180ms ease;
}

.useful-list details[open] {
  background: linear-gradient(90deg, rgba(199, 149, 62, 0.055), transparent 60%);
}

.useful-list summary {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 29px 52px 29px 22px;
  color: var(--navy);
  font-weight: 900;
  font-size: 15px;
  line-height: 1.35;
  list-style: none;
  transition: color 180ms ease, padding-left 180ms ease;
}

.useful-list summary:hover,
.useful-list summary:focus-visible {
  color: var(--gold-dark);
  padding-left: 8px;
}

.useful-list summary::-webkit-details-marker {
  display: none;
}

.useful-list summary::after {
  content: "+";
  position: absolute;
  top: 27px;
  right: 8px;
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

.useful-list details[open] summary::after {
  content: "-";
}

.useful-list p {
  max-width: 760px;
  margin: -7px 62px 30px 22px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.72;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
  margin: 0;
  padding: clamp(56px, 6vw, 84px) clamp(24px, 5vw, 76px);
  color: #fff;
  background:
    radial-gradient(circle at 86% 50%, rgba(199, 149, 62, 0.11), transparent 26%),
    linear-gradient(90deg, rgba(6, 27, 51, 0.98), rgba(8, 33, 59, 0.94)),
    var(--navy);
}

.cta-band h2 {
  position: relative;
  margin-bottom: 8px;
  color: #fff;
}

.cta-band .button {
  min-width: 210px;
  min-height: 54px;
}

.cta-band h2::before {
  content: "";
  display: block;
  width: 58px;
  height: 1px;
  margin-bottom: 18px;
  background: var(--gold);
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(300px, 1.35fr) repeat(3, minmax(170px, 0.8fr));
  gap: clamp(78px, 8vw, 136px);
  padding: clamp(70px, 7.2vw, 104px) clamp(24px, 5vw, 76px) 42px;
  color: rgba(255, 255, 255, 0.76);
  background:
    linear-gradient(180deg, #06172b 0%, #041120 100%);
  border-top: 1px solid var(--gold);
}

.site-footer::before {
  content: "";
  grid-column: 1 / -1;
  height: 1px;
  margin-bottom: 8px;
  background: linear-gradient(90deg, var(--gold), transparent 42%);
  opacity: 0.65;
}

.footer-brand img {
  width: 104px;
  height: 104px;
  margin-bottom: 36px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 50%;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 14px;
  color: #fff;
}

.site-footer h2 {
  max-width: 390px;
  font-size: 33px;
  line-height: 1.08;
}

.site-footer h3 {
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d9b36f;
}

.site-footer p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15.5px;
  line-height: 1.8;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15.5px;
  line-height: 1.72;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.site-footer .social-links .facebook-link {
  overflow: hidden;
  width: 40px;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  margin: 0;
  flex: 0 0 40px;
  background: url("../images/facebook-icon.png") center / 30px 30px no-repeat;
  font-size: 0;
}

.footer-bottom {
  grid-column: 1 / -1;
  margin: 36px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.44fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  padding: clamp(62px, 8vw, 112px) clamp(24px, 5vw, 76px);
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.98), rgba(247, 241, 232, 0.88)),
    url("../images/conclude-birou-interior.webp") right center / auto 118% no-repeat;
  border-bottom: 1px solid var(--line);
}

.subpage-hero h1 {
  font-size: clamp(54px, 8vw, 112px);
  letter-spacing: 0;
}

.subpage-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 21px);
}

.subpage-hero aside {
  padding: clamp(26px, 3vw, 40px);
  background: rgba(255, 250, 242, 0.82);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.subpage-hero aside strong {
  display: block;
  margin-bottom: 14px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.18;
}

.procedure-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(58px, 7vw, 94px) clamp(24px, 5vw, 76px);
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}

.procedure-layout article {
  padding: clamp(24px, 3vw, 36px);
  background: rgba(255, 250, 242, 0.78);
  border: 1px solid var(--line);
}

.procedure-layout p,
.procedure-layout li {
  color: var(--muted);
}

.procedure-layout ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.cost-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.cost-list p {
  margin: 0;
  padding: 18px;
  background: #fffaf2;
  border: 1px solid var(--line);
}

.cost-list strong {
  display: block;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
}

html.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 620ms ease, transform 620ms ease;
  animation: reveal-fallback 1ms linear 1800ms forwards;
}

html.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes reveal-fallback {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .site-header nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-visual {
    min-height: 0;
    padding-top: 0;
    margin-left: 0;
  }

  .service-grid,
  .booking-card,
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-column,
  .footer-brand {
    grid-column: 1 / -1;
  }

  .booking-card article:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .site-header nav {
    display: none;
  }

  .header-actions {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 46px;
  }

  .hero::before,
  .hero::after,
  .visual-frame,
  .hero-visual::before {
    display: none;
  }

  .hero-visual {
    padding: 0 0 34px;
  }

  .hero-visual figure {
    height: 360px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 320px;
    height: 320px;
  }

  .hero-info,
  .section-head,
  .why-section,
  .useful-section,
  .cta-band,
  .subpage-hero,
  .procedure-layout {
    grid-template-columns: 1fr;
  }

  .hero-info {
    margin-inline: calc(clamp(24px, 5vw, 76px) * -1);
    border-left: 0;
  }

  .hero-info article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-grid,
  .why-grid,
  .booking-card,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-card:nth-child(2),
  .service-card:nth-child(5),
  .service-card:nth-child(2):hover,
  .service-card:nth-child(2):focus-within,
  .service-card:nth-child(5):hover,
  .service-card:nth-child(5):focus-within {
    transform: none;
  }

  .booking-card article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .booking-card article:last-child {
    border-bottom: 0;
  }

  .cta-band .button {
    justify-self: start;
  }

  .service-pills {
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 14px;
  }

  .site-header,
  .services-section,
  .why-section,
  .booking-section,
  .useful-section,
  .cta-band,
  .site-footer,
  .subpage-hero,
  .procedure-layout {
    padding-left: 20px;
    padding-right: 20px;
  }

  .brand img {
    width: 62px;
    height: 62px;
  }

  .brand small {
    font-size: 9px;
  }

  .brand strong {
    font-size: 19px;
  }

  .header-actions,
  .button-row,
  .section-actions,
  .button {
    width: 100%;
  }

  .phone-link {
    width: 100%;
  }

  h1 {
    font-size: 54px;
  }

  .hero-content h2 {
    font-size: 40px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-visual figure {
    height: 300px;
  }

  .hero-content::after {
    width: 100%;
    margin-top: 24px;
  }

  .service-card {
    padding: 26px 22px;
  }

  .booking-card article {
    padding: 30px 22px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 300px;
    height: 300px;
  }

  .service-card {
    min-height: auto;
  }

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

/* About page */
.about-rebuild-hero {
  min-height: 0;
  padding-top: clamp(62px, 6.8vw, 96px);
  padding-bottom: clamp(54px, 6vw, 88px);
}

.about-rebuild-hero .hero-content h1 {
  max-width: 640px;
  margin-bottom: 26px;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.98;
}

.about-rebuild-hero .hero-content h2 {
  max-width: 560px;
  margin-bottom: 30px;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.05;
}

.about-rebuild-hero .hero-visual {
  min-height: 0;
  padding: 0;
  margin-left: 0;
}

.about-rebuild-hero .hero-visual figure {
  height: min(420px, 32vw);
  min-height: 300px;
  border: 1px solid rgba(184, 133, 46, 0.25);
  border-radius: 12px;
  box-shadow: none;
}

.about-overview,
.about-location {
  padding-top: clamp(72px, 7.2vw, 96px);
  padding-bottom: clamp(72px, 7.2vw, 96px);
}

.about-overview-copy p,
.about-location-copy p {
  max-width: 690px;
  font-size: 16px;
  line-height: 1.78;
}

.about-rebuild-why {
  padding-top: clamp(82px, 8.2vw, 110px);
  padding-bottom: clamp(82px, 8.2vw, 110px);
}

.about-rebuild-why .why-copy h2 {
  max-width: 500px;
}

.about-feature-list {
  row-gap: 0;
}

.about-feature-list article {
  min-height: 0;
  padding-top: 28px;
  padding-bottom: 28px;
}

.about-location-map .map-frame {
  min-height: 360px;
  border: 1px solid rgba(184, 133, 46, 0.22);
  border-radius: 12px;
  box-shadow: none;
}

.about-location-map .map-frame iframe {
  height: 360px;
}

@media (max-width: 1180px) and (min-width: 861px) {
  .about-rebuild-hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  }
}

@media (max-width: 860px) {
  .about-rebuild-hero .hero-visual figure {
    height: 360px;
  }

  .about-overview,
  .about-location {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .about-rebuild-hero {
    padding-top: 48px;
    padding-bottom: 46px;
  }

  .about-rebuild-hero .hero-content h1 {
    font-size: 48px;
  }

  .about-rebuild-hero .hero-visual figure {
    min-height: 0;
    height: 300px;
  }
}

/* About page header background. Higher specificity preserves the image treatment. */
.about-internal .about-page-header {
  background-color: #061b33;
  background-image:
    linear-gradient(90deg, rgba(4, 18, 35, 0.96) 0%, rgba(5, 24, 47, 0.91) 48%, rgba(5, 24, 47, 0.78) 100%),
    linear-gradient(180deg, rgba(4, 18, 35, 0.22), rgba(4, 18, 35, 0.48)),
    url("../images/conclude-birou-interior.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* About page header atmosphere */
.about-page-header {
  background-color: #061b33;
  background-image:
    linear-gradient(90deg, rgba(4, 18, 35, 0.96) 0%, rgba(5, 24, 47, 0.91) 48%, rgba(5, 24, 47, 0.78) 100%),
    linear-gradient(180deg, rgba(4, 18, 35, 0.22), rgba(4, 18, 35, 0.48)),
    url("../images/conclude-birou-interior.webp");
  background-position: center, center, center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* About page: final readability refinements */
.about-notaries-section {
  padding-top: clamp(88px, 8.5vw, 118px);
  padding-bottom: clamp(88px, 8.5vw, 118px);
}

.about-notaries-section .about-section-heading {
  max-width: 980px;
}

.about-scale-mark {
  margin-bottom: 18px;
  font-size: 36px;
}

.about-experience-lead {
  max-width: 900px;
  margin-top: 26px;
  margin-bottom: 22px !important;
  padding: 6px 0 6px 30px;
  border-left-width: 3px;
  font-size: clamp(24px, 2.5vw, 34px) !important;
  line-height: 1.32 !important;
}

.notary-profile-grid {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  gap: 20px;
}

.notary-profile {
  min-height: 0;
  padding: 34px 38px;
}

.notary-profile h3 {
  margin-bottom: 13px;
  font-size: 29px;
}

.notary-profile > p:not(.eyebrow) {
  max-width: 470px;
  font-size: 15.5px;
  line-height: 1.72;
}

.about-experience-conclusion {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(21px, 2.1vw, 29px);
}

.about-moment-grid article {
  min-height: 216px;
  background: rgba(255, 253, 248, 0.78);
}

.about-moment-grid h3 {
  font-size: 22px;
}

.about-moment-grid p,
.about-practical-summary p {
  font-size: 14.8px;
  line-height: 1.7;
}

.about-practical-summary {
  margin-bottom: 4px;
}

.about-practical-summary article {
  min-height: 194px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.about-location-map .map-frame {
  min-height: 380px;
  border-radius: 12px;
}

.about-location-map .map-frame iframe {
  height: 380px;
}

.about-internal .about-content-copy > p,
.about-internal .about-benefits-copy > p,
.about-internal .about-location-copy > p {
  line-height: 1.8;
}

@media (max-width: 560px) {
  .about-experience-lead {
    padding-left: 22px;
    font-size: 23px !important;
  }

  .notary-profile {
    padding: 30px 24px;
  }

  .about-location-map .map-frame,
  .about-location-map .map-frame iframe {
    min-height: 320px;
    height: 320px;
  }
}

/* About page: experience-focused content */
.about-notaries-section .about-section-heading {
  max-width: 930px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.about-notaries-section .about-section-heading > p:not(.eyebrow) {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.about-scale-mark {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-dark);
  font-size: 30px;
  line-height: 1;
}

.about-moments-section,
.about-practical-location {
  padding: clamp(76px, 7.5vw, 96px) clamp(24px, 5vw, 76px);
  background: #fffaf2;
  border-bottom: 1px solid var(--line);
}

.about-moments-section .about-section-heading {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.about-moment-grid,
.about-practical-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}

.about-moment-grid article,
.about-practical-summary article {
  min-height: 198px;
  padding: 26px clamp(18px, 2.3vw, 32px);
  border-right: 1px solid var(--line);
}

.about-moment-grid article:last-child,
.about-practical-summary article:last-child {
  border-right: 0;
}

.about-moment-grid span,
.about-practical-summary span {
  display: block;
  margin-bottom: 20px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.about-moment-grid h3,
.about-practical-summary h3,
.about-confidentiality-strip h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.2;
}

.about-moment-grid p,
.about-practical-summary p,
.about-confidentiality-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.about-confidentiality-strip {
  display: grid;
  grid-template-columns: minmax(200px, 0.6fr) minmax(240px, 1fr) minmax(240px, 0.9fr);
  gap: 28px;
  align-items: center;
  margin-top: 34px;
  padding: 24px 0 0;
  border-top: 1px solid var(--gold-line);
}

.about-confidentiality-strip h3 {
  margin: 0;
}

.about-confidentiality-strip span {
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.35;
}

.about-practical-location .about-section-heading {
  margin-bottom: 36px;
}

.about-office-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: center;
  margin-top: clamp(64px, 7vw, 92px);
  padding-top: clamp(56px, 6vw, 78px);
  border-top: 1px solid var(--gold-line);
}

.about-office-layout .about-location-copy {
  max-width: 520px;
}

@media (max-width: 860px) {
  .about-moment-grid,
  .about-practical-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-moment-grid article:nth-child(2),
  .about-practical-summary article:nth-child(2) {
    border-right: 0;
  }

  .about-moment-grid article:nth-child(-n + 2),
  .about-practical-summary article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .about-confidentiality-strip,
  .about-office-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .about-moments-section,
  .about-practical-location {
    padding-right: 20px;
    padding-left: 20px;
  }

  .about-moment-grid,
  .about-practical-summary {
    grid-template-columns: 1fr;
  }

  .about-moment-grid article,
  .about-moment-grid article:nth-child(2),
  .about-practical-summary article,
  .about-practical-summary article:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-moment-grid article:last-child,
  .about-practical-summary article:last-child {
    border-bottom: 0;
  }
}

/* About page: brochure content */
.about-experience-lead {
  max-width: 820px;
  margin-bottom: 16px !important;
  padding-left: 22px;
  color: var(--navy) !important;
  border-left: 2px solid var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2.1vw, 29px) !important;
  line-height: 1.34 !important;
}

.notary-profile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 158px;
}

.notary-profile::after {
  content: "";
  width: 48px;
  height: 1px;
  margin-top: 18px;
  background: var(--gold);
}

.about-access-section {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: clamp(54px, 7.5vw, 112px);
  align-items: start;
  padding-top: clamp(76px, 7.2vw, 94px);
  padding-bottom: clamp(76px, 7.2vw, 94px);
}

.about-access-column h2,
.about-empathy-column h2 {
  margin-bottom: 24px;
}

.about-practical-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(28px, 4vw, 54px);
}

.about-practical-list article {
  padding: 22px 0 24px;
  border-top: 1px solid var(--line);
}

.about-practical-list h3,
.about-confidentiality-note h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.2;
}

.about-practical-list p,
.about-empathy-column > p,
.about-confidentiality-note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.about-empathy-column {
  padding-left: clamp(28px, 4vw, 56px);
  border-left: 1px solid var(--gold-line);
}

.about-empathy-column > p {
  max-width: 430px;
  font-size: 16px;
  line-height: 1.72;
}

.about-moments-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.about-moments-list li {
  position: relative;
  padding-left: 18px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.about-moments-list li::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 6px;
  height: 6px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.about-confidentiality-note {
  padding: 22px 0;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}

.about-empathy-closing {
  margin-top: 22px !important;
  color: var(--gold-dark) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px !important;
  font-style: italic;
  line-height: 1.4 !important;
}

@media (max-width: 860px) {
  .about-access-section {
    grid-template-columns: 1fr;
  }

  .about-empathy-column {
    padding: 44px 0 0;
    border-top: 1px solid var(--gold-line);
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .about-practical-list,
  .about-moments-list {
    grid-template-columns: 1fr;
  }

  .about-experience-lead {
    padding-left: 18px;
  }
}

/* About page: experience and accessibility */
.about-notaries-section,
.about-access-section {
  padding: clamp(76px, 7.5vw, 96px) clamp(24px, 5vw, 76px);
  background: #fffaf2;
  border-bottom: 1px solid var(--line);
}

.about-section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.about-section-heading h2 {
  margin-bottom: 16px;
}

.about-section-heading > p:not(.eyebrow) {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

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

.notary-profile {
  min-height: 236px;
  padding: clamp(30px, 3.5vw, 44px);
  background: #fffdf8;
  border: 1px solid rgba(184, 133, 46, 0.22);
  border-radius: 10px;
}

.notary-profile h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.3vw, 32px);
  font-weight: 500;
  line-height: 1.12;
}

.notary-profile > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.about-experience-conclusion {
  max-width: 900px;
  margin: 38px 0 0;
  padding: 0 0 0 24px;
  color: var(--navy);
  border-left: 2px solid var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
}

.about-access-section {
  padding-top: clamp(70px, 6.8vw, 88px);
  padding-bottom: clamp(70px, 6.8vw, 88px);
}

.about-access-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}

.about-access-list article {
  min-height: 180px;
  padding: 26px clamp(18px, 2.4vw, 34px);
  border-right: 1px solid var(--line);
}

.about-access-list article:last-child {
  border-right: 0;
}

.about-access-list span {
  display: block;
  margin-bottom: 22px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.about-access-list h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.2;
}

.about-access-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

@media (max-width: 860px) {
  .notary-profile-grid,
  .about-access-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-access-list article:nth-child(2) {
    border-right: 0;
  }

  .about-access-list article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  .about-notaries-section,
  .about-access-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .notary-profile-grid,
  .about-access-list {
    grid-template-columns: 1fr;
  }

  .notary-profile {
    min-height: 0;
    padding: 30px 22px;
  }

  .about-access-list article,
  .about-access-list article:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-access-list article:last-child {
    border-bottom: 0;
  }
}

/* About page brochure details */
.about-experience-note {
  max-width: 700px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--gold-line);
}

.about-experience-note > p:not(.eyebrow) {
  margin-bottom: 22px;
}

.about-notaries {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
}

.about-notaries span {
  display: grid;
  gap: 3px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.2;
}

.about-notaries small {
  color: var(--gold-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 560px) {
  .about-notaries {
    display: grid;
    gap: 16px;
  }
}

/* About page */
.about-page-header {
  display: flex;
  align-items: center;
  min-height: 300px;
  padding: 72px clamp(24px, 5vw, 76px);
  color: #f8f1e8;
  background: #061b33;
  border-bottom: 1px solid rgba(199, 149, 62, 0.34);
}

.about-page-header-inner {
  width: 100%;
  max-width: 760px;
}

.about-breadcrumb {
  margin: 0 0 24px;
  color: rgba(248, 241, 232, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.about-breadcrumb span {
  margin: 0 8px;
  color: var(--gold);
}

.about-page-header .eyebrow {
  color: #d9b36f;
}

.about-page-header h1 {
  margin: 0 0 16px;
  color: #f8f1e8;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.05;
}

.about-page-lead {
  max-width: 620px;
  margin: 0;
  color: rgba(248, 241, 232, 0.78);
  font-size: 18px;
  line-height: 1.6;
}

.about-content-section,
.about-location-section {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.92fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: start;
  padding: 88px clamp(24px, 5vw, 76px);
  background: #fffaf2;
  border-bottom: 1px solid var(--line);
}

.about-content-copy {
  max-width: 760px;
}

.about-content-copy h2,
.about-location-copy h2 {
  margin-bottom: 28px;
}

.about-content-copy > p,
.about-location-copy > p {
  max-width: 690px;
  margin: 0 0 17px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.about-commitments,
.about-location-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.about-commitments li,
.about-location-list li {
  position: relative;
  padding-left: 22px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.about-commitments li::before,
.about-location-list li::before {
  content: "";
  position: absolute;
  top: 0.47em;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.about-booking-card {
  padding: 40px;
  background: #fffdf8;
  border: 1px solid rgba(184, 133, 46, 0.22);
  border-radius: 10px;
}

.about-booking-card h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 500;
  line-height: 1.18;
}

.about-booking-card > p:not(.eyebrow) {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.68;
}

.about-booking-card dl {
  margin: 0 0 28px;
}

.about-booking-card dl div {
  padding: 15px 0;
  border-top: 1px solid rgba(6, 27, 51, 0.1);
}

.about-booking-card dl div:last-child {
  border-bottom: 1px solid rgba(6, 27, 51, 0.1);
}

.about-booking-card dt {
  margin-bottom: 6px;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-booking-card dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.about-booking-card dd a {
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
}

.about-benefits-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(56px, 8vw, 112px);
  align-items: start;
  padding: clamp(88px, 8vw, 100px) clamp(24px, 5vw, 76px);
  color: #f8f1e8;
  background: #061b33;
}

.about-benefits-copy {
  max-width: 480px;
}

.about-benefits-copy .eyebrow {
  color: #d9b36f;
}

.about-benefits-copy h2 {
  margin-bottom: 20px;
  color: #f8f1e8;
  line-height: 1.08;
}

.about-benefits-copy > p {
  margin: 0;
  color: rgba(248, 241, 232, 0.74);
  font-size: 16px;
  line-height: 1.72;
}

.about-benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(34px, 5vw, 70px);
}

.about-benefit-list article {
  padding: 26px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.about-benefit-list article:nth-child(odd) {
  padding-right: 20px;
}

.about-benefit-list article:nth-child(even) {
  padding-left: 20px;
}

.about-benefit-list .about-benefit-wide {
  grid-column: 1 / -1;
  max-width: calc(50% - 17px);
  padding-left: 0;
}

.about-benefit-list h3 {
  display: flex;
  gap: 11px;
  align-items: center;
  margin: 0 0 10px;
  color: #f8f1e8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.about-benefit-list h3 span {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.about-benefit-list p {
  margin: 0;
  color: rgba(248, 241, 232, 0.72);
  font-size: 14.5px;
  line-height: 1.65;
}

.about-location-section {
  align-items: center;
}

.about-location-copy {
  max-width: 540px;
}

.about-location-map .map-frame {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(184, 133, 46, 0.22);
  border-radius: 12px;
  box-shadow: none;
}

.about-location-map .map-frame iframe {
  height: 360px;
}

.about-compact-cta {
  gap: 34px;
  padding-top: clamp(56px, 5.6vw, 72px);
  padding-bottom: clamp(56px, 5.6vw, 72px);
}

.about-compact-cta .button-row {
  justify-content: flex-end;
}

@media (max-width: 860px) {
  .about-page-header {
    min-height: 270px;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .about-content-section,
  .about-benefits-section,
  .about-location-section {
    grid-template-columns: 1fr;
  }

  .about-benefit-list .about-benefit-wide {
    max-width: none;
  }

  .about-compact-cta .button-row {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .about-page-header,
  .about-content-section,
  .about-benefits-section,
  .about-location-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-page-header h1 {
    font-size: 42px;
  }

  .about-page-lead {
    font-size: 16px;
  }

  .about-booking-card {
    padding: 30px 22px;
  }

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

  .about-benefit-list article:nth-child(odd),
  .about-benefit-list article:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
  }

  .about-benefit-list .about-benefit-wide {
    grid-column: auto;
  }

  .about-location-map .map-frame,
  .about-location-map .map-frame iframe {
    min-height: 320px;
    height: 320px;
  }
}

/* Rebuilt About page */
.about-rebuild-hero {
  min-height: auto;
  padding-bottom: 0;
}

.about-rebuild-hero .hero-content h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(52px, 6vw, 88px);
  line-height: 1.02;
}

.about-rebuild-hero .hero-content h2 {
  margin-bottom: 32px;
}

.about-shell {
  padding: clamp(72px, 8vw, 116px) clamp(24px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
}

.about-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(54px, 8vw, 132px);
  align-items: start;
  background: #fffaf2;
}

.about-overview-copy {
  max-width: 700px;
}

.about-overview-copy h2 {
  margin-bottom: 30px;
}

.about-overview-copy p {
  max-width: 660px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.about-practical-card {
  padding: clamp(34px, 4vw, 54px);
  background: rgba(255, 253, 248, 0.84);
  border: 1px solid var(--gold-line);
  border-radius: 8px;
}

.about-practical-card h3 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 500;
  line-height: 1.15;
}

.about-practical-card dl {
  margin: 0 0 30px;
}

.about-practical-card dl div {
  padding: 16px 0;
  border-top: 1px solid rgba(6, 27, 51, 0.1);
}

.about-practical-card dl div:last-child {
  border-bottom: 1px solid rgba(6, 27, 51, 0.1);
}

.about-practical-card dt {
  margin-bottom: 6px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-practical-card dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.about-practical-card dd a {
  color: var(--navy);
  font-weight: 900;
}

.about-rebuild-why {
  grid-template-columns: minmax(300px, 0.55fr) minmax(0, 1fr);
}

.about-rebuild-why .why-copy {
  max-width: 500px;
}

.about-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(28px, 4vw, 58px);
  row-gap: 20px;
}

.about-feature-list article {
  position: relative;
  min-height: 132px;
  padding: 28px 0 30px 20px;
  border-top: 1px solid rgba(199, 149, 62, 0.14);
}

.about-feature-list article:last-child {
  grid-column: 1 / -1;
}

.about-feature-list strong {
  position: relative;
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.about-feature-list strong::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0.45em;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.about-feature-list p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.68;
}

.about-location {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: clamp(54px, 8vw, 132px);
  align-items: center;
  background: #fffaf2;
}

.about-location-copy {
  max-width: 520px;
}

.about-location-copy p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.about-location-copy ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-location-copy li {
  position: relative;
  padding-left: 22px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.about-location-copy li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.about-location-map .map-frame {
  min-height: 360px;
  border-radius: 10px;
}

.about-location-map .map-frame iframe {
  height: 360px;
}

@media (max-width: 860px) {
  .about-overview,
  .about-rebuild-why,
  .about-location {
    grid-template-columns: 1fr;
  }

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

  .about-feature-list article:last-child {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .about-shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-rebuild-hero .hero-content h1 {
    font-size: 48px;
  }

  .about-practical-card {
    padding: 30px 22px;
  }

  .about-location-map .map-frame,
  .about-location-map .map-frame iframe {
    min-height: 300px;
    height: 300px;
  }
}

/* About page composition uses the existing brochure system. */
.about-hero {
  min-height: auto;
  padding-bottom: 0;
}

.about-hero .hero-content h1 {
  font-size: clamp(48px, 5.3vw, 78px);
  line-height: 1.02;
}

.about-hero .hero-text {
  max-width: 500px;
}

.about-shell {
  padding: clamp(72px, 8vw, 116px) clamp(24px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(54px, 8vw, 132px);
  align-items: start;
  background: #fffaf2;
}

.about-copy {
  max-width: 700px;
}

.about-copy h2 {
  margin-bottom: 30px;
}

.about-copy p {
  max-width: 650px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.about-contact-card {
  padding: clamp(34px, 4vw, 54px);
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--gold-line);
  border-radius: 8px;
}

.about-contact-card h3 {
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.18;
}

.about-contact-card dl {
  margin: 0 0 30px;
}

.about-contact-card dl div {
  padding: 16px 0;
  border-top: 1px solid rgba(6, 27, 51, 0.1);
}

.about-contact-card dl div:last-child {
  border-bottom: 1px solid rgba(6, 27, 51, 0.1);
}

.about-contact-card dt {
  margin-bottom: 6px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-contact-card dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.about-contact-card dd a {
  color: var(--navy);
  font-weight: 900;
}

.about-values {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.9), rgba(247, 241, 232, 1));
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-values-grid .service-card {
  min-height: 232px;
  transform: none;
}

.about-values-grid .service-card:hover,
.about-values-grid .service-card:focus-within {
  transform: translateY(-2px);
}

.about-marker {
  display: block;
  margin-bottom: 28px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.about-experience {
  background: #fffaf2;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}

.about-stats article {
  min-height: 170px;
  padding: 28px clamp(20px, 3vw, 40px);
  border-right: 1px solid var(--line);
}

.about-stats article:last-child {
  border-right: 0;
}

.about-stats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.2vw, 62px);
  font-weight: 500;
  line-height: 1;
}

.about-stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-quote {
  max-width: 850px;
  margin: 56px auto 0;
  padding: 0 0 0 28px;
  color: var(--navy);
  border-left: 2px solid var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.25;
}

.about-meaning {
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
}

.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(28px, 4vw, 58px);
  row-gap: 26px;
}

.about-feature-grid article {
  padding: 28px 0 30px 20px;
  border-top: 1px solid rgba(199, 149, 62, 0.2);
}

.about-feature-grid strong {
  position: relative;
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.25;
}

.about-feature-grid strong::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0.45em;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.about-feature-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14.5px;
  line-height: 1.68;
}

.about-office {
  background: #fffaf2;
}

.office-gallery {
  display: grid;
  grid-template-columns: 1.18fr 0.92fr 0.92fr;
  gap: 16px;
}

.office-gallery figure {
  height: clamp(240px, 28vw, 390px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(199, 149, 62, 0.24);
  border-radius: 10px;
  background: var(--ivory);
}

.office-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  filter: saturate(0.88) contrast(0.94) brightness(1.04);
}

.office-gallery .office-crop-center { object-position: center center; }
.office-gallery .office-crop-right { object-position: right center; }

.about-cta .button-row {
  justify-content: flex-end;
}

.button-outline-light {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.46);
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  color: var(--navy);
  background: #fffaf2;
  border-color: #fffaf2;
}

@media (max-width: 860px) {
  .about-intro,
  .about-meaning {
    grid-template-columns: 1fr;
  }

  .about-values-grid,
  .about-stats,
  .office-gallery {
    grid-template-columns: 1fr;
  }

  .about-stats article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-stats article:last-child {
    border-bottom: 0;
  }

  .office-gallery figure {
    height: 300px;
  }

  .about-cta .button-row {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .about-shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-hero .hero-content h1 {
    font-size: 46px;
  }

  .about-feature-grid {
    grid-template-columns: 1fr;
  }

  .about-contact-card {
    padding: 30px 22px;
  }
}

/* About page final overrides */
.about-rebuild-hero {
  min-height: 0;
  padding-top: clamp(62px, 6.8vw, 96px);
  padding-bottom: clamp(54px, 6vw, 88px);
}

.about-rebuild-hero .hero-content h1 {
  max-width: 640px;
  margin-bottom: 26px;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.98;
}

.about-rebuild-hero .hero-content h2 {
  max-width: 560px;
  margin-bottom: 30px;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.05;
}

.about-rebuild-hero .hero-visual {
  min-height: 0;
  padding: 0;
  margin-left: 0;
}

.about-rebuild-hero .hero-visual figure {
  height: min(420px, 32vw);
  min-height: 300px;
  border: 1px solid rgba(184, 133, 46, 0.25);
  border-radius: 12px;
  box-shadow: none;
}

.about-overview,
.about-location {
  padding-top: clamp(72px, 7.2vw, 96px);
  padding-bottom: clamp(72px, 7.2vw, 96px);
}

.about-overview-copy p,
.about-location-copy p {
  font-size: 16px;
  line-height: 1.78;
}

.about-rebuild-why {
  padding-top: clamp(82px, 8.2vw, 110px);
  padding-bottom: clamp(82px, 8.2vw, 110px);
}

.about-feature-list {
  row-gap: 0;
}

.about-feature-list article {
  min-height: 0;
  padding-top: 28px;
  padding-bottom: 28px;
}

.about-location-map .map-frame {
  min-height: 360px;
  border: 1px solid rgba(184, 133, 46, 0.22);
  border-radius: 12px;
  box-shadow: none;
}

.about-location-map .map-frame iframe {
  height: 360px;
}

@media (max-width: 1180px) and (min-width: 861px) {
  .about-rebuild-hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  }
}

@media (max-width: 860px) {
  .about-rebuild-hero .hero-visual figure {
    height: 360px;
  }

  .about-overview,
  .about-location {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .about-rebuild-hero {
    padding-top: 48px;
    padding-bottom: 46px;
  }

  .about-rebuild-hero .hero-content h1 {
    font-size: 48px;
  }

  .about-rebuild-hero .hero-visual figure {
    min-height: 0;
    height: 300px;
  }
}

/* Homepage contrast and depth refinement */
.home-page .hero{
  background:
    radial-gradient(circle at 76% 18%,rgba(199,149,62,.16),transparent 27%),
    linear-gradient(112deg,#fffaf2 0%,#f6ede1 52%,#eadbc6 100%);
}
.home-page .hero::before{width:158px;height:2px;background:linear-gradient(90deg,var(--gold),rgba(199,149,62,.12))}
.home-page .hero-content h1{color:#041b33;text-shadow:0 1px 0 rgba(255,255,255,.5)}
.home-page .hero-content h2{color:#071f39}
.home-page .hero-visual figure{border-color:rgba(199,149,62,.48);box-shadow:0 28px 64px rgba(38,28,16,.16),inset 0 0 0 1px rgba(255,250,242,.45)}
.home-page .hero-visual figure::after{background:linear-gradient(90deg,rgba(6,27,51,.08),transparent 28%),linear-gradient(180deg,transparent 70%,rgba(6,27,51,.12))}
.home-page .hero-visual img{filter:saturate(.98) contrast(1.04) brightness(1.01);transition:transform 700ms cubic-bezier(.2,.7,.2,1),filter 300ms ease}
.home-page .hero-visual figure:hover img{transform:scale(1.025);filter:saturate(1.02) contrast(1.06)}
.home-page .visual-frame{opacity:.42;border-color:#b77f25}
.home-page .hero-info{background:#fffdf9;border-top-color:rgba(199,149,62,.3);box-shadow:0 -10px 26px rgba(54,38,18,.035)}
.home-page .hero-info article{border-right-color:rgba(199,149,62,.18)}
.home-page .services-section{background:linear-gradient(180deg,#f1e8dc 0%,#f8f2e9 100%)}
.home-page .section-head{position:relative;padding-top:18px}
.home-page .section-head::before{content:"";position:absolute;top:0;left:calc(28% + 28px);width:76px;height:2px;background:var(--gold)}
.home-page .service-pills a{background:#fffdf9;border-color:rgba(6,27,51,.16);box-shadow:0 4px 12px rgba(54,38,18,.035)}
.home-page .service-pills a:first-child{background:var(--navy);border-color:var(--navy);box-shadow:none}
.home-page .service-card{min-height:300px;padding:clamp(42px,3.8vw,54px);background:#fffdf9;border-color:rgba(6,27,51,.15);box-shadow:0 12px 30px rgba(54,38,18,.07)}
.home-page .service-card::before{left:32px;width:72px;height:3px;background:var(--gold);opacity:1}
.home-page .service-card::after{right:22px;bottom:22px;width:42px;height:42px;background:transparent;border-right:1px solid rgba(199,149,62,.24);border-bottom:1px solid rgba(199,149,62,.24)}
.home-page .service-card svg{box-sizing:content-box;width:25px;height:25px;margin-bottom:28px;padding:11px;color:#ad7926;background:#f7ecd8;border:1px solid rgba(199,149,62,.26);border-radius:50%;transition:transform 200ms ease,background-color 200ms ease}
.home-page .service-card h3{font-size:28px}
.home-page .service-card p{color:#586271;font-size:15px}
.home-page .service-card a{margin-top:14px;color:#9b6818}
.home-page .service-card:hover,.home-page .service-card:focus-within{background:#fff;border-color:rgba(199,149,62,.7);box-shadow:0 18px 42px rgba(54,38,18,.11)}
.home-page .service-card:hover svg,.home-page .service-card:focus-within svg{transform:translateY(-2px) rotate(-3deg);background:#f2dfbd}
.home-page .service-card.accent{color:#fff;background:linear-gradient(145deg,#061b33,#0a2b4b);border-color:rgba(199,149,62,.72);box-shadow:0 18px 40px rgba(6,27,51,.18)}
.home-page .service-card.accent::before{background:linear-gradient(90deg,#d9aa58,rgba(217,170,88,.18))}
.home-page .service-card.accent::after{border-color:rgba(217,170,88,.34)}
.home-page .service-card.accent svg{color:#e0b665;background:rgba(199,149,62,.12);border-color:rgba(217,170,88,.42)}
.home-page .service-card.accent h3{color:#fff}
.home-page .service-card.accent p{color:rgba(255,255,255,.76)}
.home-page .service-card.accent a{color:#e3b963}
.home-page .service-card.accent:hover,.home-page .service-card.accent:focus-within{background:linear-gradient(145deg,#08213c,#0d355b);border-color:#d7aa5c}
.home-page .section-actions .button-outline{background:#fff;border-color:rgba(6,27,51,.2)}
.home-page .why-grid article{transition:border-color 180ms ease,transform 180ms ease}
.home-page .why-grid article:hover{transform:translateY(-2px);border-top-color:rgba(217,170,88,.58)}
.home-page .booking-section{background:linear-gradient(180deg,#fffaf2 0%,#efe4d4 100%)}
.home-page .booking-card{background:#fff;border-color:rgba(199,149,62,.42);box-shadow:0 28px 64px rgba(54,38,18,.14)}
.home-page .booking-card article{padding:clamp(48px,5vw,72px)}
.home-page .booking-card .booking-cta{position:relative;color:#fff;background:linear-gradient(145deg,#061b33,#0a2b4b);border-right-color:rgba(199,149,62,.36)}
.home-page .booking-card .booking-cta::after{content:"";position:absolute;right:0;bottom:0;width:86px;height:86px;border-right:1px solid rgba(217,170,88,.28);border-bottom:1px solid rgba(217,170,88,.28)}
.home-page .booking-cta .eyebrow{color:#d7aa5c}
.home-page .booking-cta h2{color:#fff}
.home-page .booking-cta>p:not(.eyebrow){color:rgba(255,255,255,.74)}
.home-page .booking-cta .button{color:#061b33;background:#d3a34d;border-color:#d3a34d;box-shadow:0 12px 28px rgba(0,0,0,.18)}
.home-page .booking-cta .button:hover{background:#e0b561;border-color:#e0b561}
.home-page .booking-cta .inline-phone{position:relative;z-index:1;color:#e2b65f;border-top-color:rgba(217,170,88,.38)}
.home-page .booking-card>article:nth-child(2){background:#fffdf9}
.home-page .booking-card .map-column{padding:38px;background:#f3eadf}
.home-page .map-frame{border-color:rgba(199,149,62,.44);box-shadow:0 12px 28px rgba(54,38,18,.09)}
.home-page .useful-section{background:linear-gradient(180deg,#f2e9dd,#f8f2e9)}
.home-page .useful-section>div:first-child{padding-top:14px;border-top:2px solid var(--gold)}
.home-page .useful-list{display:grid;gap:10px;border-top:0}
.home-page .useful-list details{background:#fffdf9;border:1px solid rgba(6,27,51,.12);border-radius:6px;transition:background-color 180ms ease,border-color 180ms ease}
.home-page .useful-list details[open]{background:#fff;border-color:rgba(199,149,62,.58);box-shadow:0 10px 24px rgba(54,38,18,.055)}
.home-page .useful-list summary{padding:25px 58px 25px 22px}
.home-page .useful-list summary:hover,.home-page .useful-list summary:focus-visible{padding-left:22px}
.home-page .useful-list summary::after{top:23px;right:20px}
.home-page .useful-list p{margin:0 62px 28px 22px;color:#56606d;font-size:15px}
.home-page .cta-band{border-top:1px solid rgba(217,170,88,.5);border-bottom:1px solid rgba(217,170,88,.36)}
@media(max-width:860px){.home-page .section-head::before{left:0}.home-page .booking-card .booking-cta{border-right:0;border-bottom-color:rgba(199,149,62,.36)}.home-page .service-card:hover svg,.home-page .service-card:focus-within svg{transform:none}}
@media(max-width:560px){.home-page .service-card{min-height:0;padding:30px 24px}.home-page .service-card::before{left:24px}.home-page .booking-card article{padding:38px 26px}.home-page .booking-card .map-column{padding:24px}.home-page .useful-list p{margin-right:22px}}
@media(prefers-reduced-motion:reduce){.home-page .hero-visual img,.home-page .service-card svg,.home-page .why-grid article{transition:none}.home-page .hero-visual figure:hover img,.home-page .service-card:hover svg,.home-page .why-grid article:hover{transform:none}}
/* Global design system refinement */
.site-header{min-height:82px;padding-top:8px;padding-bottom:8px;background:rgba(255,250,242,.94);border-bottom-color:rgba(6,27,51,.1);transition:min-height 180ms ease,background-color 180ms ease,box-shadow 180ms ease}
.site-header.is-scrolled{min-height:74px;background:rgba(255,250,242,.97);box-shadow:0 10px 30px rgba(6,27,51,.08)}
.brand{min-width:0}
.brand img{width:62px;height:62px;padding:2px;background:#fffaf2;border:1px solid rgba(199,149,62,.28);border-radius:50%;object-fit:cover;filter:drop-shadow(0 4px 10px rgba(54,38,18,.08))}
.brand small{font-size:9.5px;letter-spacing:.17em}
.brand strong{font-size:20px;letter-spacing:.07em}
.site-header nav a{transition:color 180ms ease}
.site-header nav a[aria-current="page"],.site-header nav a:hover,.site-header nav a:focus-visible{color:var(--gold-dark)}
.site-header nav a[aria-current="page"]::after{width:100%}
.phone-link{position:relative;padding-left:13px;font-size:13px;letter-spacing:.02em}
.phone-link::before{content:"";position:absolute;top:50%;left:0;width:5px;height:5px;background:var(--gold);border-radius:50%;transform:translateY(-50%)}
.button{border-radius:4px;letter-spacing:.1em;box-shadow:0 8px 18px rgba(6,27,51,.035)}
.button-gold{box-shadow:inset 0 -1px 0 rgba(35,23,10,.16),0 8px 18px rgba(139,92,26,.1)}
.button:focus-visible,.site-header a:focus-visible,.nav-toggle:focus-visible,.site-footer a:focus-visible{outline:2px solid var(--gold);outline-offset:4px}
.nav-toggle{display:none;position:relative;width:46px;height:46px;padding:0;background:#fffdf9;border:1px solid rgba(6,27,51,.16);border-radius:4px;cursor:pointer}
.nav-toggle span{position:absolute;left:13px;width:19px;height:1px;background:var(--navy);transition:top 180ms ease,transform 180ms ease,opacity 180ms ease}
.nav-toggle span:nth-child(1){top:15px}
.nav-toggle span:nth-child(2){top:22px}
.nav-toggle span:nth-child(3){top:29px}
.site-header.nav-open .nav-toggle span:nth-child(1){top:22px;transform:rotate(45deg)}
.site-header.nav-open .nav-toggle span:nth-child(2){opacity:0}
.site-header.nav-open .nav-toggle span:nth-child(3){top:22px;transform:rotate(-45deg)}
.site-footer{grid-template-columns:minmax(280px,1.2fr) repeat(3,minmax(150px,.72fr));gap:clamp(38px,5vw,76px);padding-top:clamp(64px,6vw,84px);background:radial-gradient(circle at 9% 16%,rgba(199,149,62,.09),transparent 24%),linear-gradient(180deg,#06172b 0%,#041120 100%)}
.site-footer::before{margin-bottom:0}
.footer-brand img{width:86px;height:86px;margin-bottom:24px;padding:2px;border:1px solid rgba(199,149,62,.38)}
.site-footer h2{max-width:340px;font-size:28px}
.site-footer h3{margin-bottom:16px;font-size:10.5px}
.site-footer p{font-size:14.5px;line-height:1.7}
.site-footer a,.site-footer span{margin-bottom:9px;font-size:14px;line-height:1.62}
.site-footer a{width:max-content;max-width:100%;transition:color 180ms ease,transform 180ms ease}
.site-footer a:hover,.site-footer a:focus-visible{transform:translateX(3px)}
.social-links a:hover,.social-links a:focus-visible{transform:translateY(-2px)}
.footer-bottom{margin-top:24px;padding-top:22px;font-size:12px}
@media(max-width:1180px){.site-footer{gap:46px}}
@media(max-width:860px){.site-header{grid-template-columns:minmax(0,1fr) auto;gap:10px 16px;min-height:74px;padding:8px 20px}.site-header .brand{grid-column:1;grid-row:1}.nav-toggle{display:block;grid-column:2;grid-row:1}.site-header nav{display:none;order:3;grid-column:1/-1;margin:2px -20px 0;padding:18px 20px 12px;background:linear-gradient(145deg,#061b33,#082844);border-top:1px solid rgba(199,149,62,.5);box-shadow:0 18px 34px rgba(6,27,51,.16)}.site-header.nav-open nav{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:2px 24px}.site-header nav a{min-height:46px;padding:13px 0;color:rgba(255,255,255,.84);border-bottom:1px solid rgba(255,255,255,.08)}.site-header nav a::after{bottom:8px}.site-header nav a[aria-current="page"],.site-header nav a:hover,.site-header nav a:focus-visible{color:#e0b561}.site-header .header-actions{display:none;order:4;grid-column:1/-1;margin:-1px -20px -8px;padding:8px 20px 20px;background:#082844}.site-header.nav-open .header-actions{display:flex}.site-header .header-actions .phone-link{color:#fff}.site-header .brand img{width:56px;height:56px}.site-header .brand small{font-size:8.5px}.site-header .brand strong{font-size:18px}.site-footer{padding-top:58px}.footer-brand img{width:78px;height:78px}}
@media(max-width:560px){.site-header.nav-open nav{grid-template-columns:1fr}.site-header .header-actions{align-items:stretch;flex-direction:column}.site-header .header-actions .phone-link{width:auto}.site-header .header-actions .button{width:100%}.site-footer{gap:34px;padding-top:52px}.site-footer h2{font-size:26px}.site-footer::before{margin-bottom:2px}}
@media(prefers-reduced-motion:reduce){.site-header,.nav-toggle span,.site-footer a{transition:none}.site-footer a:hover,.site-footer a:focus-visible{transform:none}}
/* Homepage hero info alignment fix */
.home-page .hero-info article:first-child{padding-left:clamp(22px,3vw,38px)}
/* Real photography integration */
.home-page .hero-visual img{object-position:50% 58%}

/* Homepage hero viewport fit */
@media (min-width: 861px) {
  .home-page .hero {
    min-height: calc(100svh - 83px);
    padding-top: clamp(40px, 4.2vw, 64px);
  }

  .home-page .hero-content {
    max-width: 720px;
    padding-bottom: clamp(34px, 3.6vw, 54px);
  }

  .home-page .hero-content h1 {
    margin-bottom: 12px;
    font-size: clamp(48px, 5.3vw, 78px);
  }

  .home-page .hero-content h2 {
    max-width: 650px;
    margin-bottom: 34px;
    font-size: clamp(44px, 4.8vw, 72px);
    line-height: 1.03;
  }

  .home-page .hero-text {
    max-width: 560px;
    margin-bottom: 38px;
    font-size: clamp(17px, 1.12vw, 19px);
  }

  .home-page .hero-content .button {
    min-height: 56px;
    padding-inline: 28px;
  }

  .home-page .hero-content::after {
    margin-top: 30px;
  }

  .home-page .hero-visual {
    min-height: 490px;
    padding: 26px 0 48px;
  }

  .home-page .hero-visual figure {
    height: clamp(450px, 46vw, 590px);
  }

  .home-page .hero-info {
    margin-top: 12px;
  }

  .home-page .hero-info article {
    min-height: 132px;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .home-page .hero-info strong {
    font-size: 22px;
  }
}

@media (min-width: 861px) and (max-height: 850px) {
  .home-page .hero-content h1 {
    font-size: clamp(48px, 4.8vw, 72px);
  }

  .home-page .hero-content h2 {
    margin-bottom: 28px;
    font-size: clamp(42px, 4.3vw, 66px);
  }

  .home-page .hero-text {
    margin-bottom: 30px;
  }

  .home-page .hero-visual figure {
    height: clamp(420px, 40vw, 540px);
  }
}

/* Homepage hero navy information band */
.home-page .hero-info {
  background: linear-gradient(112deg, #061b33 0%, #082844 62%, #0b3153 100%);
  border-top: 1px solid rgba(224, 181, 97, 0.72);
  box-shadow: 0 -10px 28px rgba(6, 27, 51, 0.1);
}

.home-page .hero-info article {
  border-right-color: rgba(224, 181, 97, 0.2);
  border-bottom-color: rgba(224, 181, 97, 0.16);
}

.home-page .hero-info span {
  color: #e0b561;
}

.home-page .hero-info strong {
  color: #fffaf2;
}

.home-page .hero-info p {
  color: rgba(255, 250, 242, 0.7);
}
/* Homepage eyebrow anchored gold line */
.home-page .hero::before {
  display: none;
}

.home-page .hero-content > .eyebrow {
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 16px;
}

.home-page .hero-content > .eyebrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 118px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(199, 149, 62, 0.16));
}
/* Homepage linked service pills */
.home-page .service-pills a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.home-page .service-pills a:hover,
.home-page .service-pills a:focus-visible {
  border-color: var(--gold);
  transform: translateY(-1px);
}