@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Lora:wght@400;500;600&display=swap");

:root {
  --navy: #141414;
  --navy-deep: #070707;
  --navy-soft: #242424;
  --gold: #d6b36a;
  --gold-light: #f1dfb8;
  --ivory: #fff;
  --paper: #fff;
  --ink: #171717;
  --muted: #606060;
  --line: rgba(0, 0, 0, 0.16);
  --white-line: rgba(255, 255, 255, 0.18);
  --serif: "Lora", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.16);
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-7: 56px;
  --space-8: 64px;
  --space-10: 80px;
  --space-12: 96px;
  --section-space: clamp(88px, 8vw, 120px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.14;
}

p {
  line-height: 1.75;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  transform: translateY(-150%);
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 600;
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(7, 7, 7, 0.88);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.scrolled {
  background: rgba(7, 7, 7, 0.97);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.nav-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #fff;
}

.brand::before,
.footer-brand::before {
  width: 1px;
  height: 36px;
  flex: 0 0 auto;
  background: var(--gold);
  content: "";
}

.brand-copy {
  display: grid;
  line-height: 1.3;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}

.brand-copy small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 29px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 500;
}

.primary-nav a {
  transition: color 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--gold-light);
}

.primary-nav .nav-cta {
  padding: 12px 18px;
  border: 1px solid rgba(214, 179, 106, 0.55);
  color: var(--gold-light);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: var(--navy-soft);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: var(--navy-deep);
  color: #fff;
}

.hero::before {
  position: absolute;
  top: 0;
  right: -12%;
  width: 62%;
  height: 100%;
  border-left: 1px solid rgba(214, 179, 106, 0.16);
  background:
    radial-gradient(circle at 45% 25%, rgba(214, 179, 106, 0.11), transparent 38%),
    linear-gradient(135deg, transparent 34%, rgba(255, 255, 255, 0.025) 34%);
  content: "";
  transform: skewX(-8deg);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.09'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(370px, 0.72fr);
  align-items: center;
  gap: var(--space-8);
  padding-block: var(--space-4) var(--space-3);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin: 0 0 var(--space-2);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.eyebrow-dark {
  color: #7b653d;
}

.hero h1,
.section-heading h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(52px, 5.6vw, 82px);
}

.hero h1 span {
  display: block;
  color: var(--gold);
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
}

