:root {
  --font-body: "Manrope", sans-serif;
  --font-ui: "Manrope", sans-serif;
  --font-display: "Cormorant Garamond", serif;
  --paper: #ffffff;
  --paper-soft: #f3f6fa;
  --paper-muted: #e4ebf3;
  --ink: #14283f;
  --ink-soft: #4f6277;
  --ink-muted: #74839a;
  --accent: #c9a35d;
  --accent-strong: #9e7636;
  --accent-soft: #f4ead6;
  --dark: #0f2744;
  --dark-soft: #09182d;
  --line: rgba(20, 40, 63, 0.1);
  --line-light: rgba(255, 255, 255, 0.12);
  --success: #2d618f;
  --error: #a43b20;
  --shadow-lg: 0 30px 70px rgba(15, 39, 68, 0.16);
  --shadow-md: 0 18px 44px rgba(15, 39, 68, 0.11);
  --shadow-sm: 0 12px 28px rgba(15, 39, 68, 0.07);
  --radius-3xl: 32px;
  --radius-2xl: 26px;
  --radius-xl: 22px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --container: min(1240px, calc(100vw - 28px));
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(15, 39, 68, 0.08), transparent 18%),
    radial-gradient(circle at bottom right, rgba(201, 163, 93, 0.1), transparent 20%),
    linear-gradient(180deg, #fafbfd, #f1f4f8 84%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-shell {
  overflow: hidden;
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
}

.topbar-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 390px) minmax(240px, 1fr);
  align-items: center;
  gap: 18px;
  padding: 14px 0;
}

.topbar-copy {
  display: grid;
  gap: 4px;
}

.topbar-label,
.eyebrow,
.eyebrow-light,
.panel-kicker,
.service-badge {
  font-family: var(--font-ui);
  font-weight: 800;
  letter-spacing: 0.18em;
}

.topbar-label {
  color: var(--accent);
  font-size: 0.92rem;
}

.topbar-copy p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.topbar-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
}

.topbar-search input {
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
}

.topbar-search input:focus {
  outline: none;
}

.topbar-search button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 700;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.topbar-search button {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.button:hover,
.button:focus-visible,
.topbar-search button:hover,
.topbar-search button:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  outline: none;
}

.topbar-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.topbar-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
  background: var(--paper-soft);
  border: 1px solid var(--line);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(15, 39, 68, 0.98), rgba(10, 28, 50, 0.96));
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 24px rgba(18, 18, 18, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

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

.brand img,
.footer-brand img {
  width: 72px;
  height: 72px;
  padding: 0;
  object-fit: contain;
  background: transparent;
  border: 0;
  box-shadow: none;
  filter: drop-shadow(0 16px 26px rgba(15, 39, 68, 0.2));
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-copy span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: 0.01em;
  color: var(--paper);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.primary-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 600;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.header-cta,
.button-primary {
  color: var(--paper);
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.button-secondary {
  color: var(--dark);
  background: var(--paper);
  border-color: rgba(15, 39, 68, 0.14);
}

.button-outline {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--dark);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 24, 45, 0.88), rgba(15, 39, 68, 0.74) 48%, rgba(15, 39, 68, 0.3) 100%),
    linear-gradient(180deg, rgba(201, 163, 93, 0.08), rgba(9, 24, 45, 0.2));
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
  min-height: 600px;
  padding: 110px 0 104px;
}

.hero-copy {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow,
.eyebrow-light {
  margin: 0 0 14px;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--accent);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.82);
}

.hero h1,
.section-heading h2,
.contact-card h2,
.contact-panel h2,
.owner-copy h2,
.about-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.9rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.hero h1,
.catalog .section-heading h2,
.services-showcase .section-heading h2,
.identity-section .section-heading h2 {
  font-family: var(--font-ui);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(2.5rem, 5.6vw, 4.25rem);
}

