:root {
  --ink: #2c2119;
  --espresso: #2c2119;
  --muted: #6f6256;
  --paper: #f6eee4;
  --paper-soft: #fff8ef;
  --surface: #fffaf4;
  --line: #dfcdb8;
  --copper: #a8642e;
  --copper-dark: #7d4526;
  --terracotta: #bf7441;
  --stone: #76685c;
  --green: #26725a;
  --footer: #211711;
  --shadow: 0 18px 46px rgba(84, 48, 24, 0.18);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 14px;
  box-shadow: var(--shadow);
}

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

.site-shell {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 248, 239, 0.94);
  border-bottom: 1px solid rgba(223, 205, 184, 0.86);
  backdrop-filter: blur(12px);
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 10px clamp(18px, 4vw, 56px);
}

.brand img {
  width: 190px;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--copper-dark);
  cursor: pointer;
  touch-action: manipulation;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.site-nav,
.site-footer nav,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-nav {
  justify-content: center;
}

.site-nav a,
.site-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--stone);
  font-weight: 700;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--copper-dark);
}

.header-cta,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.header-cta,
.button.primary {
  background: var(--copper);
  color: #fff;
  box-shadow: 0 10px 24px rgba(125, 69, 38, 0.18);
}

.button.secondary {
  background: #fffdf8;
  color: var(--copper-dark);
  border-color: var(--line);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.header-cta:hover,
.button.primary:hover {
  background: var(--copper-dark);
}

.button.secondary:hover {
  border-color: var(--copper);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100dvh - 76px);
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  overflow: hidden;
  padding: clamp(68px, 9vw, 132px) clamp(18px, 4vw, 56px);
  background: var(--footer);
  color: #fff8ef;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 248, 239, 0.30), rgba(255, 248, 239, 0.08) 28%, transparent 48%),
    linear-gradient(180deg, rgba(33, 23, 17, 0.52), rgba(33, 23, 17, 0.24) 46%, rgba(33, 23, 17, 0.62)),
    linear-gradient(90deg, rgba(33, 23, 17, 0.42), rgba(33, 23, 17, 0.08) 52%, rgba(33, 23, 17, 0.36));
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  text-align: center;
  justify-items: center;
  max-width: 760px;
  text-shadow: 0 12px 30px rgba(33, 23, 17, 0.34);
}

.hero .eyebrow {
  color: #fff1dd;
}

.hero-logo-title {
  max-width: none;
  display: inline-grid;
  place-items: center;
  margin: 0;
}

.hero-logo {
  width: clamp(280px, 34vw, 470px);
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(255, 248, 239, 0.18)) drop-shadow(0 14px 30px rgba(0, 0, 0, 0.54));
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--copper-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: Calistoga, Georgia, serif;
  font-weight: 400;
}

h1 {
  max-width: 11ch;
  font-size: 5.9rem;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 1.2rem;
}

.hero-lead {
  max-width: 620px;
  margin: 22px 0 30px;
  color: rgba(255, 248, 239, 0.92);
  font-size: 1.35rem;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
}

.hero-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.trust-band div {
  display: grid;
  gap: 4px;
  padding: 24px clamp(18px, 4vw, 56px);
  background: var(--surface);
}

.trust-band strong {
  color: var(--copper-dark);
}

.trust-band span,
.text-flow,
.services-showcase p,
.warm-feature p,
.terrace-copy p,
.site-footer span {
  color: var(--muted);
}

.hero-benefits strong {
  font-size: 0.98rem;
}

.hero-benefits span {
  font-size: 0.94rem;
}

.section {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 4vw, 56px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  background: #fffdf8;
}

.text-flow {
  max-width: 72ch;
}

.text-flow p {
  margin: 0 0 18px;
}

.services-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.22fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background: #f2e7dc;
}

.section-heading {
  grid-column: 1 / -1;
  max-width: 760px;
  margin-bottom: 12px;
}

.services-showcase-copy {
  max-width: 660px;
}

.services-showcase-copy p {
  max-width: 62ch;
  margin: 18px 0 0;
}

.services-showcase-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(125, 69, 38, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.services-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, minmax(112px, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.service-item {
  min-height: 154px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 20px 12px;
  background: rgba(255, 250, 244, 0.96);
  text-align: center;
}

.service-item img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(31%) sepia(45%) saturate(805%) hue-rotate(343deg) brightness(91%) contrast(89%);
}

.service-item h3 {
  max-width: 12ch;
  color: var(--copper-dark);
  font-size: 0.82rem;
  line-height: 1.22;
  font-weight: 800;
}

.warm-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background: var(--paper-soft);
}

