:root {
  --black: #090909;
  --charcoal: #191919;
  --cream: #f1ede5;
  --white: #fffdf8;
  --gold: #c99b42;
  --gold-light: #e6c578;
  --brown: #4b2b1f;
  --muted: #b9b1a5;
  --border: rgba(201,155,66,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--cream);
  background:
    radial-gradient(circle at 15% 15%, rgba(201,155,66,.08), transparent 28%),
    linear-gradient(180deg, #0b0b0b, #14100e 45%, #090909);
}
img { width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8,8,8,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-weight: 700;
}
.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  letter-spacing: .02em;
}
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ddd6cc;
}
.nav-links a:hover { color: var(--gold-light); }
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: white;
  font-size: 26px;
}

.hero {
  min-height: 100vh;
  position: relative;
  padding: 150px 7vw 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5,5,5,.95) 0%, rgba(5,5,5,.72) 45%, rgba(5,5,5,.2) 100%),
    url("assets/brand-hero.png") center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(120deg, rgba(255,255,255,.025) 0 2px, transparent 2px 9px);
}
.hero-content { position: relative; max-width: 760px; z-index: 2; }
.eyebrow {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: "Cormorant Garamond", serif; margin-top: 0; }
h1 {
  margin-bottom: 22px;
  font-size: clamp(4.3rem, 8.5vw, 8.5rem);
  line-height: .84;
  font-weight: 600;
  letter-spacing: -.045em;
}
h1 span {
  color: var(--white);
  text-shadow: 0 0 0 var(--gold);
  -webkit-text-stroke: 1px var(--gold);
}
.hero-copy {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.8;
  color: #d5cec3;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: .25s ease;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #12100d;
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.07); }
.btn-ghost { border-color: rgba(255,255,255,.55); color: white; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-light { background: var(--white); color: var(--black); }
.full-width { width: 100%; }

.hero-badge {
  position: absolute;
  right: 5vw;
  bottom: 4vw;
  width: 145px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid var(--gold);
  background: rgba(6,6,6,.6);
  backdrop-filter: blur(8px);
  border-radius: 50%;
}
.hero-badge span {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  line-height: .8;
}
.hero-badge small {
  margin-top: -26px;
  font-size: 8px;
  letter-spacing: .2em;
  color: var(--gold-light);
}

.section { padding: 110px 7vw; }
.section-heading { max-width: 780px; margin-bottom: 58px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2,
.lookbook-copy h2,
.contact-panel h2 {
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: .95;
  margin-bottom: 18px;
}
.section-heading > p:last-child { color: var(--muted); line-height: 1.8; }

.intro {
  background:
    linear-gradient(rgba(14,12,11,.94), rgba(14,12,11,.94)),
    repeating-linear-gradient(120deg, #f4eee4 0 22px, #111 22px 44px);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}
.frame {
  padding: 10px;
  border: 1px solid var(--border);
  background: #0b0b0b;
  box-shadow: 0 26px 60px rgba(0,0,0,.35);
}
.intro-copy p {
  color: #cfc6ba;
  font-size: 16px;
  line-height: 1.9;
}
.signature {
  margin-top: 35px;
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  color: var(--gold-light);
  font-style: italic;
}

.services { background: #0a0a0a; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.service-card {
  min-height: 310px;
  padding: 34px;
  position: relative;
  border: 1px solid rgba(255,255,255,.1);
  background:
    linear-gradient(140deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  overflow: hidden;
}
.service-card::after {
  content:"";
  position:absolute;
  right:-60px; bottom:-60px;
  width:170px; height:170px;
  border:1px solid rgba(201,155,66,.2);
  transform: rotate(35deg);
}
.service-card.featured {
  background:
    linear-gradient(140deg, rgba(201,155,66,.18), rgba(255,255,255,.02));
  border-color: var(--border);
}
.service-card.wide {
  grid-column: 1 / -1;
  min-height: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}
.service-number {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
}
.service-card h3 {
  font-size: 42px;
  margin: 24px 0 12px;
}
.service-card p {
  max-width: 540px;
  color: #bdb5a8;
  line-height: 1.75;
}
.price {
  margin-top: 28px;
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  color: var(--white);
}
.service-card small { color: var(--gold-light); letter-spacing: .08em; }
.price-block { text-align: right; }
.pricing-note {
  margin-top: 24px;
  color: #8f887f;
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
}

.lookbook {
  background:
    linear-gradient(90deg, rgba(27,16,12,.98), rgba(10,10,10,.96));
}
.lookbook-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.lookbook-copy p:last-child { color: #bdb5a8; line-height: 1.8; }
.dark-frame { background: #000; }

.booking {
  background:
    radial-gradient(circle at 80% 10%, rgba(201,155,66,.12), transparent 28%),
    #0a0a0a;
}
.booking-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}
.calendar-card, .booking-form {
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.035);
  padding: 28px;
}
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.calendar-header h3 { font-size: 34px; margin: 0; }
.calendar-nav {
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}
.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.calendar-weekdays {
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  letter-spacing: .12em;
}
.calendar-day {
  min-height: 62px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  color: #777;
  position: relative;
}
.calendar-day.available {
  color: var(--white);
  cursor: pointer;
  border-color: rgba(201,155,66,.32);
}
.calendar-day.available:hover { background: rgba(201,155,66,.13); }
.calendar-day.selected {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #111;
  border-color: var(--gold-light);
  font-weight: 700;
}
.calendar-day.empty { border-color: transparent; background: transparent; }
.calendar-day.today::after {
  content: "";
  position: absolute;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-light);
  bottom: 7px; left: 50%; transform: translateX(-50%);
}
.calendar-legend {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #aaa197;
  font-size: 11px;
}
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 6px; }
.available-dot { background: var(--gold); }
.selected-dot { background: var(--white); border: 1px solid var(--gold); }
.unavailable-dot { background: #444; }

.booking-form h3 { font-size: 36px; margin-bottom: 22px; }
.booking-form label {
  display: block;
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: #d5cec4;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  color: var(--white);
  background: #111;
  border: 1px solid rgba(255,255,255,.12);
  outline: none;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus { border-color: var(--gold); }
.booking-form option { background: #111; }
.form-note { color: #8f887f; font-size: 10px; line-height: 1.5; }

.contact { padding-top: 40px; }
.contact-panel {
  padding: 60px;
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 60px;
  align-items: center;
  color: #17120c;
  background:
    linear-gradient(135deg, rgba(255,255,255,.5), transparent),
    linear-gradient(135deg, var(--gold-light), #a8752b);
}
.contact-details { display: grid; gap: 18px; }
.contact-details > a:not(.btn) {
  font-weight: 700;
  font-size: 17px;
}

footer {
  padding: 45px 7vw;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #9d958a;
}
.footer-brand {
  font-family: "Cormorant Garamond", serif;
  color: var(--white);
  font-size: 38px;
}
footer p { font-size: 11px; letter-spacing: .1em; }
.copyright { color: #645f58; }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 82px; left: 0; right: 0;
    display: none;
    padding: 24px 5vw;
    flex-direction: column;
    background: #090909;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .nav-links.open { display: flex; }
  .hero { padding-top: 130px; background-position: 62% center; }
  .hero-badge { display: none; }
  .intro-grid,
  .lookbook-grid,
  .booking-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }
  .service-card.wide {
    grid-template-columns: 1fr;
  }
  .price-block { text-align: left; }
}

@media (max-width: 620px) {
  .site-header { padding-inline: 20px; }
  .brand-name { font-size: 22px; }
  .section { padding: 82px 20px; }
  .hero { padding-inline: 20px; }
  h1 { font-size: 4.1rem; }
  .hero-copy { font-size: 15px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card.wide { grid-column: auto; }
  .service-card { min-height: auto; padding: 26px; }
  .calendar-card, .booking-form { padding: 18px; }
  .calendar-day { min-height: 45px; }
  .contact-panel { padding: 34px 24px; }
}