.hero-text,
.section-heading p,
.service-card p,
.owner-copy p,
.about-copy p,
.about-highlight-card p,
.faq-item p,
.contact-panel p,
.contact-card p,
.field,
.form-help {
  line-height: 1.7;
}

.hero-text {
  max-width: 38ch;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.hero-subtitle {
  max-width: 44ch;
  font-size: 1.2rem;
  font-weight: 700;
}

.hero-note {
  max-width: 56ch;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
  justify-content: center;
}

.hero-searchbar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 980px;
  margin: 24px auto 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-md);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hero-searchbar select,
.hero-searchbar button {
  min-height: 52px;
  border-radius: 14px;
}

.hero-searchbar select {
  width: 100%;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
}

.hero-searchbar select:focus {
  outline: none;
  border-color: rgba(201, 163, 93, 0.6);
  box-shadow: 0 0 0 4px rgba(201, 163, 93, 0.18);
}

.hero-search-submit {
  width: 100%;
}

.hero-panel {
  display: grid;
  gap: 20px;
  padding: 26px;
  border-radius: var(--radius-3xl);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-lg);
}

.hero-panel-brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.hero-panel-brand h2 {
  margin: 2px 0 8px;
  font-size: 1.6rem;
  line-height: 1.1;
}

.hero-panel-brand p {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.6;
}

.panel-kicker {
  color: var(--accent);
  font-size: 0.85rem;
}

.hero-search {
  display: grid;
  gap: 14px;
}

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

.hero-panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-panel-tags span,
.catalog-specs span,
.contact-list li,
.process-item,
.filter-pill,
.catalog-action {
  border-radius: 999px;
}

.hero-panel-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 12px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 600;
  background: rgba(201, 163, 93, 0.12);
  border: 1px solid rgba(18, 18, 18, 0.06);
}

.field {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(18, 18, 18, 0.1);
  border-radius: 16px;
  color: var(--ink);
  background: var(--paper);
}

.field textarea {
  min-height: 140px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(201, 163, 93, 0.48);
  box-shadow: 0 0 0 4px rgba(201, 163, 93, 0.14);
}

.field-search {
  grid-column: span 2;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field-row-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-strip,
.section-block {
  padding: 40px 0;
}

.trust-grid,
.services-grid,
.catalog-grid {
  display: grid;
  gap: 18px;
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-card,
.service-card,
.catalog-card,
.contact-card,
.contact-panel,
.faq-item,
.process-item,
.owner-highlight,
.about-highlight-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.trust-card {
  display: grid;
  justify-items: center;
  text-align: center;
  align-content: start;
  gap: 14px;
  min-height: 0;
  padding: 22px 18px;
  border-radius: 22px;
  background: rgba(246, 248, 252, 0.98);
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 20px;
  color: var(--accent-strong);
  background: rgba(201, 163, 93, 0.12);
}

.trust-icon svg {
  width: 26px;
  height: 26px;
}

.trust-card strong {
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  font-weight: 700;
  line-height: 1.45;
  max-width: 17ch;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-heading-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading p {
  margin: 14px 0 0;
  color: var(--ink-muted);
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-pill {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
  background: var(--paper);
}

.filter-pill.is-active {
  color: var(--paper);
  border-color: transparent;
  background: linear-gradient(135deg, var(--dark), var(--accent-strong));
}

.catalog-meta {
  color: var(--ink-muted);
  font-size: 0.92rem;
  font-weight: 600;
  width: 100%;
  text-align: center;
}

.catalog-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.catalog-empty {
  padding: 34px;
  border: 1px dashed rgba(18, 18, 18, 0.16);
  border-radius: 24px;
  text-align: center;
  color: var(--ink-muted);
  background: var(--paper);
}

.catalog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.catalog-card:hover,
.catalog-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.catalog-image {
  position: relative;
  aspect-ratio: 1.18 / 1;
  min-height: 0;
  overflow: hidden;
  background: #dde7f1;
}

.catalog-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
  transition: transform 360ms ease;
}

.catalog-card:hover .catalog-image img,
.catalog-card:focus-within .catalog-image img {
  transform: scale(1.04);
}

.catalog-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.catalog-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-badge.operation-venta,
.catalog-badge.operation-renta,
.catalog-badge.featured {
  background: rgba(44, 66, 74, 0.9);
}

.catalog-badge.featured {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.catalog-copy {
  display: grid;
  gap: 6px;
  padding: 18px 18px 14px;
  background: rgba(255, 255, 255, 0.98);
}

.catalog-type {
  display: inline-block;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-price {
  color: var(--accent-strong);
  font-size: 1.2rem;
  font-weight: 700;
  text-align: right;
}

.catalog-copy h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.18;
  color: var(--ink);
}

.catalog-location {
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.28;
  text-transform: uppercase;
}

.catalog-copy h3 a {
  color: inherit;
}

.catalog-offer-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.catalog-offer-label {
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-summary-band {
  padding: 10px 18px 12px;
  border-top: 1px solid rgba(20, 40, 63, 0.12);
  background: linear-gradient(180deg, rgba(245, 248, 252, 0.98), rgba(238, 243, 249, 0.98));
}

.catalog-summary-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  min-height: 40px;
}

.catalog-summary-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.2;
}

.catalog-summary-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--accent-strong);
}

.catalog-summary-icon svg,
.catalog-utility-icon svg,
.detail-inline-icon svg {
  width: 19px;
  height: 19px;
}

.catalog-summary-text strong {
  color: var(--accent-strong);
  font-weight: 700;
}

.catalog-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.catalog-spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 10px 12px;
  border-radius: 20px;
  background: rgba(15, 39, 68, 0.06);
  border: 1px solid rgba(18, 18, 18, 0.06);
}

