:root {
  --paper: #f3efe6;
  --paper-strong: #e7ddcb;
  --paper-soft: #faf7f1;
  --ink: #15233a;
  --ink-soft: #647086;
  --navy: #0d2748;
  --navy-strong: #08172c;
  --gold: #caa15f;
  --gold-soft: #e7cf9a;
  --line: rgba(13, 39, 72, 0.12);
  --white: #ffffff;
  --success: #118c4f;
  --shadow: 0 20px 60px rgba(15, 28, 46, 0.12);
  --shadow-strong: 0 28px 70px rgba(10, 19, 33, 0.18);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 100%;
  --topbar-height: 54px;
  --header-height: 132px;
  --page-padding: 36px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 0 0, rgba(202, 161, 95, 0.18), transparent 24%),
    linear-gradient(180deg, #fbf8f2 0%, #efe7d8 100%);
  color: var(--ink);
  padding-top: calc(var(--topbar-height) + var(--header-height));
}

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

button,
input,
textarea {
  font: inherit;
}

svg {
  display: block;
  flex: none;
}

.page-shell {
  overflow-x: hidden;
}

.container {
  width: var(--container);
  max-width: none;
  margin: 0 auto;
  padding-inline: var(--page-padding);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  background: linear-gradient(180deg, rgba(4, 11, 22, 0.99), rgba(7, 18, 34, 0.99));
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-inner {
  min-height: var(--topbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-list,
.topbar-social {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
}

.topbar-item svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  stroke: var(--gold-soft);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.topbar-social span {
  color: rgba(255, 255, 255, 0.58);
}

.topbar-social-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar-social-link {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(231, 207, 154, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-soft);
}

.topbar-social-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.topbar-social-link:hover,
.topbar-social-link:focus-visible {
  background: rgba(231, 207, 154, 0.14);
  color: var(--white);
  transform: translateY(-1px);
}

.site-header {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  right: 0;
  z-index: 60;
  background:
    linear-gradient(180deg, rgba(18, 47, 85, 0.98), rgba(13, 39, 72, 0.96));
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(231, 207, 154, 0.26);
  box-shadow: 0 16px 34px rgba(3, 12, 24, 0.22);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 38px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  width: 124px;
  height: 124px;
  display: block;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 12px 24px rgba(3, 11, 23, 0.24));
}

.navigation-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex: 1;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex: 1;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.2rem 0;
}

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

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.22s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.action-link,
.button,
.service-link,
.whatsapp-float {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease,
    opacity 0.22s ease;
}

.action-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  border: 1px solid rgba(231, 207, 154, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(2, 10, 20, 0.18);
}

.action-link--icon {
  width: 56px;
  min-width: 56px;
  height: 56px;
}

.action-link--primary {
  background: linear-gradient(135deg, rgba(231, 207, 154, 0.18), rgba(202, 161, 95, 0.14));
}

.action-link--secondary {
  background: rgba(255, 255, 255, 0.12);
}

.action-icon {
  width: 22px;
  height: 22px;
}

.action-icon svg {
  width: 100%;
  height: 100%;
  min-width: 22px;
  min-height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.action-status {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--navy-strong);
  font-size: 0.66rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(182, 144, 82, 0.28);
}

.action-status:empty {
  display: none;
}

.action-link--icon::after {
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  padding: 8px 10px;
  border-radius: 12px;
  background: var(--navy-strong);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  box-shadow: 0 18px 34px rgba(10, 19, 33, 0.22);
}

.action-link--icon:hover::after,
.action-link--icon:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.action-link:hover,
.action-link:focus-visible,
.button:hover,
.button:focus-visible,
.service-link:hover,
.service-link:focus-visible,
.floating-action:hover,
.floating-action:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(10, 19, 33, 0.14);
}

