@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("../fonts/cormorant.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/cormorant-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/source-sans.woff2") format("woff2");
}

:root {
  --red: #ed1c24;
  --red-dark: #c41218;
  --gold: #ffde00;
  --gold-soft: #fff3a0;
  --ink: #1a1512;
  --muted: #5a534c;
  --cream: #f7f4ef;
  --cream-2: #ebe4d9;
  --white: #fff;
  --radius: 14px;
  --header: 64px;
  --dock: 64px;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
  --shadow: 0 18px 40px rgba(26, 21, 18, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html,
body {
  margin: 0;
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  padding-bottom: calc(var(--dock) + env(safe-area-inset-bottom));
}

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

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

address {
  font-style: normal;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.6rem;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  inset: 8px;
  z-index: 200;
  padding: 0.6rem 1rem;
  background: var(--red);
  color: var(--white);
  border-radius: 8px;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 1.15rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--red);
}

.header-inner {
  height: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.logo img {
  height: 40px;
  width: auto;
  max-width: min(168px, 58vw);
  object-fit: contain;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: var(--header) 0 0;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.15rem 2rem;
  transform: translateX(110%);
  visibility: hidden;
  transition: transform 0.28s ease, visibility 0.28s;
  overflow-y: auto;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-nav a,
.site-nav .menu-item a {
  display: block;
  padding: 0.9rem 0.2rem;
  font-weight: 600;
  font-size: 1.15rem;
  border-bottom: 1px solid var(--cream-2);
}

.site-nav a:hover,
.site-nav .current-menu-item a {
  color: var(--red);
}

.site-nav .nav-cta,
.site-nav .menu-item.nav-cta a {
  margin-top: 0.75rem;
  text-align: center;
  background: var(--red);
  color: var(--white);
  border-radius: 999px;
  border: 0;
  padding: 0.9rem 1.2rem;
}

.site-nav.is-open {
  transform: none;
  visibility: visible;
}

body.nav-open {
  overflow: hidden;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

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

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

.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}

/* Hero */
.hero {
  position: relative;
  min-height: auto;
  padding: 2.25rem 0 2.5rem;
  color: var(--white);
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-media {
  background: var(--ink) center / cover no-repeat;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(26, 21, 18, 0.72) 0%, rgba(26, 21, 18, 0.55) 50%, rgba(26, 21, 18, 0.78) 100%),
    linear-gradient(90deg, rgba(237, 28, 36, 0.22), transparent 55%);
}

.hero-content {
  position: relative;
}

.eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(1.85rem, 8vw, 3.4rem);
  color: var(--white);
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.hero-lead {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 38ch;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.hero-stats {
  list-style: none;
  margin: 0;
  padding: 1rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stats strong {
  display: block;
  color: var(--gold);
  font-size: 1.05rem;
}

.hero-stats span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
}

.service-strip {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.75rem 1.15rem;
  background: var(--red);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.service-strip::-webkit-scrollbar {
  display: none;
}

.service-strip span {
  flex: 0 0 auto;
  white-space: nowrap;
}

.service-strip span:not(:last-child)::after {
  content: "•";
  margin-left: 0.5rem;
  opacity: 0.7;
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section-alt {
  background: var(--white);
}

.section-head {
  margin-bottom: 1.5rem;
}

.section-head-center {
  text-align: center;
}

.section-head .eyebrow {
  color: var(--red);
}

.section-head h2 {
  font-size: clamp(1.6rem, 5vw, 2.4rem);
}

.section-desc {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  gap: 1.75rem;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 3px solid var(--red);
}

.timeline li {
  padding: 0 0 1.15rem 1rem;
}

.timeline strong {
  color: var(--red);
}

.timeline p {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid rgba(26, 21, 18, 0.06);
}

.section-alt .card {
  background: var(--cream);
}

.card-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: rgba(237, 28, 36, 0.1);
  color: var(--red);
  border-radius: 10px;
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}

.card h3 {
  font-size: 1.35rem;
}

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

.catalog-note {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  border-left: 6px solid var(--gold);
}

.catalog-note p {
  margin: 0;
}

/* Gallery */
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.15rem 0 0.85rem;
  margin-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-filters::-webkit-scrollbar {
  display: none;
}

.gallery-filter {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 42px;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(26, 21, 18, 0.12);
  background: var(--white);
  font: inherit;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  color: var(--ink);
}

.gallery-filter span {
  font-size: 0.75rem;
  color: var(--muted);
}

.gallery-filter.is-active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.gallery-filter.is-active span {
  color: var(--gold);
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.photo-item {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream-2);
  cursor: pointer;
  width: 100%;
}

.photo-item.is-hidden,
.photo-item.is-paged {
  display: none;
}

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

.photo-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 0.55rem 0.65rem;
  display: flex;
  justify-content: space-between;
  gap: 0.4rem;
  background: linear-gradient(transparent, rgba(26, 21, 18, 0.78));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
}

.photo-cat {
  background: var(--red);
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
}

.gallery-more-wrap,
.reviews-more-wrap,
.gallery-empty {
  text-align: center;
  margin: 1.4rem 0 0;
}

.gallery-empty {
  color: var(--muted);
}

/* Reviews */
.reviews-highlight {
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
  margin-bottom: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--gold);
}

.stars,
.review-stars {
  color: var(--gold);
  text-shadow: 0 0 1px var(--red);
  letter-spacing: 0.06em;
}

.reviews-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.reviews-tags li {
  padding: 0.35rem 0.75rem;
  background: rgba(237, 28, 36, 0.08);
  color: var(--red);
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 999px;
}

.reviews-grid {
  display: grid;
  gap: 0.85rem;
}

.review-card {
  margin: 0;
  padding: 1.2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(26, 21, 18, 0.08);
}

.review-card--extra {
  display: none;
}

.reviews-section.is-expanded .review-card--extra {
  display: block;
}

.review-card blockquote {
  margin: 0;
}

.review-card p {
  margin: 0;
  color: var(--muted);
}

.review-card footer {
  margin-top: 0.9rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--cream-2);
  display: flex;
  flex-direction: column;
}

.review-card footer span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Contact */
.cta-band {
  padding: 2.5rem 0;
  background: var(--cream-2);
  border-block: 4px solid var(--gold);
  text-align: center;
}

.cta-inner h2 {
  font-size: clamp(1.5rem, 5vw, 2.2rem);
}

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

.contact-grid {
  display: grid;
  gap: 1.75rem;
}

.contact-info .eyebrow {
  color: var(--red);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  margin-bottom: 1rem;
}

.contact-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.15rem;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
  padding: 1.15rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 2px solid rgba(237, 28, 36, 0.12);
}

.contact-form label {
  display: grid;
  gap: 0.3rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  font: inherit;
  font-size: 16px;
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(26, 21, 18, 0.12);
  border-radius: 10px;
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.15);
}