.catalog-spec-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: var(--accent-strong);
  background: rgba(255, 255, 255, 0.84);
}

.catalog-spec-icon svg {
  width: 18px;
  height: 18px;
}

.catalog-spec-item strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.catalog-spec-item span:last-child {
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.catalog-utilities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.catalog-utility {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 700;
  background: rgba(44, 66, 74, 0.06);
  border: 1px solid rgba(18, 18, 18, 0.06);
}

.catalog-utility.is-active {
  color: var(--ink);
  background: rgba(201, 163, 93, 0.18);
}

.catalog-utility-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.74);
}

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

.catalog-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 10px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 700;
  border: 1px solid rgba(18, 18, 18, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

.catalog-action-primary {
  color: var(--paper);
  border-color: transparent;
  background: linear-gradient(135deg, var(--dark), var(--accent-strong));
}

.catalog-action:hover,
.catalog-action:focus-visible {
  color: var(--paper);
  border-color: transparent;
  background: linear-gradient(135deg, var(--dark), var(--accent-strong));
  outline: none;
}

.mortgage-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
}

.mortgage-visual {
  position: relative;
  min-height: 340px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 28%, rgba(15, 39, 68, 0.14), transparent 24%),
    radial-gradient(circle at 70% 35%, rgba(201, 163, 93, 0.18), transparent 18%),
    linear-gradient(180deg, rgba(245, 248, 255, 0.96), rgba(255, 255, 255, 0.92));
}

.mortgage-circle {
  position: absolute;
  display: block;
  border-radius: 999px;
}

.mortgage-circle-brand {
  left: 28px;
  bottom: 28px;
  width: 170px;
  height: 170px;
  color: var(--paper);
  font-family: var(--font-ui);
  font-size: 2.45rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #25378d, #3348b6);
}

.mortgage-circle-sm,
.mortgage-circle-md {
  background: rgba(201, 163, 93, 0.12);
}

.mortgage-circle-sm {
  top: 42px;
  left: 96px;
  width: 74px;
  height: 74px;
}

.mortgage-circle-md {
  top: 112px;
  left: 202px;
  width: 112px;
  height: 112px;
}