.hero-role {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.065em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-role span {
  margin-inline: 8px;
  color: var(--gold);
}

.hero-intro {
  max-width: 580px;
  margin: var(--space-3) 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: var(--space-4);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.025em;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.button-gold {
  background: #1f9d62;
  color: #fff;
  box-shadow: 0 16px 36px rgba(31, 157, 98, 0.2);
}

.button-gold:hover {
  background: #178553;
}

.text-link {
  padding-block: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.33);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.text-link span {
  margin-left: 6px;
  color: var(--gold);
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: var(--space-4);
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

.trust-row .stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.trust-row strong {
  color: #fff;
  font-size: 14px;
}

.hero-portrait {
  position: relative;
  display: grid;
  gap: 0;
}

.portrait-frame {
  position: relative;
  height: 460px;
  border: 1px solid rgba(214, 179, 106, 0.35);
  background: #1c1c1c;
  box-shadow: var(--shadow);
}

.portrait-frame::before,
.portrait-frame::after {
  position: absolute;
  z-index: -1;
  width: 86px;
  height: 86px;
  content: "";
}

.portrait-frame::before {
  top: -18px;
  right: -18px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}

.portrait-frame::after {
  bottom: -18px;
  left: -18px;
  border-bottom: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.portrait-frame > img,
.about-image-frame > img {
  width: 100%;
  height: 100%;
}

.portrait-frame > img {
  padding: 18px 10px 0;
  object-fit: contain;
  object-position: center bottom;
}

.about-image-frame > img {
  object-fit: cover;
  object-position: center;
}

.portrait-caption {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding: 12px 18px;
  background: var(--gold);
  color: var(--navy-deep);
}

.portrait-caption span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.portrait-caption p {
  margin: 0;
  font-family: var(--serif);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
}

.hero-ribbon {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--white-line);
  background: rgba(0, 0, 0, 0.78);
}

.ribbon-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.ribbon-inner i {
  width: 4px;
  height: 4px;
  transform: rotate(45deg);
  background: var(--gold);
}

.section {
  padding-block: var(--section-space);
}

.section-heading {
  min-width: 0;
}

.section-heading h2,
.contact h2 {
  max-width: 760px;
  color: var(--navy-deep);
  font-size: clamp(38px, 3.8vw, 56px);
  text-wrap: balance;
}

.about {
  background: var(--ivory);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
}

.about-heading {
  padding: 0 var(--space-6) var(--space-6) 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-heading h2 {
  max-width: none;
  font-size: clamp(27px, 3.2vw, 48px);
}

.about-heading h2 span {
  display: block;
  white-space: nowrap;
}

.about-copy .lead {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
}

.about-copy > p:not(.lead) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.about-copy-primary {
  padding: var(--space-6) var(--space-6) 0 0;
  border-right: 1px solid var(--line);
}

.about-copy-secondary {
  padding: var(--space-6) 0 0 var(--space-6);
}

.credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 0;
  padding: 0 0 var(--space-6) var(--space-6);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.credentials div {
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-1);
  padding: var(--space-3);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.credentials div:nth-child(-n + 2) {
  border-top: 1px solid var(--line);
}

.credentials div:nth-child(odd) {
  border-left: 1px solid var(--line);
}

.credentials strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
}

.credentials span {
  margin-top: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.office-photo {
  grid-column: 1 / -1;
  margin-top: var(--space-8);
  margin-bottom: 0;
}

.about-image-frame {
  position: relative;
  height: 530px;
  overflow: hidden;
  border-radius: 0;
  background: #dfe4e3;
}

.office-badge {
  position: absolute;
  right: var(--space-4);
  bottom: var(--space-4);
  width: 310px;
  padding: 18px 20px;
  border: 1px solid rgba(214, 179, 106, 0.72);
  border-bottom: 4px solid var(--gold);
  background: rgba(7, 7, 7, 0.94);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  color: #fff;
}

.office-badge-kicker {
  display: block;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.office-badge > div {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-top: 9px;
}

.office-badge strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
}

.office-badge > div span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.services {
  background: var(--ivory);
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

.split-heading > p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  transition: background 0.25s ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.68);
}

.service-no {
  color: #8a713f;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.service-card > div {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: var(--space-6);
}

.service-card h3 {
  margin: 0;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.35;
}

.service-card p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.packages {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.packages::after {
  position: absolute;
  right: -150px;
  bottom: -280px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(214, 179, 106, 0.14);
  border-radius: 50%;
  content: "";
}

.packages-heading {
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-6);
}

.packages-heading h2 {
  color: #fff;
}

.packages-heading > p:last-child {
  margin: var(--space-3) 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.75;
}

.pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.price-card {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: var(--space-4);
  border: 1px solid var(--white-line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.035);
}

.price-card-featured {
  border-color: var(--gold);
  background: #202020;
  transform: none;
}

.popular-label {
  position: absolute;
  top: 0;
  right: 0;
  padding: var(--space-1) var(--space-2);
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.price-top {
  min-height: 104px;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: start;
  gap: var(--space-2);
  padding-top: var(--space-3);
}

.price-top > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.7;
}

.price-top p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.7;
}

.price-card h3 {
  margin: var(--space-3) 0;
  font-family: var(--serif);
  font-size: 27px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.35;
}

.price {
  margin: 0;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
}

.price span {
  display: block;
  margin-bottom: var(--space-1);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.price-note {
  margin: var(--space-1) 0 var(--space-3);
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.5;
}

.price-card > a {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--space-2);
  border-top: 1px solid var(--white-line);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.5;
}

.price-card > a span {
  color: var(--gold);
}

.contact {
  background: var(--ivory);
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--navy-deep);
  box-shadow: var(--shadow);
}

.contact-details {
  padding: var(--space-7);
  color: #fff;
}

.contact h2 {
  color: #fff;
  font-size: clamp(38px, 3.8vw, 54px);
}

.contact-intro {
  max-width: 500px;
  margin: var(--space-3) 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.75;
}

.contact-list {
  margin-block: var(--space-4);
  border-top: 1px solid var(--white-line);
}

.contact-list > div {
  display: grid;
  grid-template-columns: 144px minmax(0, 1fr);
  align-items: start;
  gap: var(--space-3);
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--white-line);
}

.contact-list span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.65;
  text-transform: uppercase;
}

.contact-list a,
.contact-list address,
.contact-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-style: normal;
  line-height: 1.65;
}

.button-whatsapp {
  background: #1f9d62;
  color: #fff;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-7);
  background: var(--ivory);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--line);
}

.form-heading span {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.contact-form label {
  display: grid;
  gap: var(--space-1);
}

.contact-form label > span {
  color: #555;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1.5;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #c4c4c4;
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
}

.contact-form input {
  min-height: 43px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--navy);
}

