:root {
  --ink: #102b35;
  --ink-soft: #334d56;
  --gold: #b8892f;
  --gold-deep: #9a7021;
  --cream: #f7f3ea;
  --soft: #f4f6f5;
  --white: #ffffff;
  --line: #dfe5e2;
  --shadow: 0 18px 45px rgba(16, 43, 53, 0.10);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 8px;
  z-index: 1000;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(16,43,53,.08);
}
.header-inner { min-height: 82px; display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: max-content; }
.brand-mark { font-size: 35px; color: var(--gold); line-height: 1; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; letter-spacing: .08em; }
.brand-text strong { font-family: Georgia, "Times New Roman", serif; font-size: 22px; letter-spacing: .03em; }
.brand-text small { margin-top: 5px; font-size: 8px; letter-spacing: .22em; color: var(--ink-soft); }
.primary-nav { margin-left: auto; display: flex; align-items: center; gap: 28px; font-size: 14px; }
.primary-nav a { position: relative; padding: 28px 0; }
.primary-nav a::after { content: ""; position: absolute; height: 2px; left: 0; right: 100%; bottom: 21px; background: var(--gold); transition: .25s ease; }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { right: 0; }
.header-cta { white-space: nowrap; }
.menu-toggle { display: none; background: none; border: 0; padding: 7px; cursor: pointer; }
.menu-toggle span { width: 25px; height: 2px; background: var(--ink); display: block; margin: 5px 0; transition: .2s; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 750;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-gold { background: var(--gold); color: #fff; box-shadow: 0 10px 20px rgba(184,137,47,.20); }
.button-gold:hover { background: var(--gold-deep); box-shadow: 0 14px 28px rgba(184,137,47,.26); }
.button-dark { background: var(--ink); color: white; }
.button-dark:hover { background: #183b47; }
.button-ghost { border-color: rgba(255,255,255,.72); color: white; background: rgba(255,255,255,.04); }
.button-ghost:hover { background: rgba(255,255,255,.12); }
.button-outline { border-color: var(--gold); color: var(--gold-deep); background: white; }
.button-outline:hover { background: var(--cream); }
.full { width: 100%; }

.hero { position: relative; min-height: 610px; display: grid; align-items: center; overflow: hidden; background: #203942; }
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 48%; filter: saturate(.93) contrast(1.03); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,15,19,.86) 0%, rgba(3,15,19,.60) 44%, rgba(3,15,19,.12) 77%, rgba(3,15,19,.04) 100%); }
.hero-content { position: relative; z-index: 1; color: white; padding: 72px 0; }
.eyebrow { margin: 0 0 9px; color: var(--gold-deep); text-transform: uppercase; letter-spacing: .18em; font-weight: 800; font-size: 12px; }
.eyebrow-light { color: #f4d38c; }
.hero h1, .section h2, .final-cta h2 { font-family: Georgia, "Times New Roman", serif; letter-spacing: -.03em; }
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(3.1rem, 7vw, 6.2rem); line-height: .98; font-weight: 700; }
.hero-copy { max-width: 640px; margin: 28px 0 30px; font-size: clamp(1rem, 1.8vw, 1.25rem); color: rgba(255,255,255,.92); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.highlights { background: white; border-bottom: 1px solid var(--line); }
.highlight-grid { min-height: 105px; display: grid; grid-template-columns: repeat(5, 1fr); align-items: stretch; }
.highlight { display: flex; align-items: center; gap: 13px; padding: 20px 18px; border-right: 1px solid var(--line); }
.highlight:last-child { border-right: 0; }
.highlight-icon { display: grid; place-items: center; width: 37px; height: 37px; border-radius: 50%; background: var(--cream); color: var(--ink); font-weight: 900; flex: 0 0 auto; }
.highlight strong, .highlight small { display: block; }
.highlight strong { font-size: 13px; }
.highlight small { margin-top: 3px; color: var(--ink-soft); font-size: 10px; line-height: 1.35; }

.section { padding: 90px 0; }
.section-soft { background: var(--soft); }
.section-heading { max-width: 720px; margin-bottom: 38px; }
.centered { text-align: center; margin-inline: auto; }
.compact-heading { margin-bottom: 28px; }
.section h2 { margin: 0 0 14px; font-size: clamp(2.15rem, 4vw, 3.7rem); line-height: 1.08; }
.section-heading > p:last-child { color: var(--ink-soft); }

.rental-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.rental-card { position: relative; overflow: hidden; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 9px 24px rgba(16,43,53,.06); transition: transform .25s ease, box-shadow .25s ease; }
.rental-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.rental-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: center; background: #e8e5dd; }
.rental-card-body { padding: 25px; }
.card-kicker { margin: 0 0 4px; color: var(--gold-deep); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.rental-card h3 { font-family: Georgia, "Times New Roman", serif; font-size: 28px; margin: 0 0 10px; }
.rental-card p:not(.card-kicker) { color: var(--ink-soft); font-size: 14px; }
.card-actions { margin-top: 20px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.text-link { color: var(--gold-deep); font-weight: 800; font-size: 14px; }
.featured-card { border-color: rgba(184,137,47,.5); }
.featured-label { position: absolute; right: 14px; top: 14px; z-index: 2; color: white; background: var(--gold); border-radius: 999px; padding: 7px 11px; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; font-weight: 900; }

.location-section { background: #fff; }
.location-layout { display: grid; grid-template-columns: 1.15fr 1fr .72fr; gap: 26px; align-items: stretch; }
.location-image-wrap, .location-copy, .location-panel { border-radius: var(--radius); overflow: hidden; }
.location-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; min-height: 470px; }
.location-copy { background: var(--cream); padding: clamp(30px, 4vw, 50px); }
.location-copy h2 { font-size: clamp(2rem, 3.4vw, 3.25rem); }
.check-list { list-style: none; padding: 0; margin: 24px 0 28px; }
.check-list li { position: relative; padding-left: 28px; margin: 9px 0; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: white; font-size: 11px; font-weight: 900; }
.location-panel { padding: 30px 26px; border: 1px solid var(--line); background: white; }
.location-panel h3 { margin: 0 0 7px; font-family: Georgia, "Times New Roman", serif; font-size: 25px; }
.muted { color: #677b82; font-size: 13px; }
.destination-list { list-style: none; margin: 20px 0 0; padding: 0; }
.destination-list li { display: flex; align-items: center; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--line); font-weight: 700; font-size: 13px; }
.destination-list li:last-child { border-bottom: 0; }
.destination-list span { color: var(--gold-deep); width: 20px; }

.destination-cards { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.destination-card { min-height: 150px; border-radius: 14px; padding: 18px; color: white; display: flex; flex-direction: column; justify-content: flex-end; background-size: cover; background-position: center; box-shadow: inset 0 -95px 100px rgba(0,0,0,.52); transition: transform .2s ease; }
.destination-card:nth-child(1) { background-image: linear-gradient(0deg, rgba(4,18,23,.76), rgba(4,18,23,.08)), url("https://a0.muscache.com/im/pictures/hosting/Hosting-U3RheVN1cHBseUxpc3Rpbmc6MTEzMTIzNDI4MDU4NDM2OTk3Ng%3D%3D/original/efaee490-9e0f-4ffa-9a46-1497f3e10b2c.jpeg?im_w=720"); }
.destination-card:nth-child(2) { background-image: linear-gradient(0deg, rgba(4,18,23,.76), rgba(4,18,23,.08)), url("https://a0.muscache.com/im/pictures/miso/Hosting-1131234280584369976/original/6728c4f7-a00e-4fcb-afae-dd1af1896ca0.jpeg?im_w=720"); }
.destination-card:nth-child(3) { background-image: linear-gradient(0deg, rgba(4,18,23,.76), rgba(4,18,23,.08)), url("https://a0.muscache.com/im/pictures/miso/Hosting-36454114/original/c0b50813-7bfd-4893-b11a-45400d9516c4.jpeg?im_w=720"); }
.destination-card:nth-child(4) { background-image: linear-gradient(0deg, rgba(4,18,23,.76), rgba(4,18,23,.08)), url("https://a0.muscache.com/im/pictures/90ab16df-23d8-4e23-aa8f-2307d1325663.jpg?im_w=720"); }
.destination-card:nth-child(5) { background-image: linear-gradient(0deg, rgba(4,18,23,.76), rgba(4,18,23,.08)), url("https://a0.muscache.com/im/pictures/96595679-14df-44a2-aded-cce72cc822e4.jpg?im_w=720"); }
.destination-card:nth-child(6) { background-image: linear-gradient(0deg, rgba(4,18,23,.76), rgba(4,18,23,.08)), url("https://a0.muscache.com/im/pictures/8c94d4de-0578-4e53-81ed-6926c43fdf04.jpg?im_w=720"); }
.destination-card:hover { transform: translateY(-3px); }
.destination-card span { font-family: Georgia, "Times New Roman", serif; font-size: 19px; font-weight: 700; }
.destination-card small { margin-top: 5px; opacity: .9; }

.booking-section { padding-top: 70px; }
.booking-layout { display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 22px; align-items: stretch; }
.booking-layout > div:first-child { align-self: center; padding-right: 30px; }
.booking-layout h2 { font-size: clamp(2.2rem, 4vw, 3.6rem); }
.booking-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; background: white; box-shadow: 0 10px 26px rgba(16,43,53,.05); }
.booking-icon { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--cream); color: var(--gold-deep); font-weight: 900; margin-bottom: 17px; }
.booking-card h3 { margin: 0 0 7px; font-size: 20px; }
.booking-card p { min-height: 74px; color: var(--ink-soft); font-size: 14px; }

.review-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: center; }
.review-placeholder { border: 1px solid var(--line); border-radius: var(--radius); background: white; padding: clamp(28px, 5vw, 52px); box-shadow: var(--shadow); }
.stars { color: var(--gold); letter-spacing: .12em; font-size: 20px; }
.review-placeholder blockquote { margin: 15px 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.5rem, 2.7vw, 2.4rem); line-height: 1.25; }
.review-placeholder p { color: var(--ink-soft); }

.seo-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; }
.seo-copy p:first-child { margin-top: 0; }
.seo-copy p { color: var(--ink-soft); }

