:root {
  --black: #131313;
  --cream: #f8f3e9;
  --paper: #fffdf8;
  --gold: #b88a34;
  --gold-light: #dfc27c;
  --muted: #756f66;
  --line: rgba(184, 138, 52, .28);
  --shadow: 0 22px 60px rgba(32, 25, 15, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--paper);
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 80px);
  background: rgba(255, 253, 248, .93);
  border-bottom: 1px solid rgba(184, 138, 52, .15);
  backdrop-filter: blur(14px);
  transition: box-shadow .25s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 35px rgba(0, 0, 0, .08);
}

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

.brand-mark {
  font: 700 34px/1 "Cormorant Garamond", serif;
  letter-spacing: -3px;
}

.brand-mark span {
  color: var(--gold);
  font-weight: 500;
  font-size: .75em;
}

.brand-name {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .25em;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav>a {
  font-size: 14px;
  font-weight: 500;
  position: relative;
}

.nav>a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--gold);
  transition: right .25s ease;
}

.nav>a:hover::after {
  right: 0;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 38px;
  padding: 6px;
}

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

.btn {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: white;
  padding: 14px 23px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: #9f7428;
}

.btn-small {
  padding: 10px 17px;
}

.btn-ghost {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, .7);
}

.btn-ghost:hover {
  background: white;
  color: var(--black);
}

.full-width {
  width: 100%;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
  padding: 130px 24px 70px;
  background:
    url("https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?auto=format&fit=crop&w=2000&q=88") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(12, 9, 5, .76), rgba(12, 9, 5, .28));
}

.hero-content {
  position: relative;
  max-width: 890px;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: 11px;
  font-weight: 600;
  margin: 0 0 15px;
}

.hero .eyebrow {
  color: var(--gold-light);
}

h1,
h2,
h3,
blockquote {
  font-family: "Cormorant Garamond", serif;
  margin-top: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(50px, 8vw, 96px);
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(40px, 5vw, 64px);
  margin-bottom: 20px;
}

h3 {
  font-size: 30px;
  margin-bottom: 12px;
}

.hero-copy {
  max-width: 690px;
  margin: 0 auto 33px;
  color: rgba(255, 255, 255, .84);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 25px;
  font-size: 25px;
  animation: float 1.8s ease-in-out infinite;
}

@keyframes float {
  50% {
    transform: translateY(8px);
  }
}

