:root {
  /* 60–30–10 palette: white / mist / ice blue */
  --burgundy: #e2ebeb;
  --burgundy-dark: #e2ebeb;
  --gold: #d6f1f5;
  --gold-soft: #d6f1f5;
  --white: #ffffff;
  --ink: #22191a;
  --muted: #6a5b5d;
  --green: #e2ebeb;
  --stone: #e2ebeb;
  --shadow: 0 20px 60px rgba(34, 25, 26, 0.16);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(34, 25, 26, 0.86), rgba(34, 25, 26, 0.18));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}

.brand-logo {
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  object-fit: contain;
  padding: 6px;
  border: 2px solid rgba(214, 241, 245, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 26px rgba(34, 25, 26, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 2vw, 22px);
  letter-spacing: 0;
}

.brand small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  font-weight: 700;
}

nav a {
  color: var(--white);
  text-decoration: none;
}

nav a:hover {
  color: var(--gold-soft);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  justify-items: start;
  padding: 0 clamp(20px, 5vw, 72px) clamp(36px, 7vh, 72px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.12);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(34, 25, 26, 0.78), rgba(34, 25, 26, 0.26) 58%, rgba(34, 25, 26, 0.08)),
    linear-gradient(0deg, rgba(34, 25, 26, 0.62), rgba(34, 25, 26, 0.06) 54%);
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
  display: flex;
  justify-content: flex-start;
}

.hero-logo {
  width: min(430px, 80vw);
  height: auto;
  border-radius: 8px;
  filter: drop-shadow(0 12px 28px rgba(34, 25, 26, 0.32));
}

.intro h2 {
  max-width: 980px;
}

.owner-note {
  font-style: italic;
}

.eyebrow {
  margin: 0 0 12px;
  color: #c99a38;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 820px;
  font-size: clamp(46px, 8vw, 88px);
  text-wrap: balance;
}

h2 {
  font-size: clamp(32px, 5vw, 56px);
  text-wrap: balance;
}

h3 {
  font-size: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  color: var(--ink);
  background: var(--gold);
}

.button-primary:hover {
  background: var(--gold-soft);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
  border-color: var(--gold-soft);
}