.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 55px; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; list-style: none; cursor: pointer; font-weight: 780; padding: 20px 44px 20px 0; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 0; top: 18px; font-size: 24px; color: var(--gold-deep); transition: transform .2s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { margin: -7px 0 20px; padding-right: 35px; color: var(--ink-soft); }

.final-cta { position: relative; overflow: hidden; background-image: linear-gradient(110deg, rgba(16,43,53,.94), rgba(16,43,53,.62)), url("https://a0.muscache.com/im/pictures/hosting/Hosting-U3RheVN1cHBseUxpc3Rpbmc6MTEzMTg3MDQwMTAwODEyMTgxMw%3D%3D/original/0201ba4d-6899-49f3-b2bd-c60d8e512945.jpeg?im_w=720"); background-size: cover; background-position: center; color: white; text-align: center; padding: 90px 0; }
.final-cta::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 15%, rgba(255,255,255,.08), transparent 35%), radial-gradient(circle at 90% 75%, rgba(184,137,47,.24), transparent 35%); }
.final-cta-inner { position: relative; z-index: 1; }
.final-cta h2 { margin: 0 0 12px; font-size: clamp(2.5rem, 5vw, 4.4rem); }
.final-cta p:not(.eyebrow) { color: rgba(255,255,255,.82); }
.centered-actions { justify-content: center; margin-top: 25px; }

