:root {
  --color-nero: #1b1a1a;
  --color-gold: #c7a168;
  --color-gold-dark: #b18a4f;
  --color-steel: #485057;
  --color-marble: #f6f3ee;
  --color-burgundy: #8c3a3a;
  --shadow-soft: 0 24px 48px rgba(27, 26, 26, 0.18);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: var(--color-marble);
  color: var(--color-steel);
  line-height: 1.7;
}

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

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(27, 26, 26, 0.9);
  backdrop-filter: blur(16px);
  z-index: 20;
  border-bottom: 1px solid rgba(199, 161, 104, 0.2);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.6rem 0;
}

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

.nav {
  display: flex;
  gap: 1.8rem;
  font-weight: 500;
}

.nav a {
  color: rgba(246, 243, 238, 0.85);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.nav a:hover {
  color: #fff;
}

.header-cta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  border: 2px solid transparent;
  padding: 0.8rem 1.8rem;
  font-family: "JetBrains Mono", monospace;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-nero);
  box-shadow: 0 16px 30px rgba(199, 161, 104, 0.25);
}

.btn-primary:hover {
  background: var(--color-gold-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-gold);
  border-color: rgba(199, 161, 104, 0.6);
}

.btn-secondary:hover {
  background: rgba(199, 161, 104, 0.12);
}

.btn-outline {
  background: transparent;
  color: rgba(246, 243, 238, 0.9);
  border-color: rgba(246, 243, 238, 0.4);
}

.btn-outline:hover {
  border-color: rgba(246, 243, 238, 0.7);
  color: #fff;
}

.hero {
  background: var(--color-nero);
  color: #fff;
  padding: 7rem 0 6rem;
}

.hero__grid {
  display: grid;
  gap: 3.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.75rem;
  font-family: "JetBrains Mono", monospace;
  color: rgba(199, 161, 104, 0.8);
}

.eyebrow--light {
  color: rgba(199, 161, 104, 0.9);
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  color: var(--color-nero);
  margin-top: 0;
}

.hero h1,
.hero h2,
.hero h3,
.hero p,
.hero strong {
  color: #fff;
}

h1 {
  font-size: clamp(2.4rem, 3.8vw, 4rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.9rem);
}

h3 {
  font-size: 1.75rem;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0 1.5rem;
}

.hero__details {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.hero__details li {
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.08em;
}

.hero__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(199, 161, 104, 0.4);
  box-shadow: var(--shadow-soft);
}

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

.hero__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(246, 243, 238, 0.9);
  color: var(--color-nero);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-family: "JetBrains Mono", monospace;
}

.section {
  padding: 6rem 0;
}

.section--alt {
  background: #fff;
}

.section--dark {
  background: linear-gradient(120deg, #1b1a1a, #242323);
  color: #fff;
}

.section__header {
  max-width: 620px;
  margin-bottom: 3.2rem;
}

.grid {
  display: grid;
  gap: 2.5rem;
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(27, 26, 26, 0.1);
  display: grid;
  gap: 1.2rem;
}

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.price {
  font-family: "JetBrains Mono", monospace;
  color: var(--color-burgundy);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.service-card li::before {
  content: "•";
  color: var(--color-gold);
  margin-right: 0.4rem;
}

.lookbook__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}

.lookbook__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
}

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

.lookbook__item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(27, 26, 26, 0) 0%, rgba(27, 26, 26, 0.85) 100%);
  color: #fff;
  padding: 1.2rem;
  font-size: 0.95rem;
}

.about__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.about__copy {
  display: grid;
  gap: 1.5rem;
}

.social-links {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.08em;
}

.social-link {
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 600;
}

.social-link:hover {
  color: var(--color-gold-dark);
}

.about__highlight {
  display: flex;
  justify-content: center;
}

.about-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(27, 26, 26, 0.08);
  max-width: 320px;
  display: grid;
  gap: 1.5rem;
}

.about-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.about-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.about-card li::before {
  content: "•";
  color: var(--color-gold);
  margin-right: 0.5rem;
  line-height: 1.2;
}

