/* ── AINO MÄKINEN PHOTOGRAPHY ── Linen & Espresso theme ── */

:root {
  --bg:       #F7F4EF;
  --bg2:      #EDE8E0;
  --bg3:      #E4DDD3;
  --fg:       #2C2825;
  --fg2:      #4A443E;
  --muted:    #8A7E74;
  --accent:   #A0855E;
  --accent2:  #C4A882;
  --white:    #FDFCFA;
  --dark:     #1E1B18;
  --serif:    'Cormorant Garamond', 'Georgia', serif;
  --sans:     'Plus Jakarta Sans', 'Inter', sans-serif;
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --transition: 0.35s var(--ease);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ── DEMO BANNER ── */
.demo-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--fg); color: var(--bg);
  display: flex; align-items: center; justify-content: center; gap: 20px;
  padding: 10px 24px; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-bottom: 1px solid rgba(160,133,94,0.3);
}
.demo-banner .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent2); flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.demo-banner a {
  color: var(--accent2); opacity: 0.85;
  transition: opacity 0.2s;
  display: flex; align-items: center; gap: 6px;
}
.demo-banner a:hover { opacity: 1; }
.demo-banner .sep { opacity: 0.3; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 40px; left: 0; right: 0; z-index: 900;
  transition: all 0.5s var(--ease);
  padding: 0 clamp(24px, 5vw, 80px);
}
.navbar.scrolled {
  background: rgba(247, 244, 239, 0.94);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 1px 0 rgba(160,133,94,0.12);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  letter-spacing: 0.02em; line-height: 1;
  color: var(--fg); transition: color var(--transition);
}
.logo-sub {
  font-family: var(--sans); font-size: 9px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-top: 3px;
}
.navbar.transparent .logo { color: var(--white); }
.navbar.transparent .logo-sub { color: rgba(253,252,250,0.65); }
.nav-links {
  display: flex; align-items: center; gap: 36px; list-style: none;
}
.nav-links a {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500; color: var(--fg2); opacity: 0.75;
  transition: opacity var(--transition), color var(--transition);
}
.navbar.transparent .nav-links a { color: rgba(253,252,250,0.7); opacity: 1; }
.nav-links a:hover { opacity: 1; color: var(--fg); }
.navbar.transparent .nav-links a:hover { color: var(--white); opacity: 1; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-switcher { display: flex; gap: 2px; }
.lang-btn {
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; padding: 5px 8px; border-radius: 3px;
  color: var(--muted); transition: all 0.2s;
  background: transparent;
}
.lang-btn.active, .lang-btn:hover {
  color: var(--accent); background: rgba(160,133,94,0.1);
}
.navbar.transparent .lang-btn { color: rgba(253,252,250,0.45); }
.navbar.transparent .lang-btn.active,
.navbar.transparent .lang-btn:hover { color: var(--white); background: rgba(253,252,250,0.12); }
.btn-book {
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600; padding: 11px 22px;
  background: var(--accent); color: var(--white);
  border-radius: 2px; transition: all 0.2s;
}
.btn-book:hover { background: var(--fg); }
.navbar.transparent .btn-book { background: rgba(160,133,94,0.9); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span {
  display: block; width: 22px; height: 1px;
  background: var(--fg); transition: all 0.3s;
}
.navbar.transparent .hamburger span { background: var(--white); }

/* ── HERO ── */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: flex-end; overflow: hidden;
  background: var(--dark); padding-top: 40px;
}
.hero-bg-fixed {
  position: absolute; inset: 0;
}
.hero-bg-fixed img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center center;
  /* Fixed on scroll via JS class, fallback to contain */
}
.hero.is-fixed .hero-bg-fixed {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    rgba(20, 17, 14, 0.94) 0%,
    rgba(20, 17, 14, 0.60) 40%,
    rgba(20, 17, 14, 0.25) 70%,
    rgba(20, 17, 14, 0.10) 100%
  );
}
.hero-overlay-left {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to right,
    rgba(20, 17, 14, 0.70) 0%,
    rgba(20, 17, 14, 0.35) 45%,
    transparent 65%
  );
}
.hero-content {
  position: relative; z-index: 10;
  padding-left: clamp(56px, 9vw, 160px);
  padding-right: clamp(40px, 6vw, 100px);
  padding-bottom: clamp(80px, 10vw, 140px);
  padding-top: clamp(40px, 6vw, 80px);
  max-width: 900px; width: 100%;
}
.hero-eyebrow {
  font-size: 10px; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--accent2); font-weight: 500;
  display: flex; align-items: center; gap: 16px;
  margin-bottom: clamp(20px, 3vw, 40px);
  animation: fade-up 1s var(--ease-out) 0.2s both;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px;
  background: var(--accent2); opacity: 0.6;
}
.hero-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.95; letter-spacing: -0.01em;
  color: var(--white); margin-bottom: clamp(16px, 2vw, 28px);
  animation: fade-up 1s var(--ease-out) 0.35s both;
}
.hero-title em {
  font-style: italic; color: var(--accent2);
}
.hero-subtitle {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(15px, 1.8vw, 19px); letter-spacing: 0.06em;
  color: rgba(253,252,250,0.55);
  margin-bottom: clamp(28px, 4vw, 52px);
  animation: fade-up 1s var(--ease-out) 0.5s both;
}
.hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fade-up 1s var(--ease-out) 0.65s both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 600; padding: 16px 32px;
  background: var(--accent); color: var(--white);
  border-radius: 2px; transition: all 0.25s;
}
.btn-primary:hover { background: var(--white); color: var(--fg); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 500; padding: 15px 28px;
  border: 1px solid rgba(253,252,250,0.3); color: rgba(253,252,250,0.75);
  border-radius: 2px; transition: all 0.25s;
}
.btn-outline:hover { border-color: rgba(253,252,250,0.7); color: var(--white); }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fade-in 1s ease 1.2s forwards;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--accent2), transparent);
  animation: scroll-line 2.5s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.scroll-label {
  font-size: 8px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(196,168,130,0.5);
}