.section,
.section-band {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.section-inner,
.section-heading {
  max-width: 1180px;
  margin: 0 auto;
}

.intro {
  color: var(--ink);
  background: var(--burgundy);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.intro-text {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.about {
  background: var(--white);
}

.about-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.about-copy h2 {
  color: var(--ink);
}

.about-copy p {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.family-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 270px;
  gap: 14px;
}

.family-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.family-gallery img:nth-child(1) {
  grid-column: span 4;
  grid-row: span 2;
}

.family-gallery img:nth-child(2),
.family-gallery img:nth-child(3) {
  grid-column: span 4;
}

.family-gallery img:nth-child(4) {
  grid-column: span 8;
}

.family-gallery img:nth-child(n + 5) {
  grid-column: span 4;
}

.services {
  background: var(--stone);
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading h2 {
  color: var(--ink);
}

.service-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 360px;
  padding: 0 0 24px;
  border: 1px solid rgba(34, 25, 26, 0.14);
  border-top: 5px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(34, 25, 26, 0.08);
  overflow: hidden;
}

.service-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.service-card h3 {
  padding: 22px 22px 0;
}

.service-card p {
  margin: 14px 0 0;
  padding: 0 22px;
  color: var(--muted);
}

.feature-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(52px, 8vw, 96px) clamp(20px, 5vw, 72px);
  color: var(--ink);
  background: var(--burgundy-dark);
}

.feature-strip img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  border: 4px solid rgba(214, 241, 245, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-strip p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.work {
  background: var(--white);
}

.testimonials {
  background: var(--stone);
}

.testimonials-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.testimonials h2 {
  color: var(--ink);
  text-align: center;
}

.testimonials .eyebrow {
  text-align: center;
}

.testimonial-stars {
  margin: -4px 0 12px;
  color: #c99a38;
  font-size: 27px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-align: center;
  text-shadow: 0 2px 4px rgba(34, 25, 26, 0.16);
}

.testimonial-carousel {
  max-width: 560px;
  margin-top: 36px;
  margin-right: auto;
  margin-left: auto;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 390px;
  padding: 36px;
  border: 1px solid rgba(34, 25, 26, 0.14);
  border-top: 5px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(34, 25, 26, 0.08);
}

.testimonial-card p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.testimonial-card p::before {
  content: "\201c";
}

.testimonial-card p::after {
  content: "\201d";
}

.testimonial-card strong {
  display: block;
  margin-top: 24px;
  color: var(--ink);
  font-size: 20px;
}

.testimonial-card[hidden] {
  display: none;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
}

.testimonial-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  color: var(--ink);
  font-size: 25px;
  line-height: 1;
  border: 0;
  border-radius: 50%;
  background: var(--burgundy);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  background: var(--burgundy-dark);
  transform: translateY(-2px);
}

.testimonial-position {
  min-width: 52px;
  color: var(--ink);
  font-weight: 900;
  text-align: center;
}

.reviews-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 24px;
  margin-top: 30px;
}

.reviews-link {
  display: inline-block;
  color: var(--ink);
  font-weight: 900;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.google-reviews-link::before {
  content: "G";
  display: inline-grid;
  width: 24px;
  height: 24px;
  margin-right: 7px;
  place-items: center;
  color: #4285f4;
  font-weight: 900;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(34, 25, 26, 0.14);
}

.gallery {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-item {
  display: block;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 2px solid rgba(214, 241, 245, 0.8);
  border-radius: 8px;
  background: var(--burgundy-dark);
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 10px 26px rgba(34, 25, 26, 0.12);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
  touch-action: manipulation;
}

.gallery-item:hover,
.gallery-item:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 16px 34px rgba(34, 25, 26, 0.2);
  transform: translateY(-3px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, opacity 220ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  opacity: 0.8;
  transform: scale(1.035);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 72px);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(226, 235, 235, 0.98), rgba(214, 241, 245, 0.7)),
    var(--burgundy);
}

.contact-image img {
  width: min(460px, 100%);
  margin: 0 auto;
  max-height: 620px;
  object-fit: cover;
  object-position: center;
  border: 4px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-panel {
  max-width: 680px;
  min-width: 0;
}

.contact-panel h2 {
  font-size: clamp(20px, 3.2vw, 46px);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.contact > .eyebrow {
  grid-column: 1 / -1;
  color: #c99a38;
  text-align: center;
}

.contact-panel p {
  color: var(--muted);
  font-size: 18px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list a {
  display: grid;
  gap: 2px;
  padding: 18px;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid rgba(34, 25, 26, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  overflow-wrap: anywhere;
}

.contact-list a:hover {
  border-color: var(--gold);
  background: var(--white);
}

.contact-list span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--ink);
}

footer p {
  margin: 0;
  font-weight: 800;
}

footer a {
  color: var(--gold-soft);
  text-decoration: none;
  font-weight: 800;
}

.lightbox {
  width: min(1080px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(34, 25, 26, 0.84);
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  background: #000;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: var(--white);
  background: rgba(34, 25, 26, 0.74);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 980px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-strip,
  .contact,
  .about-grid,
  .intro-grid {
    grid-template-columns: 1fr;
  }

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

  .family-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 300px;
  }

  .family-gallery img:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .family-gallery img:first-child,
  .family-gallery img:last-child {
    grid-column: 1 / -1;
  }

}

@media (max-width: 660px) {
  .family-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 12px;
  }

  .family-gallery img:nth-child(n) {
    grid-column: 1;
    width: 100%;
    height: auto;
  }

  .site-header {
    position: absolute;
    align-items: center;
    padding: max(14px, env(safe-area-inset-top)) 16px 14px;
  }

  nav {
    display: none;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
    padding: 4px;
  }

  .brand {
    gap: 10px;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    font-size: 10px;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 0;
    padding-bottom: max(28px, env(safe-area-inset-bottom));
  }

  .hero-image {
    object-position: center;
  }

  .hero-logo {
    width: min(290px, 78vw);
  }

  .button {
    width: 100%;
  }

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

  .section,
  .section-band,
  .contact,
  .feature-strip {
    padding: 56px 18px;
  }

  h2 {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.1;
  }

  .intro-text,
  .about-copy p,
  .testimonial-card p {
    font-size: 18px;
  }

  .testimonial-card {
    min-height: 0;
    padding: 26px 22px;
  }

  .contact-image img {
    max-height: none;
    object-fit: contain;
  }

  .contact-panel h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .contact-list a {
    min-height: 64px;
    padding: 15px;
  }

  .service-card {
    min-height: auto;
  }

  .gallery {
    gap: 14px;
  }

  footer {
    flex-direction: column;
    padding-right: 18px;
    padding-bottom: max(26px, env(safe-area-inset-bottom));
    padding-left: 18px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
