:root {
  --black: #080808;
  --black-soft: #111111;
  --charcoal: #181818;
  --cream: #f5f0e6;
  --white: #ffffff;
  --muted: #b9b5ac;
  --gold: #d5a536;
  --gold-light: #f0c864;
  --gold-dark: #8f6816;
  --line: rgba(213, 165, 54, 0.24);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  transform: translateY(-150%);
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
}

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

.brand img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-name {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 38px);
}

.primary-navigation > a:not(.button) {
  position: relative;
  color: #ddd8ce;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.primary-navigation > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  content: "";
  transition: transform 180ms ease;
}

.primary-navigation > a:not(.button):hover::after,
.primary-navigation > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: var(--gold-light);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.button-small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 0.68rem;
}

.button-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #120e05;
  box-shadow: 0 10px 40px rgba(213, 165, 54, 0.12);
}

.button-gold:hover {
  background: linear-gradient(135deg, #f7d67b, var(--gold-light));
}

.button-outline {
  border-color: rgba(245, 240, 230, 0.35);
  color: var(--cream);
}

.button-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 1) 0%, rgba(8, 8, 8, 0.92) 48%, rgba(8, 8, 8, 0.72) 100%),
    repeating-linear-gradient(135deg, transparent 0 16px, rgba(213, 165, 54, 0.025) 16px 17px);
}

.hero::after {
  position: absolute;
  inset: auto -10% -42% 45%;
  width: 70vw;
  height: 70vw;
  border: 1px solid rgba(213, 165, 54, 0.1);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 5%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(213, 165, 54, 0.12), transparent 65%);
  filter: blur(12px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100svh;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(30px, 5vw, 90px);
  padding-top: 112px;
  padding-bottom: 84px;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 42px;
  height: 1px;
  background: var(--gold);
  content: "";
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  line-height: 0.98;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(4rem, 7.6vw, 7.4rem);
  font-weight: 600;
  letter-spacing: -0.045em;
}

h1 span {
  color: var(--gold-light);
  font-style: italic;
}

.hero-intro {
  max-width: 630px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-notes {
  display: flex;
  gap: 22px;
  margin-top: 46px;
  color: #8f8a80;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-notes span:not(:last-child)::after {
  margin-left: 22px;
  color: var(--gold-dark);
  content: "•";
}

.hero-visual {
  display: grid;
  place-items: center;
}

.hero-frame {
  position: relative;
  width: min(100%, 570px);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 60%),
    #050505;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.48);
}