.form-submit {
  width: 100%;
  margin-top: 0;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.map-wrap {
  height: 430px;
  margin-top: var(--space-4);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  filter: saturate(0.35) contrast(1.04);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
}

.site-footer {
  padding-block: 58px 24px;
  background: #050505;
  color: rgba(255, 255, 255, 0.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  align-items: center;
  gap: 40px;
  padding-bottom: 42px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-brand strong {
  color: #fff;
  font-family: var(--serif);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}

.footer-brand p,
.footer-contact p {
  margin: 3px 0 0;
  font-size: 11px;
  line-height: 1.55;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  font-size: 12px;
}

.footer-contact {
  text-align: right;
}

.footer-contact a {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 17px;
  font-style: normal;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--white-line);
  font-size: 10px;
  letter-spacing: 0.03em;
}

.footer-bottom p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: #1f9d62;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    inset: 80px 0 auto;
    height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 28px 24px;
    transform: translateX(100%);
    background: #0a0a0a;
    color: #fff;
    transition: transform 0.25s ease;
  }

  .primary-nav.open {
    transform: translateX(0);
  }

  .primary-nav a {
    padding: 17px 5px;
    border-bottom: 1px solid var(--white-line);
    font-family: var(--serif);
    font-size: 24px;
  }

  .primary-nav .nav-cta {
    margin-top: 24px;
    padding: 14px 18px;
    border: 1px solid var(--gold);
    font-family: var(--sans);
    font-size: 13px;
    text-align: center;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr 0.72fr;
    gap: var(--space-5);
    padding-block: var(--space-5) var(--space-3);
  }

  .hero h1 {
    font-size: clamp(50px, 7.2vw, 70px);
  }

  .portrait-frame {
    height: 420px;
  }

  .about-heading {
    padding-right: var(--space-4);
    padding-bottom: var(--space-4);
  }

  .credentials {
    padding-left: var(--space-4);
    padding-bottom: var(--space-4);
  }

  .about-copy-primary {
    padding-top: var(--space-4);
    padding-right: var(--space-4);
  }

  .about-copy-secondary {
    padding-top: var(--space-4);
    padding-left: var(--space-4);
  }

  .contact-details,
  .contact-form {
    padding: var(--space-6);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-inline: auto;
  }

  .price-card {
    min-height: 360px;
  }

  .price-card-featured {
    transform: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 620px);
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy small {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    padding-block: var(--space-6);
  }

  .hero-copy {
    padding-top: 12px;
  }

  .hero h1 {
    font-size: clamp(50px, 15vw, 70px);
  }

  .hero-role {
    font-size: 12px;
  }

  .hero-intro {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-portrait {
    width: calc(100% - 10px);
    margin-left: 10px;
  }

  .portrait-frame {
    height: 460px;
  }

  .portrait-frame::before {
    right: 0;
  }

  .portrait-caption {
    width: 100%;
  }

  .portrait-caption p {
    font-size: 13px;
  }

  .ribbon-inner {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    display: grid;
    gap: 12px 18px;
    padding-block: 18px;
    text-align: center;
    white-space: normal;
  }

  .ribbon-inner span {
    min-width: 0;
  }

  .ribbon-inner i {
    display: none;
  }

  .section {
    padding-block: var(--space-10);
  }

  .section-heading h2,
  .contact h2 {
    font-size: clamp(30px, 8vw, 44px);
  }

  .about-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
  }

  .about-heading {
    order: 1;
    padding: 0;
    border: 0;
  }

  .about-heading h2 {
    font-size: clamp(27px, 7.5vw, 32px);
  }

  .about-heading h2 span {
    display: block;
    white-space: nowrap;
  }

  .credentials {
    order: 2;
    width: 100%;
    padding: 0;
    border: 0;
  }

  .about-copy-primary {
    order: 3;
    padding: 0;
    border: 0;
  }

  .about-copy-secondary {
    order: 4;
    padding: 0;
  }

  .office-photo {
    order: 5;
    margin-top: var(--space-2);
  }

  .contact-panel {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .about-copy .lead {
    font-size: 22px;
  }

  .credentials div {
    min-height: 112px;
    padding: var(--space-3);
  }

  .credentials span {
    font-size: 13px;
  }

  .about-image-frame {
    height: 390px;
  }

  .office-badge {
    right: var(--space-2);
    bottom: var(--space-2);
    width: 240px;
    padding: var(--space-2);
  }

  .office-badge strong {
    font-size: 32px;
  }

  .split-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
  }

  .service-card {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: var(--space-2);
    padding-block: var(--space-3);
  }

  .service-card > div {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .service-card h3 {
    font-size: 23px;
  }

  .service-card p {
    font-size: 16px;
  }

  .contact-panel {
    gap: 0;
  }

  .contact-details,
  .contact-form {
    padding: var(--space-4);
  }

  .contact-list > div {
    grid-template-columns: 1fr;
    gap: var(--space-1);
  }

  .map-wrap {
    height: 360px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-contact {
    text-align: left;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .nav-wrap {
    min-height: 72px;
  }

  .primary-nav {
    inset: 72px 0 auto;
    height: calc(100vh - 72px);
  }

  .brand::before {
    height: 32px;
  }

  .brand-copy strong {
    max-width: 170px;
    font-size: 14px;
  }

  .hero {
    padding-top: 72px;
  }

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

  .portrait-frame {
    height: 400px;
  }

  .credentials {
    grid-template-columns: 1fr;
  }

  .credentials div {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .credentials div:first-child {
    border-top: 1px solid var(--line);
  }

  .service-card {
    grid-template-columns: 32px 1fr;
  }

  .price-card {
    min-height: 390px;
    padding: var(--space-3);
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--space-1);
  }

  .floating-whatsapp {
    right: 15px;
    bottom: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
