:root {
  --red: #c10205; /* main red */
  --orange: #feb200; /* accent */
  --paper: #fef9ee; /* warm white background */
  --ink: #2b2b2b; /* body text */
  --ink-2: #4a4a4a; /* secondary text */
  --edge: #ece4d6; /* subtle lines */
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Lora", serif;
  line-height: 1.5;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

.revealUp1Load {
  position: relative;
  transform: translateY(15px);
  opacity: 0;
  transition: 0.75s all ease-in-out;
  transition-delay: 0.25s;
}

.revealUp1Load.active {
  transform: translateY(0);
  opacity: 1;
}

.revealUp2Load {
  position: relative;
  transform: translateY(15px);
  opacity: 0;
  transition: 0.75s all ease-in-out;
  transition-delay: 0.5s;
}

.revealUp2Load.active {
  transform: translateY(0);
  opacity: 1;
}

.revealUp3Load {
  position: relative;
  transform: translateY(15px);
  opacity: 0;
  transition: 0.75s all ease-in-out;
  transition-delay: 0.75s;
}

.revealUp3Load.active {
  transform: translateY(0);
  opacity: 1;
}

.revealUp1 {
  position: relative;
  transform: translateY(15px);
  opacity: 0;
  transition: 0.75s all ease-in-out;
  transition-delay: 0.25s;
}

.revealUp1.active {
  transform: translateY(0);
  opacity: 1;
}

.revealUp2 {
  position: relative;
  transform: translateY(15px);
  opacity: 0;
  transition: 0.75s all ease-in-out;
  transition-delay: 0.5s;
}

.revealUp2.active {
  transform: translateY(0);
  opacity: 1;
}

.revealUp3 {
  position: relative;
  transform: translateY(15px);
  opacity: 0;
  transition: 0.75s all ease-in-out;
  transition-delay: 0.75s;
}

.revealUp3.active {
  transform: translateY(0);
  opacity: 1;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  -webkit-backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid var(--edge);
  transition: background-color 0.3s ease;
  backdrop-filter: saturate(140%) blur(6px);
}

.site-header.scrolled {
  background: rgba(254, 249, 238, 0.9); /* slightly transparent when scrolled */
}

.wrap {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 120px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 94px;
  height: auto;
}
.brand .name {
  font-family: "Cinzel Decorative", serif;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}
.menu {
  display: flex;
  align-items: center;
  gap: 22px;
}
.menu a {
  font-size: 0.95rem;
  color: var(--ink-2);
}
.menu a:hover {
  color: var(--red);
}

.menu-open .site-header {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background: #fff;
}

a.cta,
button.cta {
  padding: 0.75rem 0.9rem;
  border-radius: 999px;
  background: var(--red);
  color: white !important;
  font-weight: 600;
  border: 2px solid var(--red);
  margin: 15px 0;
  cursor: pointer;
  font-size: 1rem; /* NEW: match nav link text size */
  line-height: 1.2;
  font-family: inherit;
}
a.cta:hover,
button.cta:hover {
  filter: brightness(1.05);
}
.hamb {
  display: none;
  border: none;
  background: none;
  cursor: pointer;
  padding: 10px;
  -webkit-tap-highlight-color: transparent;
}

.hamb span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background-color: var(--ink); /* match your text color */
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* When drawer is open, animate to X */
.drawer.is-open ~ .hamb span:nth-child(1),
.menu-open .hamb span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.drawer.is-open ~ .hamb span:nth-child(2),
.menu-open .hamb span:nth-child(2) {
  opacity: 0;
}

.drawer.is-open ~ .hamb span:nth-child(3),
.menu-open .hamb span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hamb:focus {
  outline: none; /* kill focus outline */
}
.drawer {
  display: none;
}

/* Mobile nav */
@media (max-width: 860px) {
  .menu {
    display: none;
  }
  .hamb {
    display: block;
  }

  .drawer {
    position: fixed;
    /* your header is 120px tall, so start the drawer below it */
    inset: 120px 0 0 0;
    background: #fff; /* solid white */
    box-shadow: var(--shadow);
    border-top: 1px solid var(--edge);
    z-index: 9999; /* above header and content */
    display: none; /* hidden until .is-open */
  }

  /* flex the inner wrap to lay out links vertically */
  .drawer .wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px 20px;
  }

  .drawer.is-open {
    display: block;
  }

  .drawer a {
    padding: 14px 8px;
  }

  .drawer a:not(.cta) {
    border-bottom: 1px dashed var(--edge);
  }

  .drawer .cta {
    align-self: flex-start;
    margin-top: 8px;
  }
}