/* ── SECTION LABELS & HEADERS ── */
.section-eyebrow {
  font-size: 9px; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}
.section-eyebrow::after {
  content: ''; flex: 1; max-width: 48px; height: 1px;
  background: rgba(160,133,94,0.35);
}
.section-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05; color: var(--fg);
}
.section-title em { font-style: italic; color: var(--accent); }
.section-muted { color: var(--muted); font-size: 15px; line-height: 1.7; font-weight: 300; }

/* ── PORTFOLIO ── */
.portfolio { padding: clamp(60px,8vw,120px) clamp(24px,5vw,80px); background: var(--bg); }
.portfolio-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
.portfolio-filters { display: flex; gap: 4px; flex-wrap: wrap; }
.filter-btn {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; padding: 8px 16px; border-radius: 2px;
  color: var(--muted); transition: all 0.2s; background: transparent;
  border: 1px solid transparent;
}
.filter-btn:hover { color: var(--fg); border-color: var(--bg3); }
.filter-btn.active { color: var(--accent); border-color: rgba(160,133,94,0.4); background: rgba(160,133,94,0.06); }

/* Masonry grid */
.masonry {
  columns: 3; column-gap: 12px;
}
.masonry-item {
  break-inside: avoid; margin-bottom: 12px;
  overflow: hidden; cursor: zoom-in;
  position: relative; background: var(--bg2);
}
.masonry-item img {
  width: 100%; height: auto; display: block;
  transition: transform 0.6s var(--ease);
}
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item .item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,40,37,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end;
  padding: 16px;
}
.masonry-item:hover .item-overlay { opacity: 1; }
.item-cat {
  font-size: 8px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent2); font-weight: 600;
}
.masonry-item.hidden { display: none; }
.portfolio-footer { margin-top: 40px; text-align: center; }