.warm-feature-copy {
  display: grid;
  gap: 18px;
  max-width: 660px;
}

.warm-feature-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.terrace-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1.28fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  overflow: hidden;
  background: var(--footer);
  color: #fff8ef;
}

.terrace-band .eyebrow {
  color: #ddb78d;
}

.terrace-copy {
  display: grid;
  gap: 18px;
}

.terrace-copy p {
  max-width: 62ch;
  color: rgba(255, 248, 239, 0.84);
  font-size: 1.15rem;
}

.terrace-photos {
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  gap: 14px;
  align-items: end;
}

.terrace-photos img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(255, 248, 239, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.terrace-photos img:nth-child(2) {
  transform: translateY(28px);
}

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

.photo-carousel-shell {
  position: relative;
}

.photo-carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 4px 2px;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.photo-carousel::-webkit-scrollbar {
  display: none;
}

.photo-carousel figure {
  flex: 0 0 min(72vw, 520px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  scroll-snap-align: start;
}

.photo-carousel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.photo-carousel figcaption {
  padding: 12px 14px 14px;
  color: var(--copper-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1.28fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background: #f2e7dc;
}

.location-copy {
  display: grid;
  gap: 18px;
  max-width: 620px;
}

.location-copy p {
  margin: 0;
  color: var(--muted);
}

.location-copy .button {
  width: max-content;
}

.location-map {
  overflow: hidden;
  border: 1px solid rgba(125, 69, 38, 0.18);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.location-map iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(125, 69, 38, 0.24);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.96);
  color: var(--copper-dark);
  box-shadow: 0 12px 28px rgba(84, 48, 24, 0.18);
  cursor: pointer;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  touch-action: manipulation;
  transform: translateY(-50%);
  transition: background-color 180ms ease, color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.carousel-arrow:hover {
  background: var(--copper);
  color: #fff;
  transform: translateY(-50%) scale(1.04);
}

.carousel-arrow:disabled {
  opacity: 0;
  pointer-events: none;
}

.carousel-arrow-prev {
  left: -18px;
}

.carousel-arrow-next {
  right: -18px;
}

.page-hero {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 4vw, 56px) 24px;
  background: var(--paper-soft);
}

.page-hero h1 {
  max-width: 16ch;
  font-size: 4.6rem;
}

.narrow {
  max-width: 860px;
}

.agents-contact {
  padding-top: clamp(64px, 9vw, 112px);
}

.agents-contact h1 {
  max-width: 12ch;
  margin: 0 0 clamp(20px, 4vw, 34px);
  font-size: clamp(3rem, 6vw, 5.1rem);
}

.agents-contact p {
  max-width: 58ch;
  margin-bottom: 28px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  padding: 28px clamp(18px, 4vw, 56px);
  padding-right: clamp(112px, 11vw, 150px);
  background: #17100c;
  color: #fff8ef;
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.footer-identity {
  max-width: 820px;
}

.site-footer .footer-address {
  min-height: 44px;
  display: grid;
  align-content: center;
  gap: 2px;
  width: max-content;
  max-width: 100%;
  margin-top: 2px;
}

.site-footer .footer-address span {
  display: block;
  color: rgba(255, 248, 239, 0.78);
  line-height: 1.35;
}

.site-footer a,
.site-footer span {
  color: rgba(255, 248, 239, 0.78);
}

.site-footer .footer-contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 8px;
  font-style: normal;
}

.site-footer .footer-contact {
  min-height: 44px;
  display: grid;
  align-content: center;
  gap: 1px;
  width: max-content;
  max-width: 100%;
}

.site-footer .footer-contact span {
  display: block;
  color: rgba(255, 248, 239, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer .footer-contact strong {
  display: block;
  color: #fff8ef;
  font-size: 0.96rem;
  line-height: 1.25;
}

.site-footer .footer-address:hover span,
.site-footer .footer-contact:hover span,
.site-footer .footer-contact:hover strong {
  color: #ddb78d;
}

.site-footer .footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.site-footer .footer-social-link {
  width: 42px;
  height: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(221, 183, 141, 0.34);
  border-radius: 50%;
  color: #ddb78d;
  background: rgba(255, 248, 239, 0.04);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-footer .footer-social-link:hover {
  color: #fff8ef;
  border-color: rgba(221, 183, 141, 0.62);
  background: rgba(221, 183, 141, 0.14);
  transform: translateY(-1px);
}

.footer-social-icon {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.infochat_floatmain {
  right: 18px !important;
  bottom: 92px !important;
  z-index: 26 !important;
}

#chatbot {
  z-index: 26 !important;
}

#titlediv,
#infochat_close_message,
.infochat_arrow {
  display: none !important;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(125, 69, 38, 0.34);
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 34px rgba(84, 48, 24, 0.24);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  display: block;
  fill: currentColor;
}

.gone-page {
  min-height: 100dvh;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: 32px;
  text-align: center;
}

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

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

  .split,
  .services-showcase,
  .warm-feature,
  .terrace-band,
  .location-section {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 4.8rem;
  }

  h2,
  .page-hero h1 {
    font-size: 3.3rem;
  }

  .hero-logo {
    width: clamp(250px, 46vw, 380px);
  }

  .trust-band,
  .services-list,
  .terrace-photos {
    grid-template-columns: 1fr;
  }

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

  .terrace-photos img:nth-child(2) {
    transform: none;
  }
}

@media (max-width: 760px) {
  .site-shell {
    position: sticky;
  }

  .site-header {
    position: relative;
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 12px;
    min-height: 56px;
    padding: 6px 16px;
  }

  .brand img {
    width: 124px;
  }

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

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
    min-width: 0;
  }

  body.nav-ready .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    z-index: 32;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 250, 244, 0.98);
    box-shadow: var(--shadow);
  }

  body.nav-ready .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav a {
    min-height: 44px;
    justify-content: center;
    font-size: 1rem;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: calc(100dvh - 56px);
    padding: 54px 16px 42px;
  }

  .section {
    padding-block: 48px;
  }

  h1 {
    font-size: 3rem;
    line-height: 0.98;
  }

  h2,
  .page-hero h1 {
    font-size: 2.4rem;
  }

  .hero-lead,
  .terrace-band p {
    font-size: 1.08rem;
  }

  .hero-logo {
    width: clamp(220px, 74vw, 320px);
  }

  .hero-actions {
    align-items: stretch;
    gap: 10px;
  }

  .button {
    width: 100%;
  }

  .location-copy .button {
    width: 100%;
  }

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

  .trust-band {
    gap: 10px;
    padding: 14px 18px;
    border-block: 0;
    background: var(--paper-soft);
  }

  .trust-band div {
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .services-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .service-item {
    min-height: 132px;
    padding: 18px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .service-item img {
    width: 48px;
    height: 48px;
  }

  .service-item h3 {
    font-size: 0.78rem;
  }

  .services-showcase-media img {
    aspect-ratio: 4 / 3;
  }

  .services-showcase,
  .warm-feature,
  .terrace-band,
  .location-section {
    gap: 30px;
  }

  .location-section {
    padding-bottom: 64px;
  }

  .photo-carousel {
    margin-inline: -18px;
    padding-inline: 18px;
    scroll-padding-inline: 18px;
  }

  .photo-carousel figure {
    flex-basis: min(84vw, 420px);
  }

  .carousel-arrow {
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
  }

  .carousel-arrow-prev {
    left: 4px;
  }

  .carousel-arrow-next {
    right: 4px;
  }

  .site-footer {
    display: grid;
    gap: 18px;
    padding-right: 86px;
  }

  .site-footer .footer-contact-list {
    display: grid;
    gap: 8px;
  }

  .site-footer .footer-contact {
    min-height: 42px;
  }

  .floating-whatsapp {
    display: grid;
    right: 12px;
    bottom: 12px;
    width: 52px;
    height: 52px;
  }

  .infochat_floatmain {
    display: block !important;
    right: 10px !important;
    bottom: 78px !important;
    transform: scale(0.68);
    transform-origin: bottom right;
  }
}

@media (max-width: 360px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 6px;
    padding-inline: 14px;
  }

  .brand img {
    width: 112px;
  }

  .site-nav {
    gap: 6px;
  }

  .site-nav a {
    min-height: 42px;
    font-size: 0.95rem;
  }
}

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