/* =========================================================
   TUBEROSE STUDIOS — Stylesheet
   Aesthetic: Editorial botanical. Cream + sage. Refined.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  /* Palette derived from the logo */
  --cream: #ece5cb;
  --cream-light: #f5efde;
  --cream-deep: #ddd4b6;
  --bone: #fbf8ee;
  --leaf: #8AC03E;
  --leaf-deep: #8B6B4A;
  --leaf-soft: #a3b876;
  --bloom: #ffffff;
  --ink: #2a2e22;
  --ink-soft: #4a4f3f;
  --muted: #7a7d6e;
  --line: rgba(42, 46, 34, 0.12);

  /* Type */
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Outfit', system-ui, sans-serif;

  /* Spacing */
  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--bone);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ================= Typography ================= */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--leaf);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--leaf);
}

.script {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--leaf-deep);
}

/* ================= Layout ================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 var(--gutter); }

section { padding: clamp(4rem, 9vw, 7rem) 0; }

/* ================= Header / Nav ================= */
.site-header {
  /*position: fixed;*/
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgb(247 228 204);
  background: rgb(237 233 208);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s ease;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--gutter);
  max-width: 1400px;
  margin: 0 auto;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.nav-brand img { max-width: 220px; }
.nav-brand .brand-mark {
  display: inline-block;
  width: 36px; height: 36px;
  background: var(--cream);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.nav-brand .brand-mark::after {
  content: 'T';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--leaf-deep);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.6rem;
  align-items: center;
  display: none;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--leaf-deep); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--leaf);
}

.nav-cta {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone);
  background: var(--leaf-deep);
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--leaf-deep);
  transition: all 0.25s ease;
  cursor: pointer;
}
.nav-cta:hover { background: transparent; color: var(--leaf-deep); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--ink);
  margin: 5px 0;
  transition: 0.3s;
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--bone);
    padding: 2rem var(--gutter);
    gap: 1.4rem;
    border-bottom: 1px solid var(--line);
  }
}

/* ================= Buttons ================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 1.9rem;
  border-radius: 999px;
  border: 1px solid var(--leaf-deep);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary {
  background: var(--leaf-deep);
  color: var(--bone);
}
.btn-primary:hover {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--leaf-deep);
}
.btn-ghost:hover { background: var(--leaf-deep); color: var(--bone); }

.btn .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

/* ================= Hero ================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 7.2rem;
  padding-top: 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-light) 60%, var(--bone) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(107, 142, 61, 0.06) 0px, transparent 40%),
                    radial-gradient(circle at 80% 70%, rgba(107, 142, 61, 0.05) 0px, transparent 45%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-content .eyebrow { margin-bottom: 1.75rem; }
.hero h1 {
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  font-weight: 300;
  line-height: 0.98;
  margin-bottom: 1.5rem;
}
.hero h1 .accent {
  font-style: italic;
  color: var(--leaf-deep);
  font-weight: 300;
}
.hero p.lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(42, 46, 34, 0.25);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(42, 46, 34, 0.25) 100%);
}

.hero-decor {
  position: absolute;
  width: 220px;
  opacity: 0.6;
  pointer-events: none;
}
.hero-decor.tl { top: 7rem; right: 35%; transform: rotate(-15deg); }
.hero-decor.br { bottom: 4rem; left: 5rem; transform: rotate(180deg); opacity: 0.4; }

@media (max-width: 900px) {
  .hero { min-height: auto; padding: 8rem 0 4rem; padding-top: 2rem; }
  .hero .container { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { aspect-ratio: 3/4; max-width: 420px; margin: 0 auto; }
  .hero-decor { display: none; }
}

/* ================= Sections — generic ================= */
.section-head { margin-bottom: 4rem; max-width: 720px; }
.section-head h2 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  margin-top: 1.25rem;
}
.section-head h2 em { color: var(--leaf-deep); font-style: italic; font-weight: 300; }
.section-head p { margin-top: 1.25rem; color: var(--ink-soft); max-width: 560px; }

/* ================= Strip / marquee ================= */
.marquee {
  background: var(--leaf-deep);
  color: var(--cream-light);
  padding: 1.5rem 0;
  overflow: hidden;
  border-block: 1px solid var(--leaf-soft);
}
.marquee-track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-style: italic;
  font-weight: 400;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 4rem; }
