:root {
  --bg: #f9f6f0;
  --surface: #fffdf9;
  --text: #242424;
  --muted: #5e5a54;
  --accent: #c9a65a;
  --accent-dark: #af8d45;
  --shadow: 0 10px 26px rgba(36, 36, 36, 0.08);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.2;
  margin: 0 0 0.8rem;
}

h1 {
  font-size: clamp(2rem, 7vw, 3.6rem);
}

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

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

.section {
  padding: 4.5rem 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  padding: 0.7rem 1rem;
  border: 2px solid var(--accent);
  border-radius: 8px;
  z-index: 1001;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(249, 246, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 166, 90, 0.24);
}

.nav {
  min-height: 124px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  text-decoration: none;
  color: var(--text);
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: clamp(120px, 20vw, 180px);
  height: auto;
}

.nav-toggle {
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--text);
  border-radius: 8px;
  padding: 0.3rem 0.55rem;
  font-size: 1.25rem;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 124px;
  left: 0;
  right: 0;
  background: var(--surface);
  display: none;
  flex-direction: column;
  border-bottom: 1px solid rgba(201, 166, 90, 0.3);
  box-shadow: var(--shadow);
}

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

.nav-links a {
  display: block;
  text-decoration: none;
  color: var(--text);
  padding: 0.9rem 1.2rem;
}

.hero {
  text-align: center;
  padding-top: 5.5rem;
}

.eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
}

.hero-subheadline {
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 1.8rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.75rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--accent-dark);
  box-shadow: 0 10px 20px rgba(175, 141, 69, 0.3);
  transform: translateY(-1px);
}

.btn-small {
  padding: 0.45rem 1rem;
}

.text-link {
  color: var(--accent-dark);
  text-underline-offset: 0.2rem;
  font-weight: 500;
}

.section-title-wrap p {
  color: var(--muted);
}

.gallery-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.gallery-item {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  min-height: 240px;
  background: #efe7d8;
}

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

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover img,
.gallery-item:focus-within img {
  transform: scale(1.03);
}

.gallery-item:hover::after,
.gallery-item:focus-within::after {
  opacity: 1;
}

.pricing-card,
.occasion-card,
.contact-wrap {
  background: var(--surface);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.price {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-family: "Playfair Display", serif;
  margin-top: 0.2rem;
}

.occasions-intro {
  max-width: 700px;
  color: var(--muted);
}

.occasion-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.icon {
  font-size: 1.7rem;
}

.occasion-image {
  margin-top: 0.6rem;
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(201, 166, 90, 0.25);
  background: #f7f2e8;
}

.contact-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

input,
textarea,
button {
  font: inherit;
}

input,
textarea {
  border: 1px solid #d3c8b0;
  border-radius: 10px;
  padding: 0.7rem;
  background: #fff;
}

.contact-note {
  font-size: 0.94rem;
  color: var(--muted);
}

.contact-links {
  margin: 0;
}

.site-footer {
  text-align: center;
  padding: 1.8rem 1rem 2.2rem;
  color: var(--muted);
}

.site-footer a {
  color: inherit;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(20, 20, 20, 0.85);
  display: grid;
  grid-template-columns: auto minmax(220px, 90vw) auto;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 1rem;
}

.lightbox-content {
  margin: 0;
  color: #fff;
  text-align: center;
}

.lightbox-content img {
  max-height: 78vh;
  width: auto;
  margin: 0 auto;
  border-radius: 8px;
}

.lightbox-content figcaption {
  margin-top: 0.7rem;
}

.lightbox button {
  border: none;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

:focus-visible {
  outline: 3px solid var(--accent-dark);
  outline-offset: 2px;
}

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


.reviews-page {
  text-align: center;
  min-height: 70vh;
  display: grid;
  align-content: center;
  gap: 0.8rem;
}

.reviews-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.8rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }

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

@media (min-width: 920px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: transparent;
    box-shadow: none;
    border: none;
  }

  .nav-links a {
    padding: 0.4rem 0.8rem;
  }

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