@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,700&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --cream: #f7f4ef;
  --sand: #e8e1d4;
  --charcoal: #2b2b2b;
  --slate: #4c514f;
  --sage: #7d8b75;
  --gold: #c69b4e;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--charcoal);
  background: linear-gradient(180deg, #f9f6f0 0%, #f0ebe2 55%, #f7f4ef 100%);
}

.intro-screen {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, #f8f4ee 0%, #ebe2d2 100%);
  display: grid;
  place-items: center;
  z-index: 100;
  pointer-events: none;
  animation: introHold 0.5s ease forwards;
}

.intro-logo {
  width: min(220px, 50vw);
  height: auto;
  animation: introFloat 1.6s ease-in-out forwards;
}

.intro-hide {
  animation: introFade 0.9s ease forwards;
  animation-delay: 0.8s;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  background: rgba(247, 244, 239, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 10;
  opacity: 0;
  transform: translateY(-14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

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

.logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand-name {
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  margin: 0;
  letter-spacing: 0.5px;
}

.brand-sub {
  margin: 2px 0 0;
  color: var(--slate);
  font-size: 0.85rem;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone {
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.button.solid {
  background: var(--charcoal);
  color: var(--white);
}

.button.ghost {
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
}

.hero {
  padding: 64px 0 80px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.4rem, 3vw + 1rem, 3.6rem);
  margin: 12px 0 16px;
  line-height: 1.08;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sage);
}

.lead {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 24px 0 10px;
}

.mini {
  color: var(--slate);
  font-size: 0.9rem;
}

.accent {
  color: var(--gold);
}

.hero-proof {
  display: grid;
  gap: 18px;
}

.proof-card {
  background: var(--white);
  border-radius: 20px;
  padding: 12px;
  box-shadow: var(--shadow);
}

.proof-card img {
  border-radius: 16px;
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.proof-title {
  margin: 0 0 8px;
  font-weight: 600;
}

.proof-label {
  padding: 10px 4px 4px;
  color: var(--slate);
  font-size: 0.9rem;
}

.trust {
  padding: 40px 0 60px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.trust-list {
  padding-left: 18px;
  color: var(--slate);
  line-height: 1.7;
}

.trust-note {
  background: var(--charcoal);
  color: var(--white);
  border-radius: 18px;
  padding: 24px;
}

.trust-callout {
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  margin: 0 0 10px;
}

.gallery {
  padding: 60px 0 70px;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

figure {
  margin: 0;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.page-ready .site-header {
  animation: headerDrop 0.7s ease-out forwards;
}

.page-ready .hero {
  animation: heroRise 0.9s ease-out forwards;
  animation-delay: 0.15s;
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes introHold {
  from {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}

@keyframes introFloat {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes introFade {
  to {
    opacity: 0;
    transform: scale(1.06);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  filter: blur(6px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    filter 0.8s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal-in {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .intro-screen,
  .intro-logo {
    animation: none;
  }

  .site-header,
  .hero {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

figure img,
figure video {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.lightbox-link {
  display: block;
}

.lightbox-link:hover img {
  transform: scale(1.02);
  transition: transform 0.2s ease;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 14, 12, 0.88);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 50;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-image {
  max-width: min(92vw, 1100px);
  max-height: 80vh;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  background: var(--white);
  color: var(--charcoal);
  font-weight: 700;
  cursor: pointer;
}

.lightbox-close:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

figcaption {
  padding: 12px 14px 16px;
  font-size: 0.9rem;
  color: var(--slate);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.video-grid figure {
  aspect-ratio: 9 / 16;
}

.video-grid figure video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote {
  padding: 70px 0 90px;
  background: var(--sand);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.contact-card {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  margin-top: 18px;
  box-shadow: var(--shadow);
}

.contact-title {
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 0.75rem;
  margin: 0 0 10px;
  color: var(--sage);
}

.contact-phone {
  font-weight: 700;
  font-size: 1.3rem;
}

.quote-form {
  display: grid;
  gap: 12px;
  background: var(--white);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: var(--slate);
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-family: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.78rem;
  color: var(--slate);
  margin: 0;
}

.site-footer {
  padding: 30px 0 40px;
  background: #221f1c;
  color: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 760px) {
  .header-cta {
    flex-direction: column;
    align-items: flex-end;
  }

  .proof-card img {
    height: 180px;
  }

  figure img,
  figure video {
    height: 200px;
  }
}

@media (max-width: 520px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-cta {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }

  .button {
    padding: 10px 18px;
  }
}