.site-footer { background: #0d252e; color: white; padding: 65px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 50px; }
.footer-brand p { color: rgba(255,255,255,.65); max-width: 420px; }
.footer-logo .brand-text small { color: rgba(255,255,255,.6); }
.site-footer h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: #f0cf88; margin: 0 0 16px; }
.site-footer > .container a:not(.brand) { display: block; color: rgba(255,255,255,.72); margin: 8px 0; font-size: 14px; }
.site-footer > .container a:hover { color: white; }
.footer-bottom { margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; color: rgba(255,255,255,.55); font-size: 12px; }
.staging-badge { color: #f1d08a; letter-spacing: .12em; font-weight: 800; }

:focus-visible { outline: 3px solid #e2b859; outline-offset: 3px; }

@media (max-width: 1050px) {
  .primary-nav { gap: 17px; }
  .header-cta { display: none; }
  .highlight-grid { grid-template-columns: repeat(3, 1fr); }
  .highlight:nth-child(3) { border-right: 0; }
  .highlight:nth-child(n+4) { border-top: 1px solid var(--line); }
  .location-layout { grid-template-columns: 1fr 1fr; }
  .location-panel { grid-column: 1 / -1; }
  .destination-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 20px; }
  .destination-cards { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 72px; }
  .menu-toggle { display: block; margin-left: auto; }
  .primary-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 13px 4px; border-bottom: 1px solid var(--line); }
  .primary-nav a:last-child { border-bottom: 0; }
  .primary-nav a::after { display: none; }
  .hero { min-height: 570px; }
  .hero-shade { background: linear-gradient(90deg, rgba(3,15,19,.85), rgba(3,15,19,.46)); }
  .hero-content { padding: 60px 0; }
  .hero h1 { font-size: clamp(3rem, 13vw, 5rem); }
  .highlight-grid { grid-template-columns: 1fr 1fr; }
  .highlight { border-right: 1px solid var(--line); border-top: 1px solid var(--line); }
  .highlight:nth-child(2n) { border-right: 0; }
  .highlight:first-child, .highlight:nth-child(2) { border-top: 0; }
  .highlight:last-child { grid-column: 1 / -1; }
  .section { padding: 70px 0; }
  .rental-grid { grid-template-columns: 1fr; }
  .rental-card { display: grid; grid-template-columns: .92fr 1.08fr; }
  .rental-card img { height: 100%; aspect-ratio: auto; min-height: 290px; }
  .featured-label { left: 14px; right: auto; }
  .location-layout, .booking-layout, .review-layout, .seo-layout, .faq-layout { grid-template-columns: 1fr; }
  .location-image-wrap img { min-height: 350px; }
  .booking-layout > div:first-child { padding-right: 0; }
  .booking-card p { min-height: 0; }
  .destination-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 580px) {
  .brand-text strong { font-size: 18px; }
  .brand-mark { font-size: 29px; }
  .hero { min-height: 620px; }
  .hero-media { object-position: center; }
  .hero-shade { background: linear-gradient(0deg, rgba(3,15,19,.78), rgba(3,15,19,.42)), linear-gradient(90deg, rgba(3,15,19,.54), rgba(3,15,19,.10)); }
  .hero-content { align-self: end; padding: 85px 0 54px; }
  .hero h1 br { display: none; }
  .hero-actions .button { width: 100%; }
  .highlight-grid { grid-template-columns: 1fr; }
  .highlight, .highlight:nth-child(2n), .highlight:nth-child(3) { border-right: 0; border-top: 1px solid var(--line); }
  .highlight:first-child { border-top: 0; }
  .highlight:last-child { grid-column: auto; }
  .rental-card { display: block; }
  .rental-card img { aspect-ratio: 16 / 10; min-height: 0; }
  .destination-list { grid-template-columns: 1fr; }
  .destination-cards { grid-template-columns: 1fr; }
  .destination-card { min-height: 135px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { gap: 12px; flex-direction: column; }
}

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

.distance-note { margin: 18px 0 0; font-size: 11px; color: #6d7f85; line-height: 1.45; }


/* ===== V3 contact, availability, reservation request, WhatsApp ===== */
.contact-strip {
  background: var(--ink);
  color: rgba(255,255,255,.86);
  font-size: 11px;
  letter-spacing: .02em;
}
.contact-strip-inner {
  min-height: 28px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 9px;
}
.contact-strip a { color: #f3d58f; font-weight: 700; }
.contact-strip a:hover { color: white; }
.contact-separator { color: rgba(255,255,255,.28); }

.availability-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(184,137,47,.12), transparent 30%),
    var(--cream);
}
.availability-card {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 40px);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.site-form label > span,
.site-form .full-field > span {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 800;
  color: var(--ink);
}
.site-form input,
.site-form select,
.site-form textarea {
  width: 100%;
  border: 1px solid #cfd9d5;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  min-height: 48px;
  padding: 11px 13px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.site-form textarea { min-height: 115px; resize: vertical; }
.site-form input:focus,
.site-form select:focus,
.site-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(184,137,47,.13);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.form-grid-4 { grid-template-columns: 1fr 1fr 1.15fr .85fr; align-items: end; }
.form-submit-wrap { display: flex; align-items: end; }
.form-note { margin: 14px 0 0; color: #687c83; font-size: 11px; }
.form-result {
  margin-top: 18px;
  border-radius: 13px;
  padding: 15px 17px;
  font-size: 14px;
  line-height: 1.5;
}
.form-result.success {
  color: #173e2d;
  background: #edf8f1;
  border: 1px solid #b9ddc8;
}
.form-result.warning {
  color: #624818;
  background: #fff8e8;
  border: 1px solid #ecd59d;
}
.form-result.error {
  color: #6b2626;
  background: #fff0f0;
  border: 1px solid #e7baba;
}

.request-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 55px;
  align-items: start;
}
.request-intro { position: sticky; top: 130px; }
.request-intro h2 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.08;
}
.request-intro > p:not(.eyebrow) { color: var(--ink-soft); }
.request-form-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow);
}
.contact-mini-card {
  margin-top: 28px;
  background: var(--ink);
  color: white;
  border-radius: 15px;
  padding: 20px;
}
.contact-mini-card strong,
.contact-mini-card a { display: block; }
.contact-mini-card a { margin-top: 8px; color: #f3d58f; font-size: 14px; }
.decoration-fieldset {
  margin: 22px 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 17px;
}
.decoration-fieldset legend {
  padding: 0 7px;
  font-size: 12px;
  font-weight: 800;
}
.check-option,
.consent-option {
  display: inline-flex !important;
  align-items: flex-start;
  gap: 8px;
  margin: 5px 16px 5px 0;
  font-size: 13px;
}
.check-option input,
.consent-option input {
  width: auto;
  min-height: auto;
  margin: 4px 0 0;
}
.check-option span,
.consent-option span { margin: 0 !important; font-weight: 600 !important; }
.full-field { display: block; margin: 0 0 18px; }
.consent-option { display: flex !important; margin: 5px 0 20px; }
.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-section { background: #fff; }
.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 50px;
  align-items: center;
}
.contact-layout h2 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.08;
}
.contact-layout > div:first-child > p:not(.eyebrow) { color: var(--ink-soft); }
.contact-card {
  display: grid;
  gap: 12px;
  background: var(--cream);
  border: 1px solid rgba(184,137,47,.16);
  border-radius: var(--radius);
  padding: 22px;
}
.contact-method {
  display: flex;
  gap: 15px;
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 15px 17px;
  transition: transform .2s, box-shadow .2s;
}
.contact-method:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(16,43,53,.08); }
.contact-method-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: white;
  font-weight: 900;
}
.contact-method small,
.contact-method strong { display: block; }
.contact-method small {
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: 9px;
  font-weight: 900;
}
.contact-method strong { font-size: 14px; }