.action-link.is-disabled {
  opacity: 0.78;
  cursor: not-allowed;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(231, 207, 154, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span:not(.sr-only) {
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.section,
.hero {
  padding: 88px 0;
}

.photo-slice {
  padding: 18px 0 0;
  background: linear-gradient(180deg, rgba(10, 28, 51, 0.98), rgba(10, 28, 51, 0.84));
}

.photo-slider {
  display: block;
}

.photo-slider-viewport {
  overflow: hidden;
  border-radius: 28px;
}

.photo-slider-track {
  display: flex;
  transition: transform 0.65s ease;
  will-change: transform;
}

.photo-card {
  position: relative;
  flex: 0 0 100%;
  height: clamp(440px, calc(100dvh - var(--topbar-height) - var(--header-height) - 24px), 680px);
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: #0e1d31;
  box-shadow: var(--shadow-strong);
}

.photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(0.94) contrast(1.04);
}

.photo-slide:nth-child(1) img {
  object-position: center 36%;
}

.photo-slide:nth-child(2) img {
  object-position: center 42%;
}

.photo-slide:nth-child(3) img {
  object-position: center 38%;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 12, 22, 0.16) 0%, rgba(7, 19, 35, 0.24) 30%, rgba(6, 17, 32, 0.82) 100%);
}

.photo-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(216, 188, 140, 0.34);
  pointer-events: none;
}

.photo-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 24px;
  display: grid;
  gap: 8px;
}

.photo-card-kicker {
  color: rgba(216, 188, 140, 0.92);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.photo-card strong {
  color: var(--white);
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  line-height: 1.35;
}

.hero {
  position: relative;
  background:
    radial-gradient(circle at 10% 20%, rgba(182, 144, 82, 0.14), transparent 24%),
    linear-gradient(135deg, var(--paper-soft) 0%, var(--paper) 48%, #eadfc7 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: min(42vw, 620px);
  height: 100%;
  background:
    linear-gradient(180deg, rgba(16, 40, 73, 0.06), rgba(16, 40, 73, 0)),
    linear-gradient(135deg, rgba(16, 40, 73, 0.98), rgba(12, 31, 53, 0.84));
  border-bottom-left-radius: 70px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 44px;
  align-items: center;
}

.section-kicker {
  margin: 0 0 14px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1,
.hero-card h2,
.section-heading h2,
.intro-copy h2,
.consultation-copy h2,
.contact-panel h2,
.service-card h3,
.step-card h3,
.feature-item h3,
.contact-card h3 {
  font-family: "Cormorant Garamond", serif;
}

.hero h1 {
  margin: 0;
  max-width: none;
  color: var(--navy);
  font-size: clamp(3.4rem, 7vw, 5.8rem);
  line-height: 0.92;
}

.hero-lead,
.section-heading p,
.intro-copy p,
.feature-item p,
.service-card p,
.step-card p,
.contact-card p,
.contact-card a,
.form-response,
.hero-meta span,
.hero-meta a {
  color: var(--ink-soft);
  line-height: 1.8;
}

.hero-lead {
  max-width: none;
  font-size: 1.04rem;
  margin-top: 20px;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button,
.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
}

.button--primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--navy-strong);
}

.button--secondary {
  border: 1px solid rgba(16, 40, 73, 0.12);
  background: rgba(255, 255, 255, 0.84);
  color: var(--navy);
}

.button--block {
  width: 100%;
}

.hero-meta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.hero-meta a {
  color: var(--navy);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  padding: 24px 0 32px 28px;
}

.hero-card {
  position: relative;
  z-index: 1;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(16, 40, 73, 0.98), rgba(12, 31, 53, 0.92));
  color: var(--white);
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.hero-card-kicker {
  margin: 0;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.62);
}

.hero-monogram {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(216, 188, 140, 0.42);
  background: radial-gradient(circle at 30% 30%, rgba(216, 188, 140, 0.26), rgba(216, 188, 140, 0.06));
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  color: var(--gold-soft);
}

.hero-card-body {
  margin-top: 26px;
}

.hero-card h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.98;
}