.marquee-dot { color: var(--leaf-soft); }
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================= Service cards (home) ================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.service-card {
  background: var(--bone);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.3s ease;
}
.service-card:hover { background: var(--cream-light); }
.service-card .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--leaf);
  display: block;
  margin-bottom: 2rem;
}
.service-card h3 {
  font-size: 1.65rem;
  margin-bottom: 0.85rem;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.service-card .icon {
  width: 36px; height: 36px;
  margin-bottom: 1.5rem;
  color: var(--leaf-deep);
}

/* ================= Feature split ================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split.reverse > div:first-child { order: 2; }
@media (max-width: 900px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse > div:first-child { order: 0; }
}
.split-img {
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }

.feature-list { list-style: none; margin-top: 2rem; }
.feature-list li {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  align-items: flex-start;
}
.feature-list li:last-child { border-bottom: 1px solid var(--line); }
.feature-list .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--leaf);
  font-size: 0.9rem;
  flex-shrink: 0;
  width: 28px;
  padding-top: 0.2rem;
}
.feature-list h4 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.feature-list p { font-size: 0.9rem; color: var(--ink-soft); }

/* ================= Stats band ================= */
.stats-band {
  background: var(--cream);
  padding: 4rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  text-align: center;
}
.stat .num {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--leaf-deep);
}
.stat .num em { font-style: italic; }
.stat .label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.6rem;
}

/* ================= Testimonials ================= */
.testimonial {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 0;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 2rem;
}
.testimonial blockquote::before { content: '“'; color: var(--leaf); }
.testimonial blockquote::after { content: '”'; color: var(--leaf); }
.testimonial cite {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.testimonial cite strong { color: var(--leaf-deep); font-weight: 500; }

/* Testimonial grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.t-card {
  background: var(--bone);
  border: 1px solid var(--line);
  padding: 2.25rem;
  border-radius: 4px;
  position: relative;
}
.t-card .quote-mark {
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--leaf-soft);
  margin-bottom: 0.5rem;
}
.t-card p {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.t-card .author {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.t-card .author strong { color: var(--leaf-deep); display: block; margin-bottom: 0.2rem; font-weight: 500; }
.t-card .author span { color: var(--muted); font-size: 0.72rem; }

/* ================= CTA band ================= */
.cta-band {
  background: var(--ink);
  color: var(--cream-light);
  padding: clamp(4rem, 8vw, 6rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(107, 142, 61, 0.18), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 {
  color: var(--cream-light);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  max-width: 800px;
  margin: 1.25rem auto;
}
.cta-band h2 em { color: var(--leaf-soft); font-style: italic; }
.cta-band .eyebrow { color: var(--leaf-soft); }
.cta-band .eyebrow::before { background: var(--leaf-soft); }
.cta-band p { max-width: 560px; margin: 0 auto 2.5rem; color: rgba(245, 239, 222, 0.75); }
.cta-band .btn-primary { background: var(--leaf-deep); color: var(--bone); border-color: var(--leaf-deep); }
.cta-band .btn-primary:hover { background: var(--cream-light); border-color: var(--cream-light); color: var(--leaf-deep); }

/* ================= Footer ================= */
.site-footer {
  background: var(--cream);
  padding: 5rem 0 2rem;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-col {
    display: none;
}
@media (max-width: 800px) {
  /*.footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }*/
}
.footer-brand {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}
.footer-brand h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--leaf-deep);
  margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.7rem; font-size: 0.92rem; }
.footer-col a:hover { color: var(--leaf-deep); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: all 0.25s;
}
.footer-socials a:hover {
  background: var(--leaf-deep);
  color: var(--cream-light);
  border-color: var(--leaf-deep);
}

/* ================= Page hero (sub-pages) ================= */
.page-hero {
  padding: 11rem 0 5rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-light) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--line);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  max-width: 900px;
  margin-top: 1.5rem;
}
.page-hero h1 em { color: var(--leaf-deep); font-style: italic; }
.page-hero p {
  margin-top: 1.5rem;
  max-width: 580px;
  font-size: 1.08rem;
  color: var(--ink-soft);
}
.breadcrumbs {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.breadcrumbs a { color: var(--leaf-deep); }

/* ================= Service detail blocks ================= */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--line);
}
.service-detail:nth-child(even) > div:first-child { order: 2; }
@media (max-width: 900px) {
  .service-detail { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0; }
  .service-detail:nth-child(even) > div:first-child { order: 0; }
}
.service-detail .img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
}
.service-detail .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.service-detail .meta {
  font-family: var(--serif);
  font-style: italic;
  color: var(--leaf-deep);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.service-detail h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}
.service-detail .body p { color: var(--ink-soft); margin-bottom: 1.25rem; }
.service-detail .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.service-detail .tag {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  background: var(--cream);
  border-radius: 999px;
  color: var(--ink-soft);
}