.mortgage-circle-photo {
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-sm);
}

.mortgage-circle-photo-a {
  top: 38px;
  left: 28px;
  width: 64px;
  height: 64px;
  background-image: url("https://images.unsplash.com/photo-1513694203232-719a280e022f?auto=format&fit=crop&fm=jpg&ixlib=rb-4.1.0&q=60&w=400");
}

.mortgage-circle-photo-b {
  top: 26px;
  left: 180px;
  width: 86px;
  height: 86px;
  background-image: url("https://images.unsplash.com/photo-1518780664697-55e3ad937233?auto=format&fit=crop&fm=jpg&ixlib=rb-4.1.0&q=60&w=400");
}

.mortgage-circle-photo-c {
  right: 56px;
  top: 96px;
  width: 64px;
  height: 64px;
  background-image: url("https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&fm=jpg&ixlib=rb-4.1.0&q=60&w=400");
}

.mortgage-circle-photo-d {
  right: 34px;
  bottom: 46px;
  width: 138px;
  height: 138px;
  background-image: url("https://images.unsplash.com/photo-1570129477492-45c003edd2be?auto=format&fit=crop&fm=jpg&ixlib=rb-4.1.0&q=60&w=500");
}

.mortgage-copy h2,
.sale-path-content h3 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.mortgage-copy p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.mortgage-button {
  margin-top: 24px;
  color: var(--paper);
  background: linear-gradient(135deg, #25378d, #3348b6);
}

.sale-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.search-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.services-showcase {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(240, 244, 250, 0.78));
}

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

.service-feature-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(44, 66, 74, 0.1);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.service-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  color: var(--paper);
  background: linear-gradient(135deg, #121d3a, #1f2a4e);
}

.service-feature-icon svg {
  width: 25px;
  height: 25px;
}

.service-feature-card h3,
.identity-panel-copy h3,
.story-copy h3,
.essence-card-copy h3 {
  margin: 0;
  font-size: clamp(1.7rem, 2.2vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.service-feature-card p,
.identity-panel-copy p,
.story-copy p,
.essence-heading p,
.essence-card-copy p {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.8;
}

.identity-section {
  padding-top: 10px;
}

.identity-panel,
.story-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.98fr);
  overflow: hidden;
  border: 1px solid rgba(44, 66, 74, 0.1);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-sm);
}

.identity-panel-image img,
.story-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.identity-panel-copy,
.story-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 46px 44px;
}

.story-stack {
  display: grid;
  gap: 28px;
}

.story-card-reverse {
  grid-template-columns: minmax(340px, 0.98fr) minmax(0, 1fr);
}

.story-card-reverse .story-copy {
  order: 2;
}

.story-card-reverse .story-image {
  order: 1;
}

.essence-section {
  padding-top: 8px;
}

.essence-shell {
  display: grid;
  gap: 34px;
  padding: 42px;
  border-radius: 40px;
  color: var(--paper);
  background: #090d22;
  box-shadow: var(--shadow-lg);
}

.essence-heading h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.essence-heading p {
  max-width: 920px;
  color: rgba(255, 255, 255, 0.74);
}

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

.essence-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(19, 24, 46, 0.9);
}

.essence-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.essence-card-copy {
  display: grid;
  gap: 16px;
  padding: 24px 24px 28px;
}

.essence-card-copy h3,
.essence-card-copy p {
  color: var(--paper);
}

.essence-card-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.sale-path-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
}

.sale-path-sell,
.sale-path-rent {
  background-position: center;
  background-size: cover;
}

.sale-path-sell {
  background-image: url("https://images.unsplash.com/photo-1513694203232-719a280e022f?auto=format&fit=crop&fm=jpg&ixlib=rb-4.1.0&q=60&w=1200");
}

.sale-path-rent {
  background-image: url("https://images.unsplash.com/photo-1515263487990-61b07816b324?auto=format&fit=crop&fm=jpg&ixlib=rb-4.1.0&q=60&w=1200");
}

