/* Velora — production stylesheet converted from Claude Design bundle */

:root {
  --cream: #F7F3EC;
  --cream-alt: #EFE9DD;
  --ink: #4A3D30;
  --ink-soft: #5C4B38;
  --muted: #6E5D48;
  --body-muted: #71624F;
  --accent: #7A6248;
  --gold: #C8BBA6;
  --gold-deep: #C0AE93;
  --dark-bg: #4A3D30;
  --dark-text: #EFE7D8;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--ink); }

::selection { background: var(--gold); color: #fff; }

img { max-width: 100%; }

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(30px, 4.5vw, 42px);
  margin: 0 0 26px;
  color: var(--ink);
  letter-spacing: 0.04em;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
  background: var(--ink);
  color: var(--cream);
  padding: 10px 18px;
}
.skip-link:focus { left: 12px; top: 12px; color: var(--cream); }

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

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
}
.eyebrow.light { color: var(--gold-deep); }

/* ---------- Nav ---------- */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  background: linear-gradient(rgba(247,243,236,0.92), rgba(247,243,236,0.75) 70%, rgba(247,243,236,0));
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  letter-spacing: 0.42em;
  color: var(--ink-soft);
}

.nav-links {
  display: flex;
  gap: 34px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
}

.nav-inquire { border-bottom: 1px solid var(--gold); padding-bottom: 3px; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  background: #E5DED0;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  transition: opacity 4.5s cubic-bezier(0.4, 0, 0.2, 1), transform 16s linear;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.08);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(42,36,29,0.38), rgba(42,36,29,0.30) 55%, rgba(42,36,29,0.44));
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cream);
  padding: 0 24px;
  animation: veloraFadeUp 1.4s ease both;
}

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

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin: 0 0 34px;
  color: #E9E1D2;
}

.hero-logo { width: min(460px, 70vw); height: auto; }

.hero-cta {
  margin-top: 46px;
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid rgba(247,243,236,0.55);
  padding: 15px 38px;
  transition: background 0.4s, color 0.4s;
}
.hero-cta:hover { background: var(--cream); color: var(--ink); }

.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(247,243,236,0.7);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* ---------- Sections ---------- */

section { padding: 110px 48px; }
.alt-bg { background: var(--cream-alt); }

.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 { margin-bottom: 0; }

.section-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--body-muted);
  margin: 18px 0 0;
}

/* ---------- About ---------- */

.about-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 440px) 1fr;
  gap: 72px;
  align-items: center;
}

.about-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  box-shadow: 0 24px 60px rgba(74,61,48,0.14);
}

.body-copy {
  font-size: 16px;
  line-height: 1.9;
  font-weight: 300;
  margin: 0 0 20px;
  text-wrap: pretty;
}

.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 21px;
  line-height: 1.7;
  color: var(--accent);
  margin: 0;
}

.ig-icon {
  width: 14px;
  height: 14px;
  margin-right: 8px;
  vertical-align: -2px;
}

.text-link {
  display: inline-block;
  margin-top: 30px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
}

/* ---------- Services ---------- */

.services { text-align: center; }
.services h2 { margin-bottom: 64px; }

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

.service-card {
  background: var(--cream);
  border: 1px solid #DDD3C2;
  padding: 52px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: background 0.4s;
}
.service-card:hover { background: #F2ECE0; }

.numeral {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: var(--gold-deep);
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}

.service-card p {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--body-muted);
  max-width: 240px;
  margin: 0;
  text-wrap: pretty;
}

/* ---------- Gallery ---------- */

.gallery { padding: 100px 48px; }
.gallery-inner { max-width: 1100px; margin: 0 auto; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 300px;
  gap: 18px;
}

.gallery-grid figure { margin: 0; overflow: hidden; border-radius: 2px; }
.gallery-grid .tall { grid-row: span 2; }

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 2s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-grid figure:hover img { transform: scale(1.04); }

/* ---------- Testimonials ---------- */