.form-note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

.form-note a {
  color: var(--red);
  font-weight: 600;
}

/* Footer */
.site-footer {
  padding: 2rem 0 1.5rem;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
}

.footer-brand img {
  height: 36px;
  width: auto;
  margin-bottom: 0.4rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
}

.footer-nav a,
.footer-legal a {
  color: var(--gold);
  font-weight: 600;
}

.footer-legal p {
  margin: 0 0 0.25rem;
}

/* Mobile dock */
.mobile-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: var(--dock);
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--white);
  border-top: 2px solid var(--red);
  box-shadow: 0 -8px 24px rgba(26, 21, 18, 0.08);
}

.mobile-dock a {
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.7rem 0.3rem;
}

.dock-call {
  color: var(--red);
}

.dock-wa {
  background: #25d366;
  color: var(--white);
}

.dock-mail {
  background: var(--red);
  color: var(--white);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 0.75rem 1.25rem;
  background: rgba(26, 21, 18, 0.94);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-figure {
  margin: 0;
  max-width: 100%;
}

.lightbox-img {
  max-width: 100%;
  max-height: 72vh;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-inline: auto;
  border-radius: 10px;
  border: 3px solid var(--gold);
  background: var(--ink);
}

.lightbox-caption {
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-size: 0.9rem;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
}

.lightbox-close {
  top: calc(0.6rem + env(safe-area-inset-top));
  right: 0.75rem;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  font-size: 1.8rem;
  background: rgba(255, 255, 255, 0.16);
}

.lightbox-prev {
  left: 0.4rem;
}

.lightbox-next {
  right: 0.4rem;
}

body.lightbox-open {
  overflow: hidden;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--dock) + 1rem + env(safe-area-inset-bottom));
  transform: translateX(-50%) translateY(140%);
  z-index: 210;
  padding: 0.8rem 1.2rem;
  background: var(--red);
  color: var(--white);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  max-width: calc(100% - 2rem);
  transition: transform 0.35s ease;
}

.toast.is-visible {
  transform: translateX(-50%) translateY(0);
}

/* Legal */
.legal-page {
  padding: 2rem 0 3rem;
}

.legal-content {
  max-width: 720px;
}

.legal-back a,
.entry-content a {
  color: var(--red);
  font-weight: 600;
}

.legal-content h1 {
  font-size: clamp(1.8rem, 6vw, 2.6rem);
}

.entry-content h2 {
  font-size: 1.3rem;
  margin-top: 1.6rem;
}

.entry-content p,
.entry-content li {
  color: var(--muted);
}

/* Tablet+ */
@media (min-width: 700px) {
  :root {
    --header: 76px;
  }

  body {
    padding-bottom: 0;
  }

  .mobile-dock {
    display: none;
  }

  .logo img {
    height: 50px;
    max-width: 200px;
  }

  .hero {
    min-height: 78vh;
    display: flex;
    align-items: flex-end;
    padding: 5rem 0 3.5rem;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

  .photo-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
  }

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

  .contact-grid,
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
  }

  .footer-inner {
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: end;
  }
}

/* Desktop */
@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .site-nav,
  .site-nav.is-open {
    position: static;
    inset: auto;
    transform: none;
    visibility: visible;
    background: transparent;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    padding: 0;
    overflow: visible;
  }

  .site-nav ul {
    flex-direction: row;
    align-items: center;
    gap: 1.35rem;
  }

  .site-nav a,
  .site-nav .menu-item a {
    padding: 0;
    font-size: 0.95rem;
    border: 0;
  }

  .site-nav .nav-cta,
  .site-nav .menu-item.nav-cta a {
    margin-top: 0;
    padding: 0.55rem 1.15rem;
    font-size: 0.92rem;
  }

  .hero h1 {
    max-width: 14ch;
  }

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

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

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

  .reviews-highlight {
    grid-template-columns: auto 1fr;
    align-items: center;
    padding: 1.5rem 1.75rem;
  }
}

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

  * {
    transition: none !important;
    animation: none !important;
  }
}