/* ================= Gallery ================= */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.gallery-filters button {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink-soft);
  transition: all 0.25s;
}
.gallery-filters button:hover { border-color: var(--leaf); color: var(--leaf-deep); }
.gallery-filters button.active { background: var(--leaf-deep); color: var(--cream-light); border-color: var(--leaf-deep); }

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.gallery .item {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}
.gallery .item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery .item:hover img { transform: scale(1.05); }
.gallery .item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(42, 46, 34, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery .item:hover::after { opacity: 1; }
.gallery .item .caption {
  position: absolute;
  bottom: 1rem; left: 1.25rem;
  color: var(--cream-light);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
  z-index: 2;
}
.gallery .item:hover .caption { opacity: 1; transform: translateY(0); }
.gallery .span-6 { grid-column: span 6; }
.gallery .span-4 { grid-column: span 4; }
.gallery .span-8 { grid-column: span 8; }
.gallery .span-3 { grid-column: span 3; }
.gallery .item.tall { aspect-ratio: 3/4; }
.gallery .item.wide { aspect-ratio: 16/10; }
.gallery .item.square { aspect-ratio: 1/1; }
@media (max-width: 800px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .span-6, .gallery .span-4, .gallery .span-8, .gallery .span-3 { grid-column: span 1; }
  .gallery .item.wide, .gallery .item.tall { aspect-ratio: 1/1; }
}

/* ================= Pricing ================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.price-card {
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px -18px rgba(42, 46, 34, 0.18); }
.price-card.featured {
  background: var(--ink);
  color: var(--cream-light);
  border-color: var(--ink);
}
.price-card.featured .price-name,
.price-card.featured h3 { color: var(--cream-light); }
.price-card.featured .price-feats li { border-color: rgba(245, 239, 222, 0.15); }
.price-card.featured .price-feats li::before { color: var(--leaf-soft); }
.price-card.featured .price { color: var(--cream-light); }
.price-card.featured .currency, .price-card.featured .unit { color: var(--leaf-soft); }
.price-card .ribbon {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: var(--leaf-soft);
  color: var(--ink);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-weight: 500;
}
.price-name {
  font-family: var(--serif);
  font-style: italic;
  color: var(--leaf-deep);
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}
.price-card h3 {
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
}
.price {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  color: var(--leaf-deep);
}
.price .currency { font-size: 1.3rem; vertical-align: top; margin-right: 0.2rem; }
.price .unit {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: 0.4rem;
}
.price-feats {
  list-style: none;
  margin: 2rem 0;
  flex: 1;
}
.price-feats li {
  font-size: 0.92rem;
  padding: 0.7rem 0;
  border-top: 1px solid var(--line);
  position: relative;
  padding-left: 1.5rem;
}
.price-feats li:last-child { border-bottom: 1px solid var(--line); }
.price-feats li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--leaf-deep);
}

/* ================= About — values ================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.value h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.value .marker {
  font-family: var(--serif);
  font-style: italic;
  color: var(--leaf);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  display: inline-block;
}
.value p { color: var(--ink-soft); font-size: 0.95rem; }

/* ================= Contact ================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.contact-info h3 {
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
}
.contact-block {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}
.contact-block:last-child { border-bottom: 1px solid var(--line); }
.contact-block h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--leaf-deep);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.contact-block p { color: var(--ink); }
.contact-block a:hover { color: var(--leaf-deep); }

.contact-form {
  background: var(--cream-light);
  padding: 3rem;
  border-radius: 4px;
}
@media (max-width: 600px) { .contact-form { padding: 2rem 1.5rem; } }
.contact-form h3 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}
.contact-form > p { color: var(--ink-soft); margin-bottom: 2rem; font-size: 0.95rem; }
.field { margin-bottom: 1.5rem; }
.field label {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 0.7rem 0;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--leaf-deep);
}
.field textarea { resize: vertical; min-height: 100px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

/* ================= Map ================= */
.map-wrap {
  margin-top: 3rem;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-wrap iframe { display: block; width: 100%; height: 480px; border: 0; filter: saturate(0.85) contrast(0.95); }

/* ================= FAQ ================= */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid var(--line);
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  padding: 1.5rem 2rem 1.5rem 0;
  cursor: pointer;
  color: var(--ink);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.faq-q .icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  position: relative;
}
.faq-q .icon::before, .faq-q .icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: 100%;
  height: 1px;
  background: var(--leaf-deep);
  transition: transform 0.3s;
}
.faq-q .icon::after { transform: rotate(90deg); }
.faq-item.open .faq-q .icon::after { transform: rotate(0deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 0 1.5rem;
  color: var(--ink-soft);
  max-width: 720px;
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ================= Process timeline ================= */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}
@media (max-width: 800px) { .process { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .process { grid-template-columns: 1fr; } }
.process-step .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 3rem;
  color: var(--leaf-soft);
  line-height: 1;
}
.process-step h4 {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin: 1rem 0 0.5rem;
  font-weight: 400;
}
.process-step p { color: var(--ink-soft); font-size: 0.92rem; }

/* ================= Reveal animations ================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ================= Utility ================= */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* ================= Scrollbar ================= */
::selection { background: var(--leaf-soft); color: var(--ink); }

/* ================= Pricing add-ons block ================= */
.addons-block {
  margin-top: 5rem;
  background: var(--cream-light);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 800px) {
  .addons-block { grid-template-columns: 1fr; gap: 2rem; }
}

/* ================= Location page features ================= */
.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 3rem;
}
.amenity {
  background: var(--bone);
  padding: 2rem 1.5rem;
}
.amenity .icon-box {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  color: var(--leaf-deep);
}
.amenity h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
}
.amenity p { font-size: 0.88rem; color: var(--ink-soft); }

