/* === CSS CUSTOM PROPERTIES === */
:root {
  --color-bg:           #F5F3EE;
  --color-bg-alt:       #EAE7DF;
  --color-text:         #2C353D;
  --color-text-light:   #6B7680;
  --color-primary:      #5C6B7A;
  --color-primary-dark: #3F4A56;
  --color-accent:       #8E9AA6;
  --color-accent-light: #C2C9D2;
  --color-white:        #FFFFFF;
  --color-border:       #D5D2CB;
  --color-card-bg:      #FFFFFF;

  --font-heading: 'Cormorant Garamond', serif;
  --font-body:    'Inter', sans-serif;

  --max-width: 1080px;
  --max-width-narrow: 720px;
  --radius-card: 4px;
  --radius-btn:  2px;
  --shadow-card: 0 1px 8px rgba(44, 53, 61, 0.06);
  --shadow-card-hover: 0 4px 18px rgba(44, 53, 61, 0.10);
  --transition: 0.4s ease;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--color-text);
  font-weight: 500;
  letter-spacing: 0.005em;
}

h1 { font-weight: 500; }
h2 { font-weight: 500; }
h3 { font-weight: 500; }

p { color: var(--color-text); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* === FADE-IN ANIMATION (DISABLED on classic — kept for upsell re-enable) === */
/*
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page-fade {
  animation: fadeUp 0.9s ease-out both;
}
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.30s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.45s; }
*/
/* Make any element marked .reveal/.reveal.visible visible by default since the JS init is disabled */
.reveal { opacity: 1; transform: none; }

/* === NAVIGATION === */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(245, 243, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: 0 1px 12px rgba(44, 53, 61, 0.06);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  letter-spacing: 0.01em;
}

.nav-logo svg { flex-shrink: 0; color: var(--color-primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--color-text-light);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary-dark);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.lang-toggle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: 0.35rem 0.7rem;
  transition: all var(--transition);
  background: transparent;
}

.lang-toggle:hover {
  color: var(--color-primary-dark);
  border-color: var(--color-primary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--color-text);
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu — compact dropdown panel anchored just below the nav (classic).
   Does NOT cover the page. Top-right, 260px wide, drops down in place. */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  right: 1.25rem;
  z-index: 999;
  width: 260px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(44, 53, 61, 0.10);
  padding: 0.75rem 0;
  margin-top: 6px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--color-text);
  padding: 0.7rem 1.25rem;
  border-bottom: 1px solid rgba(213, 210, 203, 0.5);
  transition: background var(--transition), color var(--transition);
}

.mobile-menu a:last-of-type { border-bottom: none; }

.mobile-menu a:hover,
.mobile-menu a.active {
  background: var(--color-bg);
  color: var(--color-primary-dark);
}

.mobile-menu .lang-toggle {
  margin: 0.5rem 1.25rem 0.25rem;
  font-size: 0.78rem;
  padding: 0.4rem 0.9rem;
  align-self: flex-start;
}

/* === HERO SECTION === */
.hero {
  position: relative;
  height: 78vh;
  min-height: 480px;
  max-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 50%;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 53, 61, 0.62) 0%, rgba(44, 53, 61, 0.18) 60%, rgba(44, 53, 61, 0.05) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem 2rem 4.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--color-white);
  max-width: 720px;
  margin-bottom: 1rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.18;
  letter-spacing: 0.005em;
}

.hero-content p {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255, 255, 255, 0.86);
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-weight: 300;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  /* transform: translateY(-1px); */ /* lift disabled on classic */
}

.btn-outline-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary-dark);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.text-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-primary-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid var(--color-accent-light);
  padding-bottom: 2px;
  transition: border-color var(--transition);
}

.text-link:hover {
  border-color: var(--color-primary);
  /* gap: 0.6rem; */ /* arrow-slide disabled on classic */
}

/* === INTRO / WELCOME === */
.intro {
  padding: 6rem 2rem 5rem;
  background: var(--color-bg);
}

.intro-inner {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  text-align: center;
}

.intro h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin-bottom: 1.75rem;
  line-height: 1.3;
  font-style: italic;
  color: var(--color-text);
}

.intro p {
  color: var(--color-text-light);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.1rem;
}

.intro-divider {
  width: 40px;
  height: 1px;
  background: var(--color-accent);
  margin: 2.5rem auto 0;
}

/* === SERVICES === */
.services {
  padding: 5.5rem 2rem;
  background: var(--color-bg-alt);
}

.services-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.services-heading {
  text-align: center;
  margin-bottom: 4rem;
}

.services-heading h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-card);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(213, 210, 203, 0.5);
}