.booking__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.booking__contact {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.booking__note {
  margin-top: 1.6rem;
  font-size: 0.95rem;
}

.booking__note a {
  color: var(--color-gold);
  text-decoration: none;
}

.booking__widget {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(27, 26, 26, 0.08);
  overflow: hidden;
  display: grid;
}

.booking__widget iframe {
  min-height: 520px;
  border: none;
  width: 100%;
}

.widget__fallback {
  margin: 0;
  padding: 1rem 1.4rem;
  background: rgba(198, 161, 104, 0.08);
  font-size: 0.9rem;
  border-top: 1px solid rgba(27, 26, 26, 0.08);
}

.widget__fallback a {
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 600;
}

.section--dark .location__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.section--dark .location__info h2,
.section--dark .location__info p,
.section--dark .location__info li,
.section--dark .location__info a {
  color: #fff;
}

.location__info ul {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0;
  display: grid;
  gap: 0.7rem;
}

.location__social {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.08em;
}

.location__social a {
  color: var(--color-gold);
  text-decoration: none;
}

.location__map .map-placeholder {
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(199, 161, 104, 0.5);
  padding: 2.8rem 2rem;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(246, 243, 238, 0.85);
  background: rgba(246, 243, 238, 0.08);
}

.site-footer {
  background: var(--color-nero);
  color: rgba(246, 243, 238, 0.75);
  padding: 1.5rem 0;
  font-size: 0.85rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
}

@media (max-width: 900px) {
  .site-header .container {
    flex-wrap: wrap;
  }

  .nav {
    width: 100%;
    order: 3;
    justify-content: center;
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    background: rgba(27, 26, 26, 0.95);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-top: 0.5rem;
  }

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

  .header-cta {
    order: 2;
    display: none;
  }

  .hero {
    padding-top: 6rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .site-header .container {
    padding: 0.6rem 0.5rem;
    gap: 1rem;
  }

  .nav {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .nav a {
    font-size: 0.85rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .header-cta {
    width: 100%;
    flex-direction: column;
  }

  .mobile-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    padding: 5.5rem 0 4.5rem;
  }

  .hero__grid {
    gap: 2rem;
  }

  .hero__cta {
    flex-direction: column;
  }

  .hero__details {
    gap: 0.5rem;
  }

  .section {
    padding: 3.8rem 0;
  }

  .service-card {
    padding: 1.8rem 1.5rem;
  }

  .about__highlight {
    justify-content: stretch;
  }

  .about-card {
    max-width: 100%;
  }

  .booking__widget iframe {
    min-height: 420px;
  }

  .location__map iframe {
    min-height: 220px;
  }
}

.location__map iframe {
  width: 100%;
  min-height: 260px;
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.services--secondary .service-card {
  background: #fff;
}.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-gold);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.2rem 0.5rem;
}

.mobile-book {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  background: var(--color-gold);
  color: var(--color-nero);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 18px 30px rgba(27, 26, 26, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 30;
  display: none;
}

.mobile-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(27, 26, 26, 0.35);
}


.faq__items {
  display: grid;
  gap: 1.6rem;
}

.faq__item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(27, 26, 26, 0.08);
}

.faq__item h3 {
  margin-bottom: 0.6rem;
  color: var(--color-nero);
}

.faq__item p {
  margin: 0;
}

.location-note {
  margin-top: 0.4rem;
  color: rgba(246, 243, 238, 0.85);
  font-size: 0.95rem;
}
.mobile-book {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  background: var(--color-gold);
  color: var(--color-nero);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 18px 30px rgba(27, 26, 26, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 30;
  display: none;
}

.mobile-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(27, 26, 26, 0.35);
}



.mobile-book {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  background: var(--color-gold);
  color: var(--color-nero);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 18px 30px rgba(27, 26, 26, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 30;
  display: none;
}

.mobile-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(27, 26, 26, 0.35);
}

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

@media (max-width: 900px) {
  .header-cta {
    display: none;
  }

  .mobile-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 900px) {
  .header-cta {
    display: none;
  }

  .mobile-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
