:root {
  --bg: #050505;
  --panel: #12110f;
  --panel-2: #191816;
  --text: #f6f1e8;
  --muted: #b9afa0;
  --line: rgba(246, 241, 232, 0.14);
  --gold: #c9a45f;
  --gold-bright: #f0cf85;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 76px;
  padding: 14px max(20px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  justify-self: start;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand img,
.site-footer img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: center;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #f3eee5;
  font-size: 1rem;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  justify-self: end;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 86vh;
  padding: 84px 20px 64px;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(0deg, rgba(5, 5, 5, 0.68) 0%, rgba(5, 5, 5, 0) 25%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.72) 34%, rgba(5, 5, 5, 0.24) 72%, rgba(5, 5, 5, 0.48) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.02) 0%, rgba(5, 5, 5, 0.7) 100%);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(1.68) saturate(0.94) contrast(1.02);
}

.hero-content {
  align-self: center;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin-top: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 8vw, 7.8rem);
  line-height: 0.9;
}

.title-number {
  position: relative;
  top: -0.08em;
  display: inline-block;
}

.hero-copy {
  max-width: 590px;
  margin: 0 0 30px;
  font-weight: 500;
  color: #e7ded0;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn svg,
.floating-whatsapp svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  flex: 0 0 auto;
}

.btn:hover,
.btn:focus-visible,
.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  color: #111;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 18px 36px rgba(201, 164, 95, 0.22);
}

.btn-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(16, 16, 16, 0.72);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.section-heading h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1;
}

.service-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 212px;
  padding: 24px;
}

.service-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.service-shot {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  overflow: hidden;
}

.service-shot img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  object-fit: cover;
}

.service-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.service-card h3 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid rgba(201, 164, 95, 0.38);
  border-radius: 50%;
  color: var(--gold-bright);
  font-weight: 900;
}

.service-card p,
.review-card p,
.location-content p {
  color: var(--muted);
}

.price {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  padding: 8px 12px;
  border: 1px solid rgba(240, 207, 133, 0.32);
  border-radius: 999px;
  color: var(--gold-bright);
  background: rgba(240, 207, 133, 0.08);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold-bright);
  font-weight: 800;
}

.gallery,
.place-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 12px;
}

.gallery-item,
.place-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  overflow: hidden;
}

.gallery-item.large,
.place-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.place-card.wide {
  grid-column: 1 / -1;
}

.gallery-item img,
.place-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.gallery-item-top img {
  object-position: center 28%;
}

.gallery-item:hover img,
.place-card:hover img {
  transform: scale(1.045);
}

.place-section {
  padding-top: 20px;
}

.place-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: auto;
}

.place-card.square {
  aspect-ratio: 1 / 1;
}

.review-card {
  padding: 24px;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.review-head img {
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

.review-head div {
  display: grid;
  gap: 4px;
}

.review-card strong {
  font-size: 1.05rem;
}

.review-card span {
  color: var(--gold-bright);
  font-size: 0.86rem;
  font-weight: 800;
}

.review-card p {
  margin: 0;
}

.location {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.location-content {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.location-content h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 16px;
}

.contact-list a {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 800;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  border-color: rgba(240, 207, 133, 0.54);
  background: rgba(240, 207, 133, 0.08);
  outline: none;
}

.contact-list span {
  color: var(--gold-bright);
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.social-links a,
.site-footer nav a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-bright);
  font-weight: 800;
  transition: border-color 180ms ease, background 180ms ease;
}

.social-links a svg,
.site-footer nav a svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a:last-child svg,
.site-footer nav a:last-child svg {
  fill: currentColor;
  stroke: none;
}

.social-links a:hover,
.social-links a:focus-visible,
.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  border-color: rgba(240, 207, 133, 0.54);
  background: rgba(240, 207, 133, 0.08);
  outline: none;
}

.hours {
  display: grid;
  gap: 10px;
  margin: 24px 0 26px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(240, 207, 133, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.hours h3 {
  margin: 0;
  color: var(--gold-bright);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hours dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.hours div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.hours dt,
.hours dd {
  margin: 0;
}

.hours dt {
  color: #e0dcd5;
  font-size: 0.98rem;
}

.hours dd {
  color: var(--text);
  font-weight: 800;
  font-size: 1rem;
  text-align: right;
}

.map-wrap {
  position: relative;
  min-height: 590px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #d8d1c4;
  overflow: hidden;
}

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

.map-fallback {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  max-width: 460px;
  padding: 16px;
  border: 1px solid rgba(240, 207, 133, 0.28);
  border-radius: 8px;
  color: var(--text);
  background: rgba(5, 5, 5, 0.68);
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.map-fallback strong {
  color: var(--gold-bright);
}

.map-fallback span {
  color: #e7ded0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer div {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.site-footer p {
  margin: 0;
  text-align: right;
}

.floating-whatsapp {
  position: fixed;
  z-index: 18;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: #111;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.36);
  transition: transform 180ms ease;
}

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

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

  .nav-toggle {
    display: flex;
    margin-left: 20px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 6px;
    right: 6px;
    display: grid;
    justify-self: stretch;
    justify-items: stretch;
    gap: 6px;
    padding: 14px;
    width: calc(100vw - 12px);
    max-width: none;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(5, 5, 5, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    display: flex;
    width: 100%;
    border-radius: 8px;
    padding: 15px 16px;
    font-size: 1.02rem;
  }

  .service-showcase,
  .service-grid,
  .review-grid,
  .location,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section-heading.split {
    align-items: start;
    flex-direction: column;
  }

  .gallery,
  .place-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 230px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 430px;
  }

  .site-footer {
    align-items: flex-start;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 68svh;
    padding: 66px 16px 34px;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(5, 5, 5, 0.62) 0%, rgba(5, 5, 5, 0) 20%),
      linear-gradient(180deg, rgba(5, 5, 5, 0.42) 0%, rgba(5, 5, 5, 0.76) 45%, #050505 100%);
  }

  .hero-media img {
    object-position: center 42%;
    opacity: 0.78;
  }

  h1 {
    font-size: clamp(3.05rem, 17vw, 4.45rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .section,
  .site-footer {
    width: calc(100% - 28px);
  }

  .section {
    padding: 48px 0;
  }

  .gallery,
  .place-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }

  .service-showcase .service-shot:nth-child(-n + 2) {
    display: none;
  }

  .service-showcase .service-shot:last-child img {
    aspect-ratio: 16 / 10;
  }

  .gallery-item.large,
  .place-card.large,
  .place-card.wide,
  .place-card.square {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: auto;
  }

  .location-content {
    padding: 24px;
  }

  .hours div {
    align-items: start;
    flex-direction: column;
    gap: 2px;
  }

  .hours dd {
    text-align: left;
  }
}
