:root {
  --deep-black: #1a1a1a;
  --brick-red: #c41e3a;
  --dark-red: #a01728;
  --deep-red: #8b1428;
  --cream: #f5efe7;
  --charcoal: #2d2d2d;
  --gold: #d4af37;
  --white: #ffffff;
  --max-width: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --shadow-soft: 0 4px 12px rgba(26, 26, 26, 0.1);
  --shadow-strong: 0 12px 28px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background: var(--cream);
  color: var(--deep-black);
  text-rendering: optimizeLegibility;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(26, 26, 26, 0.92);
  border-bottom: 1px solid rgba(245, 239, 231, 0.12);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--deep-black);
  background: linear-gradient(140deg, var(--gold), #f6d976);
}

.logo-text {
  color: var(--cream);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 14px;
}

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

.site-nav a {
  color: var(--cream);
  font-size: 14px;
  opacity: 0.92;
  transition: opacity 0.2s ease;
}

.site-nav a:hover {
  opacity: 1;
}

.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  border-radius: var(--radius-sm);
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--brick-red);
  color: var(--white);
  padding: 16px 32px;
}

.btn-primary:hover {
  background: var(--dark-red);
  transform: scale(1.05);
}

.btn-primary:active {
  background: var(--deep-red);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--brick-red);
  color: var(--brick-red);
  padding: 14px 30px;
}

.btn-secondary:hover {
  background: var(--brick-red);
  color: var(--white);
}

.nav-cta {
  padding: 12px 22px;
  font-size: 14px;
}

section {
  position: relative;
  overflow: clip;
}

.section-dark {
  background: var(--deep-black);
  color: var(--cream);
}

.section-light {
  background: var(--cream);
  color: var(--deep-black);
}

.hero {
  min-height: 100vh;
  padding: 96px 0 72px;
  isolation: isolate;
  background: linear-gradient(
      140deg,
      rgba(26, 26, 26, 0.82) 0%,
      rgba(26, 26, 26, 0.62) 45%,
      rgba(26, 26, 26, 0.86) 100%
    ),
    url("img/hero-interior-fixed.avif") center / cover no-repeat fixed;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: var(--brick-red);
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 30% 20%,
      rgba(196, 30, 58, 0.14),
      transparent 40%
    ),
    radial-gradient(circle at 75% 70%, rgba(212, 175, 55, 0.1), transparent 36%);
  z-index: -2;
}

.hero-pattern {
  position: absolute;
  right: -120px;
  top: 80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 2px dashed rgba(245, 239, 231, 0.2);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brick-red);
  font-size: 12px;
  margin: 0 0 16px;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Playfair Display", serif;
}

h1 {
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.12;
  font-weight: 700;
  max-width: 14ch;
}

h2 {
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: 0.02em;
}

h3 {
  font-size: 30px;
  line-height: 1.25;
}

.hero-lead {
  max-width: 58ch;
  margin: 20px 0 28px;
  color: rgba(245, 239, 231, 0.95);
}

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

.hero-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: rgba(245, 239, 231, 0.86);
}

.hero-photo-card {
  position: relative;
  min-height: 520px;
  border-radius: 20px;
  background: linear-gradient(170deg, rgba(245, 239, 231, 0.15), rgba(0, 0, 0, 0.5));
  border: 1px solid rgba(245, 239, 231, 0.18);
  box-shadow: var(--shadow-strong);
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.56)),
    url("img/gallery-finish-portrait.avif") center / cover no-repeat;
  border-radius: 20px;
}

.hero-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.9);
  color: var(--deep-black);
}

.about,
.services,
.gallery,
.testimonials,
.booking {
  padding: 80px 0;
}

.services {
  background: linear-gradient(
      145deg,
      rgba(26, 26, 26, 0.9) 0%,
      rgba(26, 26, 26, 0.76) 48%,
      rgba(26, 26, 26, 0.92) 100%
    ),
    url("img/services-interior-fixed.avif") center / cover no-repeat fixed;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: rgba(245, 239, 231, 0.06);
  border: 1px solid rgba(245, 239, 231, 0.12);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--brick-red);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.service-item:hover {
  background: rgba(245, 239, 231, 0.12);
  transform: translateX(8px);
}

.service-item:hover::before {
  transform: scaleY(1);
}