/* Hover lift disabled on classic — premium-only effect.
.service-card { transition: box-shadow var(--transition), transform var(--transition); }
.service-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}
*/

.service-icon {
  width: 38px;
  height: 38px;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  stroke-width: 1.2;
}

.service-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.85rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* === PREPARING SECTION (image + text) === */
.preparing {
  padding: 6rem 2rem;
  background: var(--color-bg);
}

.preparing-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.preparing-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-card);
}

.preparing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.98);
}

.preparing-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.preparing-text p {
  color: var(--color-text-light);
  margin-bottom: 1.1rem;
  line-height: 1.85;
}

.preparing-list {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.preparing-list li {
  display: flex;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--color-text);
  align-items: flex-start;
  line-height: 1.7;
}

.preparing-list .marker {
  flex-shrink: 0;
  width: 8px;
  height: 1px;
  background: var(--color-accent);
  margin-top: 0.85rem;
}

/* === ABOUT PREVIEW === */
.about-preview {
  padding: 5.5rem 2rem;
  background: var(--color-bg-alt);
}

.about-preview-inner {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  text-align: center;
}

.about-preview h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-bottom: 1.5rem;
}

.about-preview p {
  color: var(--color-text-light);
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.about-preview .text-link {
  margin-top: 1.5rem;
}

/* === CONTACT CTA === */
.contact-cta {
  padding: 6rem 2rem;
  background: var(--color-primary-dark);
  color: var(--color-white);
  text-align: center;
}

.contact-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.contact-cta h2 {
  color: var(--color-white);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin-bottom: 1.25rem;
  font-style: italic;
  font-weight: 400;
}

.contact-cta p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 2.25rem;
}

.contact-cta-phone {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.contact-cta-hours {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}

/* === FOOTER === */
.footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.78);
  padding: 4.5rem 2rem 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 0.6rem;
  letter-spacing: 0.01em;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  line-height: 1.75;
}

.footer-address {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: normal;
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--color-white); }

.footer-contact p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}

.footer-contact a {
  color: var(--color-accent-light);
  transition: color var(--transition);
}

.footer-contact a:hover { color: var(--color-white); }

.footer-contact .response-note {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
  font-style: italic;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-bottom span,
.footer-bottom a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.02em;
}

.footer-bottom a:hover { color: rgba(255, 255, 255, 0.7); }

/* === PAGE BANNER === */
.page-banner {
  position: relative;
  height: 38vh;
  min-height: 240px;
  max-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 55%;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 53, 61, 0.65) 0%, rgba(44, 53, 61, 0.2) 100%);
}

.page-banner-content {
  position: relative;
  z-index: 1;
  padding: 2rem 2rem 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.page-banner-content h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--color-white);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.page-banner-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  max-width: 580px;
  font-style: italic;
}

/* === SERVICES PAGE — DETAIL LIST === */
.services-detail {
  padding: 5.5rem 2rem;
  background: var(--color-bg);
}