.search-path-buy {
  background-image: url("https://images.unsplash.com/photo-1501183638710-841dd1904471?auto=format&fit=crop&fm=jpg&ixlib=rb-4.1.0&q=60&w=1200");
  background-position: center;
  background-size: cover;
}

.search-path-rent {
  background-image: url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&fm=jpg&ixlib=rb-4.1.0&q=60&w=1200");
  background-position: center;
  background-size: cover;
}

.sale-path-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 39, 68, 0.28), rgba(15, 39, 68, 0.52));
}

.sale-path-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 40px;
}

.sale-path-content h3 {
  max-width: 420px;
  color: var(--paper);
}

.sale-path-button {
  width: fit-content;
  min-width: 240px;
  color: var(--dark);
  background: rgba(255, 255, 255, 0.95);
}

.intake-page {
  padding: 36px 0 64px;
}

.intake-shell,
.calculator-shell {
  display: grid;
  gap: 24px;
}

.intake-hero,
.intake-card,
.calculator-card,
.calculator-info {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.intake-hero,
.intake-card,
.calculator-card,
.calculator-info {
  padding: 28px;
}

.intake-hero h1,
.calculator-card h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.intake-hero p,
.calculator-card p,
.calculator-info p {
  color: var(--ink-soft);
  line-height: 1.8;
}

.intake-layout,
.calculator-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 24px;
}

.intake-form,
.calculator-form {
  display: grid;
  gap: 16px;
}

.field-help {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.calculator-results {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.calculator-result {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(15, 39, 68, 0.08);
}

.calculator-result span {
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.calculator-result strong {
  color: var(--ink);
  font-size: 1.5rem;
}

.services {
  background: linear-gradient(180deg, rgba(15, 39, 68, 0.05), rgba(255, 255, 255, 0));
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  padding: 26px;
  border-radius: 28px;
}

.service-card h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.35;
}

.service-card p {
  margin: 12px 0 0;
  color: var(--ink-muted);
}

.service-badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.82rem;
  background: rgba(201, 163, 93, 0.12);
}

.service-card-accent {
  color: var(--paper);
  background: linear-gradient(145deg, var(--dark), #183657 52%, var(--accent-strong));
}

.service-card-accent h3,
.service-card-accent p {
  color: var(--paper);
}

.service-badge-light {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.1);
}

.owner-layout,
.about-layout,
.faq-layout,
.contact-layout {
  display: grid;
  gap: 24px;
  align-items: start;
}

.owner-layout,
.contact-layout {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
}

.about-layout,
.faq-layout {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
}

.owner-copy p,
.about-copy p,
.contact-panel p,
.contact-card p {
  margin-top: 16px;
  color: var(--ink-muted);
}

.check-list,
.contact-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.contact-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.7;
}

.check-list li::before,
.contact-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.owner-visual,
.about-visual {
  position: relative;
}

.owner-visual img,
.about-image-shell img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-lg);
}

.owner-highlight {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 360px;
  padding: 22px;
  border-radius: 24px;
}

.owner-highlight h3,
.about-highlight-card h3 {
  margin: 10px 0 0;
  font-size: 1.36rem;
  line-height: 1.35;
}

.process-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.process-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
}

.process-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: var(--paper);
  font-size: 0.98rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.process-item p {
  margin: 0;
  color: var(--ink-soft);
}

.about-highlight-card {
  position: absolute;
  right: 26px;
  bottom: -24px;
  width: min(92%, 420px);
  padding: 22px;
  border-radius: 28px;
}

.about-stars {
  color: var(--accent);
  letter-spacing: 0.24em;
}

.about-showcase {
  overflow: hidden;
  border-radius: 34px;
  background: transparent;
  box-shadow: var(--shadow-md);
}