.testimonials { text-align: center; }
.testimonials .eyebrow { margin-bottom: 60px; }

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

.testimonials-grid figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  color: var(--gold-deep);
  line-height: 0.5;
  margin-top: 10px;
}

.testimonials-grid blockquote {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.testimonials-grid figcaption {
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Process ---------- */

.process {
  background: var(--dark-bg);
  color: var(--dark-text);
}

.process-inner { max-width: 980px; margin: 0 auto; }
.process .section-head { margin-bottom: 70px; }
.process h2 { color: #F1EADC; }

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: #6b5a45;
}

.steps li {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
  align-items: center;
  position: relative;
}

.step-num {
  width: 46px;
  height: 46px;
  border: 1px solid #8a7860;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: #D8C9AF;
  background: var(--dark-bg);
}

.steps h3 {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #E9E1D2;
  margin: 0;
}

.steps p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: #BFB09A;
  margin: 0;
  text-wrap: pretty;
}

/* ---------- Inquiry ---------- */

.inquire-inner { max-width: 640px; margin: 0 auto; }
.inquire .section-head { margin-bottom: 54px; }

#inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

#inquiry-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

#inquiry-form .full { grid-column: span 2; }

#inquiry-form input,
#inquiry-form select,
#inquiry-form textarea {
  border: none;
  border-bottom: 1px solid var(--gold);
  border-radius: 0;
  background: transparent;
  padding: 10px 2px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: var(--ink);
  outline: none;
}

#inquiry-form textarea { resize: vertical; }

#inquiry-form input:focus,
#inquiry-form select:focus,
#inquiry-form textarea:focus {
  border-bottom-color: var(--accent);
}

/* honeypot — visually removed, still in the form for bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

#inquiry-form button {
  grid-column: span 2;
  justify-self: center;
  margin-top: 12px;
  background: var(--dark-bg);
  color: #F1EADC;
  border: 1px solid var(--dark-bg);
  padding: 16px 52px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.4s, color 0.4s;
}

#inquiry-form button:hover:not([disabled]) {
  background: transparent;
  color: var(--ink);
}

#inquiry-form button[disabled] { opacity: 0.6; cursor: wait; }

.form-panel {
  text-align: center;
  padding: 70px 30px;
  border: 1px solid #DDD3C2;
  background: #F2ECE0;
}

.panel-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: var(--ink);
  margin-bottom: 14px;
}

.form-panel p {
  font-size: 15px;
  font-weight: 300;
  color: var(--body-muted);
  margin: 0;
}

/* ---------- Footer ---------- */

footer {
  background: var(--cream-alt);
  padding: 70px 48px 40px;
  text-align: center;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  letter-spacing: 0.42em;
  color: var(--ink-soft);
  padding-left: 0.42em;
}

.footer-tagline {
  margin-top: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--muted);
}

.footer-links {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 36px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.footer-area {
  margin-top: 26px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-legal {
  margin-top: 40px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #A08F76;
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  section, .gallery { padding-left: 28px; padding-right: 28px; }

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

  .testimonials-grid { grid-template-columns: 1fr; gap: 56px; max-width: 560px; }

  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 44px 36px; }
  .steps::before { display: none; }
}

@media (max-width: 760px) {
  nav { padding: 18px 22px; }
  .nav-links { gap: 20px; }
  .nav-links a:not(.nav-inquire) { display: none; }

  section { padding-top: 80px; padding-bottom: 80px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    max-width: 460px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-auto-rows: 220px;
  }
  .gallery-grid .tall { grid-row: span 2; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; max-width: 420px; }
  .service-card { padding: 40px 26px; }

  .steps { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }

  #inquiry-form { grid-template-columns: 1fr; }
  #inquiry-form .full, #inquiry-form button { grid-column: auto; }
}

/* ---------- Motion preferences ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-slide { transition: opacity 0.8s ease; transform: none; }
  .hero-slide.is-active { transform: none; }
  .hero-content { animation: none; }
  .gallery-grid img { transition: none; }
}