/* Hero */
.hero {
  position: relative;
  background: radial-gradient(
      1200px 600px at 0% 0%,
      #fff6d6 0%,
      rgba(255, 255, 255, 0) 45%
    ),
    linear-gradient(-65deg, #fff1c4, #ffe9a3 40%, #fff 85%);
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
  padding: 24px 20px 24px;
}
.tag {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  background: linear-gradient(90deg, var(--paper), #fff7da);
  border: 1px solid var(--edge);
  padding: 6px 10px;
  border-radius: 999px;
  margin: 15px 0;
}
.h1 {
  font-family: "Cinzel Decorative", serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin: 30px 0;
}
.lead {
  font-size: 1.05rem;
  color: var(--ink-2);
  margin: 30px 0;
}
.hero-card {
  background: white;
  border: 1px solid var(--edge);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
  margin: 45px 0;
}
.stat {
  display: flex;
  align-items: center;
  gap: 12px;
}
.stat .num {
  font-family: "Cinzel Decorative", serif;
  font-size: 2rem;
  color: var(--red);
}

.hero-candle {
  display: flex;
  justify-content: flex-end; /* push image to the right edge of its column */
  align-items: center; /* vertical center within hero */
}

.hero-candle img {
  max-height: 900px; /* control max size */
  width: auto;
  object-fit: contain;
}

@media (max-width: 860px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 6px 20px;
  }
  .hero-candle {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  .hero-candle img {
    max-height: 280px;
    right: 0;
  }

  .hero {
    padding: 15px 20px 15px;
  }

  .stat {
    flex-direction: column; /* stack vertically */
    align-items: flex-start; /* left-align text under number */
    gap: 6px; /* small space between number + text */
  }

  .stat .num {
    font-size: 2rem; /* keep it big */
    line-height: 1.2;
  }
}

/* Sections */
section {
  padding: 64px 0;
  border-top: 1px solid var(--edge);
}
h2 {
  font-family: "Cinzel Decorative", serif;
  font-size: 1.8rem;
  margin: 0 0 10px;
}
.eyebrow {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}
.cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
li {
  font-size: 16px;
}

.note {
  list-style: none; /* remove browser bullets */
  padding-left: 0; /* reset default indent */
  margin: 0;
}

.note li::before {
  content: "✦";
  color: var(--red);
  margin-right: 8px;
}
.about-card {
  background: white;
  border: 1px solid var(--edge);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 30px;
  margin: 30px 0;
}

@media (max-width: 860px) {
  .cols-2 {
    grid-template-columns: 1fr;
  }
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.card {
  background: white;
  border: 1px solid var(--edge);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 18px;
}
.card h3 {
  margin: 0.2rem 0 0.35rem;
  font-size: 1.05rem;
}
.card p {
  font-size: 0.95rem;
  color: var(--ink-2);
}
@media (max-width: 860px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

/* Gallery */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.tile {
  background: linear-gradient(180deg, #fff, #fff6dd);
  border: 1px solid var(--edge);
  border-radius: 12px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b9a66f;
  font-weight: 600;
}
@media (max-width: 860px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Contact */
form {
  display: grid;
  gap: 12px;
}
input,
textarea,
select {
  font: inherit;
  background: #fff;
  border: 1px solid var(--edge);
  border-radius: 10px;
  padding: 12px;
}
textarea {
  min-height: 120px;
}
.note {
  font-size: 0.9rem;
  color: var(--ink-2);
}

/* Form fields */
#inquiryForm label {
  display: flex;
  flex-direction: column; /* stack text above input */
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--ink); /* same as body text */
  gap: 6px; /* space between label text and input */
}

#inquiryForm input,
#inquiryForm select,
#inquiryForm textarea {
  font: inherit;
  background: #fff;
  border: 1px solid var(--edge);
  border-radius: 10px;
  padding: 12px;
  width: 100%; /* full width under label */
  box-sizing: border-box;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 16px; /* space between card and image */
  align-items: stretch; /* make both fill the column width */
}

.quick-img img {
  display: block;
  width: 100%;
  object-fit: cover;
  padding-top: 60px;
  margin-right: 0px;
}

/* Footer */
footer {
  padding: 28px 0;
  border-top: 1px solid var(--edge);
  font-size: 0.9rem;
  color: var(--ink-2);
  background: #fff;
}
.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 860px) {
  .foot {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Utility */
.mt-8 {
  margin-top: 8px;
}
.mt-12 {
  margin-top: 12px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-24 {
  margin-top: 24px;
}

/* ===== Reveal Animations (accessible, classy) ===== */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translate3d(0, 8px, 0); /* gentle rise */
    transition: opacity 500ms ease-out, transform 500ms ease-out;
    will-change: opacity, transform;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  /* Variants */
  .reveal-up {
    transform: translate3d(0, 12px, 0);
  }
  .reveal-down {
    transform: translate3d(0, -12px, 0);
  }
  .reveal-left {
    transform: translate3d(-14px, 0, 0);
  }
  .reveal-right {
    transform: translate3d(14px, 0, 0);
  }

  /* When visible, all variants return to neutral */
  .reveal-up.is-visible,
  .reveal-down.is-visible,
  .reveal-left.is-visible,
  .reveal-right.is-visible {
    transform: translate3d(0, 0, 0);
  }

  /* Optional: tiny delay helpers for manual staggering */
  .delay-1 {
    transition-delay: 80ms;
  }
  .delay-2 {
    transition-delay: 160ms;
  }
  .delay-3 {
    transition-delay: 240ms;
  }
  .delay-4 {
    transition-delay: 320ms;
  }
}

/* Respect reduced motion: show everything immediately */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-up,
  .reveal-down,
  .reveal-left,
  .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
