:root {
  --ink: #251c1a;
  --muted: #6d625e;
  --paper: #fffaf3;
  --soft: #f4eee5;
  --gold: #c8a65a;
  --rose: #8d4c48;
  --green: #1f7a50;
  --white: #fff;
  --shadow: 0 18px 45px rgba(38, 28, 25, .14);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
}

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

a { color: inherit; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 243, .92);
  border-bottom: 1px solid rgba(200, 166, 90, .28);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: clamp(132px, 16vw, 190px);
  height: auto;
  max-height: 52px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 14px;
}

.main-nav a {
  text-decoration: none;
  color: var(--ink);
}

.nav-cta {
  padding: 10px 18px;
  background: var(--ink);
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(37, 28, 26, .2);
  background: transparent;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 120px clamp(20px, 7vw, 96px) 70px;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 12%;
  transform: scale(1.16);
  transform-origin: 56% 12%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(24, 18, 16, .82), rgba(24, 18, 16, .46) 48%, rgba(24, 18, 16, .12));
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2, h3, p { overflow-wrap: anywhere; }

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(46px, 8vw, 96px);
}

h2 {
  font-size: clamp(32px, 5vw, 58px);
}

h3 {
  font-size: 25px;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.center-action {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
}

.button.primary {
  background: var(--gold);
  color: #211817;
}

.button.secondary {
  border-color: rgba(255, 255, 255, .7);
  color: var(--white);
}

.button.light {
  background: var(--white);
  color: var(--ink);
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  text-decoration: none;
  color: var(--white);
}

.section {
  padding: clamp(72px, 9vw, 124px) clamp(20px, 7vw, 96px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 420px);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  background: var(--white);
}

.intro > *,
.section-copy,
.quick-card {
  min-width: 0;
}

.thumbnail-ribbon {
  position: relative;
  z-index: 4;
  display: flex;
  gap: 12px;
  width: min(100%, 980px);
  max-width: 100%;
  margin-top: 30px;
  padding: 12px 4px 28px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
}

.thumbnail-ribbon img {
  flex: 0 0 78px;
  width: 78px;
  height: 96px;
  object-fit: cover;
  border: 2px solid rgba(200, 166, 90, .55);
  background: var(--paper);
  box-shadow: 0 8px 18px rgba(38, 28, 25, .12);
  cursor: zoom-in;
  transition: box-shadow .28s ease, border-color .28s ease, filter .28s ease;
}

.thumbnail-ribbon img:hover,
.thumbnail-ribbon img:focus {
  border-color: var(--gold);
  filter: saturate(1.08);
  box-shadow: 0 12px 28px rgba(38, 28, 25, .22);
}

.thumbnail-preview {
  position: fixed;
  z-index: 999;
  width: 234px;
  height: 288px;
  border: 3px solid var(--gold);
  background: var(--paper);
  box-shadow: 0 28px 70px rgba(38, 28, 25, .34);
  opacity: 0;
  transform: translateY(10px) scale(.96);
  transition: opacity .18s ease, transform .18s ease;
  pointer-events: none;
}

.thumbnail-preview.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.thumbnail-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-copy p,
.location-copy p {
  max-width: min(690px, 100%);
  color: var(--muted);
  font-size: 18px;
}

.quick-card {
  padding: 32px;
  background: var(--soft);
  border: 1px solid rgba(200, 166, 90, .32);
  box-shadow: var(--shadow);
}

.quick-card strong,
.quick-card span,
.quick-card a {
  display: block;
}

.quick-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.12;
}

.quick-card span {
  margin: 16px 0 22px;
  color: var(--muted);
}

.quick-card a {
  color: var(--rose);
  font-weight: 800;
}

.styles {
  background: #211817;
  color: var(--white);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

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

.style-grid article {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .04);
}

.style-grid article img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  object-position: center top;
  background: #160f0e;
  opacity: .9;
}

.style-grid article div {
  padding: 24px 28px 28px;
}

.style-grid span {
  color: var(--gold);
  font-weight: 800;
}

.style-grid p {
  color: rgba(255, 255, 255, .78);
}

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

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

.gallery figure {
  margin: 0;
  background: var(--white);
  box-shadow: 0 14px 35px rgba(38, 28, 25, .11);
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.gallery figcaption {
  padding: 14px 16px 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
}

.center-action {
  justify-content: center;
}

.conversion-band {
  padding: clamp(60px, 9vw, 96px) clamp(20px, 7vw, 96px);
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, #251c1a, #7b3f3f);
}

.conversion-band p {
  margin: 0 0 10px;
  color: #f1dcae;
  font-weight: 800;
  text-transform: uppercase;
}

.conversion-band h2 {
  max-width: 940px;
  margin: 0 auto 26px;
}

.location {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: stretch;
  background: var(--white);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.socials a {
  padding: 10px 14px;
  border: 1px solid rgba(37, 28, 26, .2);
  text-decoration: none;
}

.map-wrap {
  min-height: 390px;
  border: 1px solid rgba(200, 166, 90, .36);
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 7vw, 96px) 96px;
  color: rgba(255,255,255,.8);
  background: #211817;
}

.site-footer p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  z-index: 60;
  right: 20px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(31, 122, 80, .36);
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.floating-whatsapp strong {
  position: absolute;
  right: 72px;
  min-width: 184px;
  padding: 11px 15px;
  border-radius: 999px;
  background: var(--white);
  color: var(--green);
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 12px 28px rgba(38, 28, 25, .18);
  opacity: 1;
  transform: translateX(0);
  transition: transform .24s ease;
  pointer-events: none;
}

.floating-whatsapp strong::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -7px;
  width: 14px;
  height: 14px;
  background: var(--white);
  transform: translateY(-50%) rotate(45deg);
}

.floating-whatsapp:hover strong,
.floating-whatsapp:focus strong {
  opacity: 1;
  transform: translateX(-4px);
}

@keyframes whatsapp-bubble-in {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.back-top {
  position: fixed;
  z-index: 30;
  right: 20px;
  bottom: 92px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 12px 25px rgba(37, 28, 26, .28);
}

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

  .main-nav {
    position: absolute;
    top: 72px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--paper);
    border: 1px solid rgba(200, 166, 90, .32);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open { display: flex; }

  .main-nav a {
    padding: 13px 12px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: 92vh;
    padding-top: 112px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(24, 18, 16, .62), rgba(24, 18, 16, .72));
  }

  .hero-media img {
    object-position: 52% 10%;
    transform: scale(1.22);
    transform-origin: 52% 10%;
  }

  .intro,
  .style-grid,
  .gallery,
  .location {
    grid-template-columns: 1fr;
  }

  .style-grid article {
    min-height: 0;
  }

  .thumbnail-ribbon {
    padding-bottom: 22px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand img {
    width: 146px;
    max-height: 48px;
  }

  h1 {
    font-size: 44px;
  }

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

  .quick-card {
    padding: 24px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }

  .floating-whatsapp svg {
    width: 32px;
    height: 32px;
  }

  .floating-whatsapp strong {
    right: 66px;
    min-width: 170px;
    font-size: 13px;
  }

  .back-top {
    right: 14px;
    bottom: 104px;
  }
}