.service-item.selected {
  background: rgba(196, 30, 58, 0.15);
  border-color: var(--brick-red);
}

.service-item.selected::before {
  transform: scaleY(1);
}

.service-info {
  flex: 1;
}

.service-info h3 {
  margin: 0 0 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
}

.service-info p {
  margin: 0;
  font-size: 14px;
  color: rgba(245, 239, 231, 0.74);
  line-height: 1.4;
}

.service-price {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--brick-red);
  padding-left: 16px;
}

.services-note {
  margin: 20px 0 0;
  font-size: 13px;
  color: rgba(245, 239, 231, 0.66);
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.about p {
  margin: 20px 0 0;
  max-width: 62ch;
}

blockquote {
  margin: 0;
  padding: 22px 24px;
  border-left: 4px solid var(--brick-red);
  background: #fff;
  border-radius: var(--radius-md);
  font-family: "Playfair Display", serif;
  font-size: clamp(20px, 3vw, 24px);
  line-height: 1.4;
  font-style: italic;
  color: var(--brick-red);
  box-shadow: var(--shadow-soft);
}

.section-head {
  margin-bottom: 28px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(245, 239, 231, 0.22);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.28);
}

.service-card {
  background: var(--charcoal);
}

.service-card h3 {
  margin: 16px 0 10px;
  font-size: 30px;
}

.service-card p {
  margin: 0;
  color: rgba(245, 239, 231, 0.9);
}

.price {
  margin-top: 12px;
  font-family: "Montserrat", sans-serif;
  color: var(--gold);
  font-weight: 600;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(196, 30, 58, 0.5);
}

.icon svg {
  width: 24px;
  height: 24px;
}

.icon svg path,
.icon svg circle {
  stroke: var(--brick-red);
  stroke-width: 2;
}

.section-cta {
  margin-top: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.gallery-tile {
  margin: 0;
  min-height: 170px;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(26, 26, 26, 0.12);
  background: #ffffff;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--cream);
}

.testimonials-grid .card {
  background: var(--charcoal);
}

.quote {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  line-height: 1.45;
  color: var(--brick-red);
  font-style: italic;
}

.author {
  margin: 14px 0 0;
  color: rgba(245, 239, 231, 0.92);
  font-weight: 600;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.booking-points {
  margin: 20px 0 0;
  padding-left: 18px;
}

.map-container {
  margin-top: 24px;
  width: 100%;
  height: 320px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(26, 26, 26, 0.12);
  position: relative;
}

.map-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--brick-red);
  border-radius: 10px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}

.booking-form {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(26, 26, 26, 0.12);
  display: grid;
  gap: 10px;
}

.booking-form label {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--charcoal);
  background: var(--cream);
  padding: 12px 16px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--deep-black);
}

.booking-form textarea {
  min-height: 120px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border: 2px solid var(--brick-red);
}

.form-note {
  margin: 4px 0 0;
  min-height: 22px;
  color: var(--brick-red);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}

.site-footer {
  background: var(--deep-black);
  color: var(--cream);
  padding: 40px 0;
  border-top: 1px solid rgba(245, 239, 231, 0.1);
}

.footer-legal {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid rgba(245, 239, 231, 0.16);
  color: rgba(245, 239, 231, 0.74);
  font-size: 13px;
  line-height: 1.45;
}

.footer-legal p {
  margin: 0;
}

.footer-legal p + p {
  margin-top: 6px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.footer-brand,
.footer-title {
  margin: 0 0 10px;
  color: var(--brick-red);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-links a:hover {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .hero,
  .services {
    background-attachment: scroll;
  }

  .hero {
    min-height: 72vh;
  }

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

  .hero-photo-card {
    min-height: 400px;
  }

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

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

@media (max-width: 768px) {
  .service-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 14px 16px;
  }

  .service-price {
    padding-left: 0;
    align-self: flex-end;
  }
}

@media (max-width: 720px) {
  .container {
    width: calc(100% - 32px);
  }

  .nav-wrap {
    min-height: 74px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 60vh;
    padding: 70px 0 52px;
  }

  .about,
  .services,
  .gallery,
  .testimonials,
  .booking {
    padding: 48px 0;
  }

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

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

  .gallery-tile {
    min-height: 145px;
  }

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