.hero-services {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

.hero-services li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.84);
}

.hero-services li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 0 5px rgba(216, 188, 140, 0.16);
}

.hero-contact-strip {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.section--paper {
  background: var(--paper-soft);
}

.intro-grid,
.consultation-grid,
.contact-grid {
  display: grid;
  gap: 32px;
}

.contact-shell {
  display: grid;
  gap: 28px;
}

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

.service-card,
.step-card,
.contact-card,
.contact-form,
.map-card,
.feature-item {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 40, 73, 0.08);
  box-shadow: var(--shadow);
}

.intro-copy h2,
.section-heading h2,
.consultation-copy h2,
.contact-panel h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.98;
}

.study-callout {
  margin: 26px 0 22px;
  padding: 18px 22px;
  display: grid;
  gap: 8px;
  border-left: 4px solid rgba(182, 144, 82, 0.62);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: linear-gradient(90deg, rgba(182, 144, 82, 0.12), rgba(255, 255, 255, 0.7));
}

.study-callout strong,
.study-callout span {
  display: block;
}

.study-callout strong {
  color: var(--navy);
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.study-callout span {
  color: var(--ink-soft);
  line-height: 1.7;
}

.feature-stack {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.feature-item {
  padding: 24px 24px 22px;
  border-top: 3px solid rgba(182, 144, 82, 0.42);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(182, 144, 82, 0.08), rgba(255, 255, 255, 0.96) 28%),
    rgba(255, 255, 255, 0.96);
}

.feature-item h3 {
  margin: 0 0 8px;
  font-size: 1.75rem;
  color: var(--navy);
}

.section-heading {
  width: 100%;
  max-width: none;
  margin: 0 0 42px;
  text-align: left;
}

.section-heading--left {
  text-align: left;
  margin: 0 0 30px;
}

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

.services-grid > .service-card:last-child:nth-child(3n + 1) {
  grid-column: 2;
}

.service-card,
.step-card,
.contact-card {
  border-radius: var(--radius-lg);
  padding: 26px;
}

.service-card {
  display: grid;
  gap: 14px;
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(182, 144, 82, 0.2), rgba(16, 40, 73, 0.08));
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-card h3,
.step-card h3,
.contact-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 2rem;
  line-height: 1;
}

.service-link {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(16, 40, 73, 0.12);
  background: var(--paper-soft);
  color: var(--navy);
  font-size: 0.92rem;
  justify-self: start;
}

.section--contrast {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-strong) 100%);
  color: var(--white);
}

.section--contrast .consultation-copy h2,
.section--contrast .step-card h3 {
  color: var(--white);
}

.section--contrast .section-kicker {
  color: var(--gold-soft);
}

.section--contrast .consultation-copy p,
.section--contrast .step-card p {
  color: rgba(255, 255, 255, 0.74);
}

.consultation-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

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

.step-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.step-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-soft);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.94fr);
  align-items: start;
}

.contact-panel,
.contact-form-wrap {
  display: grid;
  gap: 22px;
  align-content: start;
}

.contact-heading {
  margin-bottom: 0;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-card {
  min-height: 174px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.contact-card h3 {
  font-size: clamp(1.8rem, 2vw, 2.35rem);
  line-height: 1.04;
}

.contact-card p,
.contact-card a {
  font-size: 1.05rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

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

.map-card {
  display: grid;
  overflow: hidden;
  min-height: 0;
  border-radius: var(--radius-xl);
}

.map-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(16, 40, 73, 0.08);
}

.map-pin {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.map-pin-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(182, 144, 82, 0.16);
  color: var(--navy);
}

.map-pin-icon svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-pin strong,
.map-pin span {
  display: block;
}

.map-pin strong {
  color: var(--navy);
  font-size: 0.98rem;
}

.map-pin span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.map-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(16, 40, 73, 0.12);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.82);
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 260px;
  height: 260px;
  border: 0;
}