.about-showcase-image {
  min-height: 360px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.04)),
    url("https://images.unsplash.com/photo-1511818966892-d7d671e672a2?auto=format&fit=crop&fm=jpg&ixlib=rb-4.1.0&q=60&w=1600")
      center center / cover no-repeat;
}

.about-showcase-card {
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: 42px 28px 48px;
  text-align: center;
  background: #d4d98b;
}

.about-showcase-kicker {
  margin: 0;
  color: #2d4a2e;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.about-showcase-text {
  max-width: 820px;
  margin: 0;
  color: #49543a;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.34;
  letter-spacing: 0.01em;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0 22px;
  border-radius: 24px;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  list-style: none;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 18px;
  color: var(--ink-muted);
}

.contact-panel,
.contact-card {
  padding: 30px;
  border-radius: 30px;
}

.contact-panel-dark {
  color: var(--paper);
  background: linear-gradient(145deg, var(--dark), #35515a 46%, var(--accent-strong));
  border-color: transparent;
}

.contact-panel-dark h2,
.contact-panel-dark p,
.contact-panel-dark a,
.contact-panel-dark strong,
.contact-panel-dark span {
  color: var(--paper);
}

.contact-logo {
  width: min(100%, 240px);
  margin: 6px 0 18px;
  padding: 0;
  background: transparent;
  filter: drop-shadow(0 18px 30px rgba(15, 39, 68, 0.22));
}

.lead-form {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.contact-panel-info .contact-list {
  gap: 16px;
}

.contact-panel-info .contact-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding-left: 0;
}

.contact-panel-info .contact-list li::before {
  display: none;
}

.contact-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.12);
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
}

.contact-panel-info .contact-list strong {
  display: block;
  margin-bottom: 3px;
}

.contact-card-cta {
  display: grid;
  align-content: center;
  gap: 14px;
  min-height: 100%;
}

.contact-card-cta p {
  margin: 0;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-help {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.form-help.is-error {
  color: var(--error);
}

.form-help.is-success {
  color: var(--success);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 55;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  min-height: 54px;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--paper);
  font-weight: 700;
  background: linear-gradient(135deg, #1b7d43, #1ea55a);
  box-shadow: 0 18px 34px rgba(30, 165, 90, 0.26);
}

.site-footer {
  padding: 0 0 28px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  border-radius: 28px;
  color: var(--paper);
  background: linear-gradient(145deg, var(--dark), #35515a 48%, var(--accent-strong));
  box-shadow: var(--shadow-md);
}

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

.footer-brand p,
.footer-brand strong,
.footer-links a {
  color: var(--paper);
}

.footer-brand p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.detail-page {
  padding: 36px 0 64px;
}

.detail-breadcrumb {
  margin-bottom: 18px;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.detail-breadcrumb a {
  color: var(--accent-strong);
  font-weight: 700;
}

.detail-layout {
  display: grid;
  gap: 24px;
}

.detail-top {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 24px;
  align-items: start;
}

.detail-gallery-card,
.detail-side-card,
.detail-section-card,
.detail-empty {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.detail-gallery-card,
.detail-side-card,
.detail-section-card {
  padding: 24px;
}

.detail-main-image {
  overflow: hidden;
  border-radius: 24px;
}

.detail-main-image img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.detail-thumb {
  padding: 0;
  border: 0;
  background: transparent;
}

.detail-thumb img {
  width: 100%;
  height: 88px;
  object-fit: cover;
  border-radius: 18px;
  border: 2px solid transparent;
  transition: transform 180ms ease, border-color 180ms ease;
}

.detail-thumb.is-active img,
.detail-thumb:hover img,
.detail-thumb:focus-visible img {
  border-color: var(--accent-strong);
  transform: translateY(-2px);
  outline: none;
}

.detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.detail-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--dark), var(--accent-strong));
}

.detail-side-card h1,
.detail-section-card h2,
.detail-empty h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.detail-price {
  margin-top: 16px;
  color: var(--accent-strong);
  font-size: 2rem;
  font-weight: 800;
}

.detail-location {
  margin-top: 10px;
  color: var(--ink-muted);
  font-size: 1rem;
}

.detail-summary {
  margin-top: 16px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.detail-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.detail-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 24px;
}

.detail-stack {
  display: grid;
  gap: 24px;
}

.detail-section-card p {
  color: var(--ink-soft);
  line-height: 1.8;
}

.detail-characteristics {
  display: grid;
  margin-top: 18px;
}

.detail-characteristic-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(44, 66, 74, 0.1);
}

.detail-characteristic-row:last-child {
  border-bottom: 0;
}

.detail-characteristic-label {
  color: var(--ink-soft);
  font-weight: 700;
}

.detail-characteristic-value {
  color: var(--ink);
  font-weight: 600;
}

.detail-map {
  overflow: hidden;
  margin-top: 18px;
  border-radius: 24px;
}

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

.detail-inline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.detail-inline-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  background: rgba(201, 163, 93, 0.12);
}