.services-detail-inner {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.service-block {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.service-block:last-child { border-bottom: none; }

.service-block-head {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.service-block-head svg {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
  stroke-width: 1.2;
  flex-shrink: 0;
}

.service-block-head h3 {
  font-size: 1.55rem;
}

.service-block p {
  color: var(--color-text-light);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.service-block-list {
  margin-top: 1.25rem;
  padding-left: 1rem;
  border-left: 2px solid var(--color-accent-light);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-block-list li {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.7;
}

/* === ABOUT PAGE === */
.story-section {
  padding: 5.5rem 2rem;
  background: var(--color-bg);
}

.story-inner {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.story-inner h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 2rem;
  text-align: center;
  font-style: italic;
  font-weight: 400;
}

.story-text p {
  color: var(--color-text-light);
  line-height: 1.95;
  margin-bottom: 1.4rem;
  font-size: 1.02rem;
}

.story-text p:first-child::first-letter {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  float: left;
  line-height: 0.95;
  margin: 0.4rem 0.6rem 0 0;
  color: var(--color-primary);
}

.values-section {
  padding: 5rem 2rem;
  background: var(--color-bg-alt);
}

.values-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.values-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 0.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.value-block {
  padding: 1rem 0.5rem;
}

.value-icon {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
  margin: 0 auto 1.25rem;
  stroke-width: 1.2;
}

.value-block h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.value-block p {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* === CONTACT PAGE === */
.contact-section {
  padding: 5.5rem 2rem;
  background: var(--color-bg);
}

.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4.5rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 1.25rem;
  font-style: italic;
  font-weight: 400;
}

.contact-info > p {
  color: var(--color-text-light);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.contact-detail {
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.contact-detail:last-of-type { border-bottom: none; }

.contact-detail h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.6rem;
}

.contact-detail p,
.contact-detail a {
  color: var(--color-text);
  font-size: 1.02rem;
  line-height: 1.65;
}

.contact-detail a:hover {
  color: var(--color-primary-dark);
}

.contact-form-wrap {
  background: var(--color-card-bg);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(213, 210, 203, 0.7);
}

.contact-form-wrap h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.contact-form-wrap > p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.form-field {
  margin-bottom: 1.25rem;
}

.form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  resize: vertical;
}

.form-field textarea { min-height: 110px; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-white);
}

.form-note {
  font-size: 0.78rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-top: 0.5rem;
  font-style: italic;
}

.contact-form-wrap .btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

/* === VIPPS / DEMO MODAL === */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(44, 53, 61, 0.6);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--color-white);
  border-radius: 6px;
  padding: 3rem 2.5rem 2.25rem;
  max-width: 460px;
  width: 100%;
  text-align: center;
  /* transform: translateY(14px); */ /* slide-in disabled on classic */
  transition: opacity 0.3s ease;
  opacity: 0;
  box-shadow: 0 20px 60px rgba(44, 53, 61, 0.3);
  border: 1px solid var(--color-border);
}

.modal-backdrop.open .modal-box {
  /* transform: translateY(0); */
  opacity: 1;
}

.modal-icon {
  width: 36px;
  height: 36px;
  color: var(--color-primary);
  margin: 0 auto 1.25rem;
  stroke-width: 1.1;
}

.modal-box h2 {
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
  font-style: italic;
  font-weight: 400;
}

.modal-box p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 0.9rem;
}

.modal-locked {
  font-size: 0.82rem !important;
  color: var(--color-text-light) !important;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
  margin-top: 1.25rem !important;
  margin-bottom: 1.5rem !important;
  font-style: italic;
}

.modal-box a {
  color: var(--color-primary-dark);
  border-bottom: 1px solid var(--color-accent-light);
  padding-bottom: 1px;
  transition: border-color var(--transition);
}

.modal-box a:hover { border-color: var(--color-primary); }

.modal-close-btn {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 0.8rem 2.5rem;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background var(--transition);
  font-family: var(--font-body);
}

.modal-close-btn:hover { background: var(--color-primary-dark); }

/* === 404 === */
.not-found {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem;
}

.not-found-inner h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  line-height: 1;
  font-style: italic;
}

.not-found-inner h2 {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  margin-bottom: 1rem;
  color: var(--color-text);
}

.not-found-inner p {
  color: var(--color-text-light);
  margin-bottom: 2rem;
  font-size: 1.02rem;
  font-style: italic;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .hero { height: 70vh; }
  .hero-content { padding: 2rem 1.5rem 3rem; }
  .hero-content h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .hero-candle .hero-bg { background-position: 74% 30%; transform: scale(1.04); }

  .intro { padding: 4rem 1.5rem; }

  .services { padding: 4rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  .preparing { padding: 4rem 1.5rem; }
  .preparing-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .preparing-image { aspect-ratio: 5 / 4; max-height: 380px; }

  .about-preview { padding: 4rem 1.5rem; }

  .contact-cta { padding: 4rem 1.5rem; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .values-grid { grid-template-columns: 1fr; gap: 2rem; }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-form-wrap { padding: 1.75rem 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .nav-inner { padding: 0 1.25rem; }
}

/* === Hero candle vignette (parity with premium) === */
.hero-candle .hero-overlay {
  background: radial-gradient(ellipse at 65% 55%,
    rgba(44, 53, 61, 0.05) 0%,
    rgba(44, 53, 61, 0.45) 50%,
    rgba(44, 53, 61, 0.78) 100%);
}

/* === Photo strip — quiet full-bleed photo between sections (classic, static) === */
.photo-strip {
  position: relative;
  height: 50vh;
  min-height: 320px;
  max-height: 520px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.photo-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44, 53, 61, 0.05), rgba(44, 53, 61, 0.18));
  pointer-events: none;
}

@media (max-width: 768px) {
  .photo-strip { height: 36vh; min-height: 240px; }
}

/* === Photo-strip caption overlay (static, no animation — matches premium quote style) === */
.photo-strip-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(44, 53, 61, 0.12), rgba(44, 53, 61, 0.38));
}

.photo-strip-caption blockquote {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.85rem);
  line-height: 1.5;
  font-weight: 400;
}

.photo-strip-caption cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* === About-page values section gets a small decorative wreath above the heading === */
.values-decor {
  display: block;
  width: 88px;
  height: 88px;
  margin: 0 auto 1.75rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  padding: 6px;
}