/* ── ABOUT ── */
.about { padding: clamp(60px,8vw,120px) clamp(24px,5vw,80px); background: var(--bg2); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,96px); align-items: center; }
.about-images { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-img-wrap { overflow: hidden; background: var(--bg3); }
.about-img-wrap.tall { aspect-ratio: 3/4; margin-top: 40px; }
.about-img-wrap.short { aspect-ratio: 3/4; margin-bottom: 40px; }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.about-img-wrap:hover img { transform: scale(1.04); }
.about-text { display: flex; flex-direction: column; gap: 0; }
.about-bio { font-size: 15px; line-height: 1.8; color: var(--fg2); font-weight: 300; margin-bottom: 16px; }
.about-stats { display: flex; gap: 40px; padding-top: 36px; border-top: 1px solid rgba(160,133,94,0.2); margin-top: 32px; }
.stat-num { font-family: var(--serif); font-size: 48px; font-weight: 300; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

/* ── SERVICES ── */
.services { padding: clamp(60px,8vw,120px) clamp(24px,5vw,80px); background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--bg3); margin-top: 56px; }
.service-card {
  background: var(--bg); padding: clamp(24px,3vw,40px);
  transition: background 0.3s; cursor: default;
}
.service-card:hover { background: var(--bg2); }
.service-num {
  font-family: var(--serif); font-weight: 300;
  font-size: 52px; color: rgba(160,133,94,0.18);
  line-height: 1; margin-bottom: 18px;
}
.service-icon {
  font-size: 22px; color: var(--accent);
  margin-bottom: 12px; display: block;
}
.service-name {
  font-family: var(--serif); font-size: 22px; font-weight: 300;
  font-style: italic; color: var(--fg); margin-bottom: 10px; line-height: 1.2;
}
.service-desc {
  font-size: 13px; line-height: 1.75; color: var(--muted); font-weight: 300;
  margin-bottom: 20px;
}
.service-price {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
}

/* ── PROCESS ── */
.process { padding: clamp(60px,8vw,120px) clamp(24px,5vw,80px); background: var(--fg); position: relative; overflow: hidden; }
.process-watermark {
  position: absolute; font-family: var(--serif); font-weight: 300;
  font-size: clamp(120px,18vw,220px); color: rgba(247,244,239,0.025);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  white-space: nowrap; letter-spacing: -0.04em; pointer-events: none; user-select: none;
}
.process .section-eyebrow { color: var(--accent2); }
.process .section-eyebrow::after { background: rgba(196,168,130,0.25); }
.process .section-title { color: var(--white); margin-bottom: 64px; }
.process .section-title em { color: var(--accent2); }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; z-index: 1; }
.process-step { padding: 0 clamp(16px,2.5vw,36px); }
.process-step:not(:first-child) { border-left: 1px solid rgba(196,168,130,0.15); }
.step-num {
  font-family: var(--serif); font-weight: 300;
  font-size: 64px; color: rgba(196,168,130,0.18); line-height: 1; margin-bottom: 20px;
}
.step-title { font-family: var(--serif); font-size: 22px; font-style: italic; font-weight: 300; color: var(--white); margin-bottom: 12px; }
.step-desc { font-size: 13px; line-height: 1.75; color: rgba(247,244,239,0.45); font-weight: 300; }

/* ── REVIEWS ── */
.reviews { padding: clamp(60px,8vw,120px) clamp(24px,5vw,80px); background: var(--bg2); }
.reviews-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; background: var(--bg3); margin-top: 56px; }
.review-card {
  background: var(--bg2); padding: clamp(28px,3.5vw,48px);
  transition: background 0.3s; cursor: default;
}
.review-card:hover { background: var(--bg); }
.review-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.star {
  width: 12px; height: 12px; background: var(--accent);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.review-text {
  font-family: var(--serif); font-size: 18px; font-weight: 300;
  font-style: italic; line-height: 1.65; color: var(--fg2); flex: 1;
  margin-bottom: 28px;
}
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; flex-shrink: 0;
  font-family: var(--sans);
}
.review-name { font-size: 14px; font-weight: 600; color: var(--fg); margin-bottom: 2px; }
.review-type { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

/* ── INSTAGRAM STRIP ── */
.insta-strip { padding: 0; overflow: hidden; background: var(--bg); }
.insta-header { display: flex; align-items: center; justify-content: space-between; padding: 48px clamp(24px,5vw,80px) 24px; }
.insta-handle { font-size: 13px; letter-spacing: 0.1em; color: var(--accent); font-weight: 600; }
.insta-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 3px; }
.insta-item { aspect-ratio: 1; overflow: hidden; cursor: pointer; background: var(--bg2); }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); filter: saturate(0.9); }
.insta-item:hover img { transform: scale(1.08); filter: saturate(1.1); }