.detail-inline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: var(--accent-strong);
  background: rgba(255, 255, 255, 0.8);
}

.detail-empty {
  padding: 34px;
  text-align: center;
}

.detail-empty p {
  margin: 14px 0 0;
  color: var(--ink-muted);
}

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

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

@media (max-width: 1180px) {
  .hero-layout,
  .owner-layout,
  .about-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .services-grid,
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-showcase-grid,
  .essence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-top,
  .detail-content,
  .mortgage-card,
  .identity-panel,
  .story-card,
  .story-card-reverse,
  .intake-layout,
  .calculator-grid {
    grid-template-columns: 1fr;
  }

  .header-cta {
    display: none;
  }

  .about-highlight-card {
    position: static;
    width: 100%;
    margin-top: 18px;
  }
}

@media (max-width: 940px) {
  html.js .menu-toggle {
    display: inline-flex;
  }

  html.js .primary-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 14px;
    left: 14px;
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: rgba(10, 28, 50, 0.98);
    box-shadow: var(--shadow-md);
    transform-origin: top right;
    transform: scale(0.96);
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  html.js .primary-nav.is-open {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }

  .primary-nav a {
    width: 100%;
    color: rgba(255, 255, 255, 0.86);
  }

  .hero-searchbar {
    grid-template-columns: 1fr;
  }

  .field-search {
    grid-column: auto;
  }

  .field-row,
  .field-row-three,
  .catalog-actions {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .services-grid,
  .catalog-grid,
  .sale-path-grid,
  .search-path-grid {
    grid-template-columns: 1fr;
  }

  .services-showcase-grid,
  .essence-grid {
    grid-template-columns: 1fr;
  }

  .catalog-spec-grid,
  .detail-spec-grid,
  .detail-actions,
  .detail-characteristic-row {
    grid-template-columns: 1fr;
  }

  .owner-highlight {
    position: static;
    max-width: none;
    margin-top: 18px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100vw - 18px, 100%);
  }

  .brand img,
  .footer-brand img {
    width: 58px;
    height: 58px;
  }

  .hero-layout {
    min-height: auto;
    padding: 88px 0 92px;
  }

  .hero-searchbar {
    padding: 10px;
  }

  .hero h1,
  .section-heading h2,
  .contact-card h2,
  .contact-panel h2,
  .owner-copy h2,
  .about-copy h2 {
    font-size: clamp(2.3rem, 13vw, 3.5rem);
  }

  .contact-panel,
  .contact-card,
  .service-card,
  .service-feature-card,
  .identity-panel-copy,
  .story-copy,
  .essence-shell {
    padding: 22px;
  }

  .trust-card {
    min-height: 0;
    padding: 24px 22px;
  }

  .identity-panel-image img,
  .story-image img {
    min-height: 280px;
  }

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

  .detail-gallery-card,
  .detail-side-card,
  .detail-section-card {
    padding: 20px;
  }

  .detail-main-image img {
    min-height: 280px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-width: 118px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