.hero-frame::before {
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(213, 165, 54, 0.12);
  content: "";
  pointer-events: none;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame-corner {
  position: absolute;
  z-index: 3;
  width: 46px;
  height: 46px;
  pointer-events: none;
}

.frame-corner-top {
  top: -9px;
  left: -9px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.frame-corner-bottom {
  right: -9px;
  bottom: -9px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateX(-50%);
  color: #777269;
  font-size: 0.63rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 1px;
  height: 42px;
  overflow: hidden;
  background: #33302b;
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  background: var(--gold);
  content: "";
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateY(-100%); }
  50%, 100% { transform: translateY(100%); }
}

.section {
  padding: clamp(90px, 11vw, 150px) 0;
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 60px;
  margin-bottom: 66px;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(3.2rem, 5.8vw, 5.8rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.section-heading > p,
.about-copy > p,
.contact-copy > p {
  margin-bottom: 0;
  color: var(--muted);
}

.services {
  background: var(--cream);
  color: var(--black);
}

.services .eyebrow,
.about .eyebrow {
  color: var(--gold-dark);
}

.services .section-heading > p {
  color: #625e56;
}

.service-grid {
  display: grid;
  border-top: 1px solid rgba(8, 8, 8, 0.15);
  border-left: 1px solid rgba(8, 8, 8, 0.15);
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  position: relative;
  min-height: 280px;
  padding: 38px;
  overflow: hidden;
  border-right: 1px solid rgba(8, 8, 8, 0.15);
  border-bottom: 1px solid rgba(8, 8, 8, 0.15);
  transition: background-color 180ms ease, color 180ms ease;
}

.service-card::after {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(213, 165, 54, 0.35);
  border-radius: 50%;
  content: "";
  transition: transform 240ms ease;
}

.service-card:hover {
  background: var(--black-soft);
  color: var(--cream);
}

.service-card:hover::after {
  transform: scale(1.3);
}

.service-number {
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.service-card h3 {
  margin: 58px 0 18px;
  font-size: 2.1rem;
  font-weight: 600;
}

.service-card p {
  max-width: 310px;
  margin-bottom: 0;
  color: #706b62;
  font-size: 0.9rem;
}

.service-card:hover p {
  color: #bdb8ae;
}

.about {
  background: #0e0e0e;
}

.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(54px, 8vw, 120px);
}

.about-mark {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.about-mark::after {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(143, 104, 22, 0.2);
  content: "";
  pointer-events: none;
}

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

.about-copy h2 {
  margin-bottom: 34px;
}

.about-copy > p {
  max-width: 640px;
}

.values-grid {
  display: grid;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.values-grid div {
  display: grid;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  grid-template-columns: 54px 1fr;
}

.values-grid strong {
  color: var(--gold-light);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.values-grid span {
  color: #d4cfc5;
  font-size: 0.88rem;
}

.booking-strip {
  padding: 66px 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
}

.booking-strip .eyebrow {
  color: #5a400b;
}

.booking-strip .eyebrow::before {
  background: #5a400b;
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.booking-steps div {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 80px;
  padding: 12px 28px;
  border-left: 1px solid rgba(8, 8, 8, 0.25);
}

.booking-steps div:last-child {
  border-right: 1px solid rgba(8, 8, 8, 0.25);
}

.booking-steps span {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 700;
}

.booking-steps p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact {
  background:
    radial-gradient(circle at 20% 0%, rgba(213, 165, 54, 0.08), transparent 38%),
    var(--black);
}

.contact-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(50px, 9vw, 130px);
}

.contact-copy h2 {
  margin-bottom: 28px;
}

.contact-copy > p {
  max-width: 500px;
  margin-bottom: 32px;
}

.phone-link {
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.booking-form {
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  background: #101010;
}

.form-row {
  margin-bottom: 26px;
}

.form-row label {
  display: block;
  margin-bottom: 9px;
  color: #ddd7cc;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-row label span {
  color: #777269;
  font-weight: 400;
  text-transform: none;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #3b3833;
  border-radius: 0;
  background: transparent;
  color: var(--cream);
  outline: 0;
}

.form-row input,
.form-row select {
  height: 54px;
}

.form-row textarea {
  padding: 14px 0;
  resize: vertical;
}

.form-row select {
  color-scheme: dark;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold);
}

.form-note {
  margin: 14px 0 0;
  color: #777269;
  font-size: 0.72rem;
  text-align: center;
}

.site-footer {
  padding: 38px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #050505;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

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

.footer-brand .brand-name {
  font-size: 1.15rem;
}

.site-footer p {
  margin: 0;
  color: #777269;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 7px 18px 7px 7px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: #1f9d55;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  color: white;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  background: #25b865;
}

.floating-whatsapp span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 700;
}

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

  .primary-navigation {
    position: fixed;
    inset: 92px 0 auto;
    display: flex;
    max-height: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    background: rgba(8, 8, 8, 0.98);
    transition: max-height 220ms ease;
  }

  .primary-navigation.is-open {
    max-height: calc(100svh - 92px);
    border-bottom: 1px solid var(--line);
  }

  .primary-navigation > a:not(.button) {
    padding: 18px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .primary-navigation .button {
    margin: 18px 24px 24px;
  }

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

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

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

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 142px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-mark {
    width: min(100%, 560px);
  }

  .booking-steps {
    grid-template-columns: 1fr;
  }

  .booking-steps div,
  .booking-steps div:last-child {
    border-right: 1px solid rgba(8, 8, 8, 0.25);
    border-bottom: 1px solid rgba(8, 8, 8, 0.25);
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 78px;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .primary-navigation {
    inset: 78px 0 auto;
  }

  .hero-grid {
    min-height: 100svh;
    padding-top: 118px;
  }

  h1 {
    font-size: clamp(3.4rem, 17vw, 5rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-notes {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    margin-top: 34px;
  }

  .hero-notes span:not(:last-child)::after {
    content: none;
  }

  .scroll-cue {
    display: none;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 230px;
    padding: 28px;
  }

  .service-card h3 {
    margin-top: 42px;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .booking-form {
    padding: 26px 20px;
  }

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

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}

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

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