/* ── CONTACT ── */
.contact { padding: clamp(60px,8vw,120px) clamp(24px,5vw,80px); background: var(--fg); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(40px,6vw,100px); }
.contact .section-eyebrow { color: var(--accent2); }
.contact .section-eyebrow::after { background: rgba(196,168,130,0.25); }
.contact .section-title { color: var(--white); margin-bottom: 20px; }
.contact .section-title em { color: var(--accent2); }
.contact-desc { font-size: 15px; line-height: 1.75; color: rgba(247,244,239,0.5); font-weight: 300; margin-bottom: 40px; }
.contact-channels { display: flex; flex-direction: column; gap: 10px; }
.channel-link {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px;
  border: 1px solid rgba(196,168,130,0.15);
  transition: all 0.25s; border-radius: 2px;
}
.channel-link:hover { border-color: rgba(196,168,130,0.5); background: rgba(196,168,130,0.05); }
.channel-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(196,168,130,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--accent2); flex-shrink: 0;
}
.channel-label { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(247,244,239,0.3); margin-bottom: 2px; }
.channel-value { font-size: 13px; color: rgba(247,244,239,0.75); font-weight: 300; }
.channel-arrow { margin-left: auto; color: var(--accent2); opacity: 0.5; font-size: 14px; }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label {
  font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(247,244,239,0.35); font-weight: 600;
}
.form-input, .form-select, .form-textarea {
  background: rgba(247,244,239,0.06);
  border: 1px solid rgba(196,168,130,0.25);
  color: rgba(247,244,239,0.85);
  padding: 14px 16px; font-size: 14px;
  font-family: var(--sans); font-weight: 300;
  border-radius: 2px; transition: border-color 0.2s; width: 100%;
  outline: none; -webkit-appearance: none; appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(247,244,239,0.22); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: rgba(196,168,130,0.6); background: rgba(247,244,239,0.09); }
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(196,168,130,0.6)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  color-scheme: dark;
}
.form-select option {
  background: #2C2825;
  color: rgba(247,244,239,0.85);
  padding: 8px;
}
.form-textarea { resize: none; height: 110px; }
.btn-submit {
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 600; padding: 16px 36px;
  background: var(--accent); color: var(--white);
  border-radius: 2px; transition: all 0.25s; margin-top: 8px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-submit:hover { background: var(--accent2); }
.form-success { font-size: 13px; color: var(--accent2); padding: 12px 0; text-align: center; }
.form-error { font-size: 13px; color: #E07070; padding: 8px 0; }

/* ── FOOTER ── */
.footer {
  background: var(--dark); padding: clamp(32px,4vw,56px) clamp(24px,5vw,80px);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
  border-top: 1px solid rgba(160,133,94,0.1);
}
.footer-logo { font-family: var(--serif); font-size: 22px; font-weight: 300; font-style: italic; color: rgba(247,244,239,0.5); }
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(247,244,239,0.3); font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent2); }
.footer-copy { font-size: 11px; color: rgba(247,244,239,0.2); }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(20,17,14,0.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.35s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 1px; }
.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  font-size: 28px; color: rgba(247,244,239,0.5);
  cursor: pointer; transition: color 0.2s; line-height: 1; background: none; border: none;
}
.lightbox-close:hover { color: var(--white); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 32px; color: rgba(247,244,239,0.35);
  cursor: pointer; transition: color 0.2s;
  padding: 20px; background: none; border: none;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--white); }
.lightbox-counter { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); font-size: 11px; letter-spacing: 0.2em; color: rgba(247,244,239,0.35); }

/* ── ANIMATIONS ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── BTN GENERIC ── */
.btn-text {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600; color: var(--accent); padding: 12px 0;
  border-bottom: 1px solid rgba(160,133,94,0.3);
  transition: gap 0.2s, border-color 0.2s;
}
.btn-text:hover { gap: 14px; border-color: var(--accent); }

/* ── MOBILE ── */
.mobile-menu {
  position: fixed; top: 40px; left: 0; right: 0; bottom: 0;
  background: var(--bg); z-index: 850;
  transform: translateX(100%); transition: transform 0.4s var(--ease);
  display: flex; flex-direction: column; align-items: center;
  padding: 72px 24px 40px;
  gap: 0; overflow-y: auto; text-align: center;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--serif); font-size: clamp(26px,7vw,40px);
  font-weight: 300; color: var(--fg);
  padding: 14px 0; width: 100%; text-align: center;
  border-bottom: 1px solid rgba(160,133,94,0.1);
  transition: color 0.25s; display: block;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-lang {
  display: flex; gap: 8px; margin-top: 28px; justify-content: center;
}
.mobile-book {
  margin-top: 24px; width: 100%;
  display: flex !important; align-items: center; justify-content: center;
  text-align: center; padding: 16px 24px !important;
  font-size: 11px; letter-spacing: 0.26em;
}

@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 900px) {
  .nav-links, .nav-right .btn-book { display: none; }
  .hamburger { display: flex; }
  .about-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(3) { border-left: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(4,1fr); }
  .masonry { columns: 2; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step:not(:first-child) { border-left: none; border-top: 1px solid rgba(196,168,130,0.15); padding-top: 28px; }
  .masonry { columns: 1; }
  .insta-grid { grid-template-columns: repeat(3,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer { flex-direction: column; align-items: flex-start; gap: 16px; }
}