.contact-form {
  border-radius: var(--radius-xl);
  padding: 32px;
  display: grid;
  gap: 20px;
  align-content: start;
}

.contact-form label {
  display: grid;
  gap: 10px;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form span {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(16, 40, 73, 0.12);
  background: var(--paper-soft);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(182, 144, 82, 0.46);
  box-shadow: 0 0 0 4px rgba(182, 144, 82, 0.14);
}

.form-response {
  margin: 0;
  font-size: 0.92rem;
}

.form-response {
  min-height: 1.5em;
  color: var(--ink-soft);
  font-weight: 700;
}

.form-response.is-success {
  color: #2f6b49;
}

.form-response.is-error {
  color: #a44736;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.82;
  transform: none;
  box-shadow: none;
}

.site-footer {
  padding: 28px 0 42px;
  background: var(--navy-strong);
  color: rgba(255, 255, 255, 0.76);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin: 0;
  line-height: 1.8;
}

.footer-inner a {
  color: var(--gold-soft);
  font-weight: 700;
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-action {
  width: 62px;
  height: 62px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.top-float {
  background: linear-gradient(135deg, var(--navy), var(--navy-strong));
  box-shadow: 0 18px 34px rgba(10, 19, 33, 0.24);
}

.whatsapp-float {
  background: linear-gradient(135deg, #28d36d, var(--success));
  box-shadow: 0 18px 34px rgba(17, 140, 79, 0.28);
}

.top-float svg,
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .intro-grid,
  .consultation-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero::before {
    width: 100%;
    height: 42%;
    top: auto;
    bottom: 0;
    border-bottom-left-radius: 0;
    border-top-left-radius: 70px;
  }

  .hero-visual {
    padding-left: 0;
    padding-bottom: 72px;
  }

  .services-grid,
  .feature-stack,
  .steps-grid,
  .contact-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-shell {
    gap: 24px;
  }

  .photo-card {
    height: clamp(360px, 50dvh, 520px);
  }
}

@media (max-width: 920px) {
  :root {
    --topbar-height: 54px;
    --header-height: 96px;
  }

  .topbar-inner {
    justify-content: center;
  }

  .topbar-social {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .navigation-wrap {
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 18px;
    background: linear-gradient(180deg, rgba(14, 36, 66, 0.99), rgba(8, 23, 44, 0.98));
    border: 1px solid rgba(231, 207, 154, 0.18);
    border-radius: 26px;
    box-shadow: 0 18px 36px rgba(3, 12, 24, 0.28);
  }

  .navigation-wrap.is-open {
    display: flex;
  }

  .site-nav {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .site-nav a {
    padding: 12px 8px;
    border-bottom: 1px solid rgba(231, 207, 154, 0.12);
  }

  .site-nav a::after {
    display: none;
  }

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

  .action-link--icon::after {
    display: none;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-card h2,
  .intro-copy h2,
  .section-heading h2,
  .consultation-copy h2,
  .contact-panel h2 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  :root {
    --container: 100%;
    --page-padding: 14px;
  }

  .section,
  .hero {
    padding: 72px 0;
  }

  .feature-stack,
  .services-grid,
  .steps-grid,
  .hero-services,
  .contact-details {
    grid-template-columns: 1fr;
  }

  .services-grid > .service-card:last-child:nth-child(3n + 1) {
    grid-column: auto;
  }

  .contact-card {
    min-height: 0;
  }

  .map-card-head {
    flex-direction: column;
    align-items: stretch;
  }

  .map-open {
    width: 100%;
  }

  .topbar-list {
    justify-content: center;
  }

  .brand-logo {
    width: 88px;
    height: 88px;
  }

  .photo-card {
    height: clamp(280px, 40dvh, 380px);
  }

  .photo-slider-viewport {
    border-radius: 20px;
  }

  .photo-slider-copy p {
    font-size: 0.94rem;
  }

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

  .floating-actions {
    right: 16px;
    bottom: 16px;
  }
}