.section {
  padding: 105px clamp(24px, 6vw, 96px);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-heading>p:last-child {
  color: var(--muted);
}

.service-grid {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 280px;
  padding: 42px 35px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
  transition: background .25s, transform .25s;
}

.service-card:hover {
  background: var(--cream);
  transform: translateY(-4px);
}

.service-number {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .2em;
}

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

.service-card p {
  color: var(--muted);
}

.service-card .price {
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  background: var(--cream);
}

.image-panel {
  min-height: 680px;
  overflow: hidden;
}

.image-panel img {
  height: 100%;
  object-fit: cover;
}

.copy-panel {
  padding: clamp(55px, 8vw, 110px);
  align-self: center;
}

.copy-panel>p:not(.eyebrow) {
  color: var(--muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 45px;
  border-top: 1px solid var(--line);
}

.stats div {
  padding: 25px 12px 0 0;
}

.stats strong {
  display: block;
  color: var(--gold);
  font: 700 34px "Cormorant Garamond", serif;
}

.stats span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
}

.pricing-section {
  background: #171512;
  color: white;
}

.pricing-section .section-heading>p:last-child {
  color: rgba(255, 255, 255, .58);
}

.pricing-layout {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 0;
  border-bottom: 1px solid rgba(223, 194, 124, .22);
}

.price-row span {
  font: 600 25px "Cormorant Garamond", serif;
}

.price-row strong {
  color: var(--gold-light);
  font-weight: 500;
}

.price-table .btn {
  margin-top: 30px;
}

.price-image {
  position: relative;
  padding: 0;
  border: 0;
  cursor: zoom-in;
  background: transparent;
  box-shadow: var(--shadow);
}

.price-image img {
  max-height: 680px;
  object-fit: cover;
  object-position: top;
}

.price-image span {
  position: absolute;
  inset: auto 0 0;
  padding: 14px;
  background: rgba(0, 0, 0, .78);
  color: white;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 10px;
}

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

.gallery-grid {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 290px;
  gap: 15px;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.testimonial-section {
  padding: 100px 24px;
  background: var(--cream);
  text-align: center;
}

.testimonial {
  max-width: 900px;
  margin: auto;
}

.quote-mark {
  font: 100px/1 "Cormorant Garamond", serif;
  color: var(--gold);
}

blockquote {
  font-size: clamp(38px, 5vw, 62px);
  margin: -22px 0 18px;
}

.testimonial p {
  color: var(--muted);
}

.contact-section {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-copy>p:not(.eyebrow) {
  color: var(--muted);
}

.contact-list {
  margin-top: 35px;
}

.contact-list a,
.contact-list div {
  display: flex;
  flex-direction: column;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list span {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .18em;
}

.contact-list strong {
  margin-top: 5px;
  font-weight: 500;
}


.instagram-handle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.instagram-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.instagram-contact {
  transition: color .2s ease, transform .2s ease;
}

.instagram-contact:hover {
  color: var(--gold);
}

.footer-social {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.footer-social:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.footer-social .instagram-icon {
  width: 18px;
  height: 18px;
}

.quick-form,
.modal-card {
  background: var(--cream);
  padding: 42px;
  box-shadow: var(--shadow);
}

label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
  margin-bottom: 18px;
}

input,
textarea,
select {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid #d8cfbf;
  background: white;
  color: var(--black);
  outline: none;
}

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

textarea {
  resize: vertical;
}

.form-status {
  min-height: 20px;
  color: var(--gold);
  font-size: 13px;
}

footer {
  background: #111;
  color: white;
  padding: 55px clamp(24px, 6vw, 96px) 25px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-brand p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 10px;
  color: var(--gold-light);
}

.footer-links {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 13px;
}

.link-button {
  background: none;
  border: 0;
  color: var(--gold-light);
  cursor: pointer;
}

.copyright {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 20px;
  color: rgba(255, 255, 255, .45);
  font-size: 12px;
}

.modal,
.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
}

.modal.active,
.lightbox.active {
  display: grid;
  place-items: center;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .72);
}

.modal-card {
  position: relative;
  width: min(720px, calc(100% - 30px));
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1;
}

.modal-close,
.lightbox-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: 0;
  font-size: 31px;
  cursor: pointer;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 18px;
}

.lightbox {
  background: rgba(0, 0, 0, .9);
  padding: 30px;
}

.lightbox img {
  max-width: 760px;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  color: white;
  z-index: 2;
  font-size: 40px;
}

.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:nth-child(1) {
  transition-delay: 0.05s;
}

.service-card:nth-child(2) {
  transition-delay: 0.12s;
}

.service-card:nth-child(3) {
  transition-delay: 0.19s;
}

.service-card:nth-child(4) {
  transition-delay: 0.26s;
}

.service-card:nth-child(5) {
  transition-delay: 0.33s;
}

.service-card:nth-child(6) {
  transition-delay: 0.40s;
}

.gallery-item:nth-child(1) {
  transition-delay: 0.05s;
}

.gallery-item:nth-child(2) {
  transition-delay: 0.13s;
}

.gallery-item:nth-child(3) {
  transition-delay: 0.21s;
}

.gallery-item:nth-child(4) {
  transition-delay: 0.29s;
}

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

  .nav {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 28px;
    flex-direction: column;
    transform: translateY(-130%);
    opacity: 0;
    transition: .3s ease;
    box-shadow: 0 18px 30px rgba(0, 0, 0, .1);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
  }

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

  .split-section,
  .pricing-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .image-panel {
    min-height: 500px;
  }

  .pricing-layout {
    gap: 40px;
  }

  .price-image {
    max-width: 580px;
    margin: auto;
  }

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

  footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .copyright {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .site-header {
    height: 72px;
  }

  .brand-name {
    display: none;
  }

  .nav {
    top: 72px;
  }

  .hero {
    min-height: 92vh;
  }

  .section {
    padding: 75px 20px;
  }

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

  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .gallery-grid {
    grid-auto-rows: 330px;
  }

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

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

  .quick-form,
  .modal-card {
    padding: 30px 22px;
  }

  .contact-section {
    gap: 45px;
  }
}

.footer-brand {
  display: inline-block;
  cursor: pointer;
}

.footer-brand:hover {
  opacity: 0.8;
}
/* Live booking + messaging states */
.booking-note {
  margin: -4px 0 24px;
  color: var(--muted);
  font-size: 13px;
}

.optional-label {
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .08em;
}

.form-status.success {
  color: #2d6a43;
}

.form-status.error {
  color: #a53b32;
}

.btn:disabled {
  opacity: .65;
  cursor: wait;
  transform: none;
}

.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

/* Spam honeypot used by FormSubmit. */
input.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-help {
  margin-top: 10px;
  font-size: 0.82rem;
  line-height: 1.5;
  opacity: 0.72;
}