.fact-list {
  list-style: none;
  margin-top: 1.5rem;
}
.fact-list li {
  display: flex;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.fact-list li:last-child { border-bottom: 1px solid var(--line); }
.fact-list li::before {
  content: '✦';
  color: var(--leaf);
  flex-shrink: 0;
}




/* NEW */

a.btn {
    display: none;
}
.header-icon-mob {
    display: none;
}

.nav {
    gap: 10px;
}

@media (max-width: 900px) {
    .js-studio-booking-trigger span {
        display: none;
    }
    .header-icon-mob,
    .js-studio-booking-trigger {
        display: block;
    }
    .nav-brand img {
        max-width: 190px;
    }
    .js-studio-booking-trigger {
        min-width: 40px;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px;
    }
    .js-studio-booking-trigger svg {
        width: 20px;
        height: 20px;
    }
}

/* Prevent body scroll */
body.studio-modal-active {
    overflow: hidden;
}

/* Overlay */
.studio-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(42, 46, 34, 0.55);
    backdrop-filter: blur(4px);
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

/* Active State */
.studio-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Box */
.studio-modal-box {
    position: relative;
    width: 100%;
    max-width: 560px;

    background: var(--bone);
    border-radius: 24px;

    padding: clamp(24px, 4vw, 42px);

    box-shadow: 0 30px 80px rgba(0,0,0,0.18);

    transform: translateY(30px);
    transition: transform 0.35s ease;
}

.studio-modal-overlay.active .studio-modal-box {
    transform: translateY(0);
}

/* Close Button */
.studio-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: var(--cream-light);
    color: var(--ink);

    font-size: 28px;
    cursor: pointer;

    transition: all 0.25s ease;
}

.studio-modal-close:hover {
    background: var(--leaf-deep);
    color: var(--bloom);
}

/* Header */
.studio-modal-header {
    margin-bottom: 18px;
}

.studio-modal-header h2 {
    margin: 0 0 10px;

    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1;
    color: var(--ink);
}

.studio-modal-header p {
    margin: 0;

    font-family: var(--sans);
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
}

/* Form */
.studio-modal-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.studio-form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.studio-form-group label {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
    display: block;
}

.studio-form-group input,
.studio-form-group textarea {
    width: 100%;

    border: 1px solid var(--line);
    background: var(--bloom);

    padding: 14px 16px;
    border-radius: 14px;

    font-family: var(--sans);
    font-size: 15px;
    color: var(--ink);

    outline: none;
    transition: all 0.25s ease;
    
    resize: none;
}

.studio-form-group textarea {
    min-height: 100px;
}

.studio-form-group input:focus,
.studio-form-group textarea:focus {
    border-color: var(--leaf-deep);
    box-shadow: 0 0 0 4px rgba(138, 192, 62, 0.12);
}

/* Submit Button */
.studio-submit-btn {
    margin-top: 8px;

    border: none;
    border-radius: 999px;

    background: var(--leaf-deep);
    color: var(--bloom);

    padding: 15px 24px;

    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;

    cursor: pointer;
    transition: all 0.3s ease;
}

.studio-submit-btn:hover {
    background: var(--leaf-deep);
}

/* Responsive */
@media (max-width: 640px) {

    .studio-modal-box {
        border-radius: 20px;
        padding: 24px 20px;
    }

    .studio-modal-header h2 {
        font-size: 1.6rem;
    }

    .studio-form-group input,
    .studio-form-group textarea {
        padding: 13px 14px;
    }

    .studio-submit-btn {
        width: 100%;
    }
}

.js-studio-booking-trigger {
    display: none !important;
}

nav.nav {
    justify-content: center;
}