.whatsapp-bubble {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 150;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 18px 0 8px;
  border-radius: 999px;
  background: var(--gold);
  color: white;
  box-shadow: 0 14px 34px rgba(16,43,53,.27);
  font-weight: 800;
  font-size: 13px;
  transition: transform .2s, background .2s;
}
.whatsapp-bubble:hover { transform: translateY(-3px); background: var(--gold-deep); }
.whatsapp-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.17);
  font-size: 16px;
}
.whatsapp-label { white-space: nowrap; }

@media (max-width: 900px) {
  .form-grid-4 { grid-template-columns: 1fr 1fr; }
  .request-layout, .contact-layout { grid-template-columns: 1fr; }
  .request-intro { position: static; }
}
@media (max-width: 580px) {
  .contact-strip-inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px 7px;
    padding: 5px 0;
    line-height: 1.25;
  }
  .contact-strip-inner > span:first-child { display: none; }
  .form-grid, .form-grid-4 { grid-template-columns: 1fr; }
  .whatsapp-bubble {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding-right: 13px;
  }
  .whatsapp-icon { width: 34px; height: 34px; }
}


.alternative-availability {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(107,38,38,.16);
}
.alternative-availability .text-link {
  display: inline-block;
  margin-top: 6px;
}


/* V3.1 availability feedback */
#availability-result {
  width: 100%;
  margin-top: 18px;
  display: block;
}
#availability-result[hidden] {
  display: none !important;
}
#availability-result strong {
  font-size: 15px;
}
.alternative-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 10px;
}
.alternative-property-button {
  appearance: none;
  border: 1px solid var(--gold);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 13px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.alternative-property-button:hover {
  background: var(--gold);
  color: #fff;
}
.site-form button[disabled] {
  opacity: .72;
  cursor: wait;
}
