/* ============================================================
   Höyhen Juhlasuunnittelu — styles.css
   Jaettu tyylitiedosto kaikille sivuille
   ============================================================ */
 
/* --- Muuttujat & perusasetukset ---------------------------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
:root {
  --beige-0: #fdf8f0;
  --beige-1: #f5ede0;
  --beige-2: #e8d9c4;
  --beige-3: #d4bc9a;
  --gold: #b8923a;
  --gold-light: #d4aa5a;
  --brown: #5a3e28;
  --brown-light: #7a5c3e;
  --text: #3a2e24;
  --text-soft: #7a6a58;
  --white: #fff;
  --black: #000000;
  --rose-gold: #B76E79;
  --rose: #F33A6A;
}
 
html { scroll-behavior: smooth; }
 
body {
  background: var(--beige-0);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}
 
section { padding: 6rem 2rem; }
 
.container {
  max-width: 1100px;
  margin: 0 auto;
}
 
/* --- Navigaatio -------------------------------------------- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253, 248, 240, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--beige-2);
  padding: 0 3rem;
}
 
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
 
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--brown);
  letter-spacing: 0.04em;
  text-decoration: none;
}
 
.logo span { color: var(--gold); font-style: italic; }
 
.logo-img {
  height: 180px;
  width: auto;
  display: block;
  object-fit: contain;
}
 
.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
}
 
.nav-links a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
  display: block;
}
 
.nav-links a:hover { color: var(--gold); }
 
.nav-links a.active {
  color: var(--brown);
  background: var(--beige-1);
  font-weight: 500;
}
 
/* Aktiivisen linkin kultainen allaviiva */
.nav-links li { position: relative; }
 
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 1.2rem;
  right: 1.2rem;
  height: 2px;
  background: var(--gold);
}
 
/* --- Painikkeet -------------------------------------------- */
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 0.85rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-block;
}
 
.btn-primary:hover { background: var(--brown); transform: translateY(-1px); }
 
.btn-outline {
  background: transparent;
  color: var(--brown);
  border: 1px solid var(--beige-3);
  padding: 0.85rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
 
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
 
/* --- Sivujen yläotsikko (hero-banneri alatason sivuille) ---- */
.page-hero {
  padding: 10rem 2rem 5rem;
  background: linear-gradient(160deg, var(--beige-0) 0%, var(--beige-1) 60%, var(--beige-2) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
 
.page-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184,146,58,0.07) 0%, transparent 70%);
  pointer-events: none;
}
 
.page-hero .eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
 
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  color: var(--brown);
  line-height: 1.1;
  margin-bottom: 1rem;
}
 
.page-hero h1 em { font-style: italic; color: var(--gold); }
 
.page-hero p {
  color: var(--text-soft);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}
 
/* --- Osioiden otsikot -------------------------------------- */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
 
.section-header .eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
 
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--brown);
}
 
.section-header p {
  color: var(--text-soft);
  margin-top: 0.8rem;
  font-size: 0.95rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
 
/* --- Hero (etusivu) ---------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}
 
/* Taustakuva */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(1px) brightness(0.70) saturate(0.75);
  z-index: 0;
}
 
/* Tumma peite tekstien alle */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(15,8,2,0.55) 0%,
    rgba(15,8,2,0.38) 50%,
    rgba(15,8,2,0.6) 100%);
  z-index: 1;
}
 
.hero-content { text-align: center; position: relative; z-index: 2; }
 
.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #f0e6d3;
  border: 1px solid rgba(212,170,90,0.6);
  padding: 0.35rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  opacity: 0;
  animation: fadeUp 0.8s 0.2s ease forwards;
}
 
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1.1;
  color: #fdf6ee;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s ease forwards;
}
 
.hero h1 em {
  font-style: italic;
  color: #e0b84a;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
 
.hero-sub {
  font-size: 1.05rem;
  color: rgba(245,232,210,0.95);
  text-shadow: 0 1px 10px rgba(0,0,0,0.55);
  max-width: 520px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s ease forwards;
}
 
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s ease forwards;
}
 
.hero-btns .btn-outline {
  color: #fdf6ee;
  border-color: rgba(240,230,211,0.7);
}
 
.hero-btns .btn-outline:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}
 
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(240,228,210,0.9);
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s 1.2s ease forwards;
}
 
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse 2s infinite;
}
 
/* --- Tarina (etusivu) -------------------------------------- */
.story { background: var(--white); }
 
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
 
.story-visual { position: relative; }
 
.story-img-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--beige-1);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
 
.story-img-frame::before {
  content: none;
}

.story-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
 
.floaty {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--white);
  border: 1px solid var(--beige-2);
  padding: 1.2rem 1.5rem;
  box-shadow: 0 8px 32px rgba(90,62,40,0.08);
}
 
.floaty-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  display: block;
}
 
.floaty-txt {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}
 
.story-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
 
.story-text p {
  color: var(--text-soft);
  line-height: 1.9;
  margin-bottom: 1.2rem;
  font-size: 0.97rem;
}
 
.divider { width: 48px; height: 2px; background: var(--gold); margin: 2rem 0; }
 
.sig {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--brown);
  font-style: italic;
}
 
/* --- Palvelukortit (etusivu) ------------------------------- */
.services { background: var(--beige-1); }
 
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
 
.service-card {
  background: var(--white);
  border: 1px solid var(--beige-2);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
 
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(90,62,40,0.08);
}
 
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--beige-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
 
.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
 
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: 0.8rem;
  font-weight: 400;
}
 
.service-card p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.8;
}
 
/* --- Galleria / Slideshow ---------------------------------- */
.gallery-section { background: var(--beige-1); }
 
.slideshow {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 16/11;
  background: var(--beige-1);
  user-select: none;
}
 
.slides-track {
  display: flex;
  height: 100%;
  width: 100%;                
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}
 
.slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
 
.slide-art {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.slide-art svg { width: 55%; height: 55%; opacity: 0.65; }
 
.slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 2.5rem;
  background: linear-gradient(transparent, rgba(58,46,36,0.62));
}
 
.slide-caption-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.4rem;
}
 
.slide-caption-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.7rem);
  color: #fff;
  font-weight: 400;
}
 
.slide-counter {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85);
  background: rgba(58,46,36,0.35);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
}
 
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(253,248,240,0.88);
  border: 1px solid rgba(212,188,154,0.5);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
}
 
.slide-btn:hover { background: #fdf8f0; border-color: var(--gold); }
 
.slide-btn svg {
  width: 18px; height: 18px;
  stroke: var(--brown);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
 
.slide-btn-prev { left: 1.5rem; }
.slide-btn-next { right: 1.5rem; }
 
.slide-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}
 
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--beige-3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}
 
.dot.active { width: 24px; border-radius: 3px; background: var(--gold); }
 
.slide-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
 
/* Oikeat kuvat ruudukossa */
.gallery-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
 
.gallery-thumb:hover .gallery-thumb-img { transform: scale(1.05); }
 
/* Galleria-ruudukko (galleria-sivu) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
 
.gallery-thumb {
  aspect-ratio: 1;
  background: var(--beige-1);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
 
.gallery-thumb:hover .gallery-thumb-overlay { opacity: 1; }
 
.gallery-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(90,62,40,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
 
.gallery-thumb-overlay span {
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 0.5rem 1.2rem;
}
 
/* --- Hinnasto ---------------------------------------------- */
.pricing-section { background: var(--beige-1); }
 
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}
 
.price-card {
  background: var(--white);
  border: 1px solid var(--beige-2);
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
 
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(90,62,40,0.1);
}
 
.price-card.featured { border-color: var(--gold); background: var(--white); }
.price-card.featured .price-name    { color: var(--brown); }
.price-card.featured .price-amount  { color: var(--brown); }
.price-card.featured .price-desc    { color: var(--brown); }
.price-card.featured .price-item    { color: var(--brown); border-color: rgba(255,255,255,0.1); }
.price-card.featured .btn-price     { background: var(--gold); color: var(--brown); }
.price-card.featured .check         { color: var(--brown); }
.price-card.featured .price-divider { background: rgba(255,255,255,0.15); }
 
.featured-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 1.2rem;
}
 
.price-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--brown);
  margin-bottom: 0.5rem;
}
 
.price-amount {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--brown);
  line-height: 1;
}
 
.price-amount sup {
  font-size: 1rem;
  vertical-align: top;
  margin-top: 0.4rem;
  display: inline-block;
}
 
.price-period {
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-top: 0.3rem;
  letter-spacing: 0.05em;
}
 
.price-desc {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin: 1.2rem 0;
  line-height: 1.7;
}
 
.price-divider { height: 1px; background: var(--beige-2); margin: 1.5rem 0; }
 
.price-items { list-style: none; margin-bottom: 2rem; }
 
.price-item {
  font-size: 0.85rem;
  color: var(--text-soft);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--beige-1);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
 
.check { color: var(--gold); font-size: 0.9rem; }
 
.btn-price {
  width: 100%;
  padding: 0.85rem;
  background: transparent;
  border: 1px solid var(--beige-3);
  color: var(--brown);
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
 
.btn-price:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
 
.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.82rem;
  color: var(--text-soft);
}
 
/* --- Yhteydenotto ------------------------------------------ */
.contact-section { background: var(--white); }
 
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
 
.contact-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 1.2rem;
}
 
.contact-info p {
  color: var(--text-soft);
  line-height: 1.9;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
 
.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  align-items: flex-start;
}
 
.contact-icon {
  width: 44px; height: 44px;
  background: var(--beige-1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
 
.contact-icon svg {
  width: 18px; height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
 
.contact-detail-text p:first-child {
  font-size: 0.72rem;
  color: var(--text-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
 
.contact-detail-text p:last-child {
  font-size: 0.95rem;
  color: var(--text);
}

.contact-social {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--beige-2);
}

.contact-social-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 1rem;
}

.social-icons { display: flex; gap: 0.8rem; }

.social-icon {
  width: 40px; height: 40px;
  background: var(--beige-1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s;
}

.social-icon:hover { background: var(--beige-2); }

/* --- Lomake ------------------------------------------------ */
.contact-form {
  background: var(--beige-0);
  border: 1px solid var(--beige-2);
  padding: 2.5rem;
}
 
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
 
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.2rem;
}
 
.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}
 
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--white);
  border: 1px solid var(--beige-2);
  padding: 0.85rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  border-radius: 0;
  width: 100%;
  box-sizing: border-box;
}
 
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,146,58,0.08);
}
 
.form-group textarea { resize: vertical; min-height: 140px; }
 
.form-group select {
  appearance: none;
  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='%23b8923a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.btn-form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.5rem;
}

.btn-form-submit:hover {
  background: var(--brown);
  transform: translateY(-1px);
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-soft);
  text-align: center;
  margin-top: 0.8rem;
}
 
/* --- Footer ------------------------------------------------ */
footer {
  background: var(--beige-1);
  color: var(--beige-1);
  padding: 2rem 2rem;
  text-align: center;
}
 
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--beige-0);
  margin-bottom: 0.3rem;
  text-decoration: none;
  display: inline-block;
}
 
.footer-logo span { color: var(--gold-light); font-style: italic; }
 
.footer-tagline {
  color: var(--beige-3);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}
 
.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 1rem 0;
  list-style: none;
}
 
.footer-links a {
  color: var(--beige-3);
  font-size: 0.78rem;
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
 
.footer-links a:hover { color: var(--gold-light); }
 
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
  margin-top: 1rem;
  font-size: 0.74rem;
  color: var(--beige-3);
}
 

.page-hero-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
 
.btn-price-link {
  display: block;
  text-align: center;
  text-decoration: none;
}
 
.price-unit {
  font-size: 1rem;
  font-weight: 300;
}
 
.badge-light {
  background: var(--beige-3);
  color: var(--brown);
}
 
/* --- Hinnasto-sivun osiot ---------------------------------- */
.section-white   { background: var(--white); padding: 5rem 2rem; }
.section-beige   { background: var(--beige-1); padding: 5rem 2rem; }
.section-white2   { background: var(--beige-0); padding: 5rem 2rem; text-align: center; }

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.info-box {
  background: var(--beige-1);
  border: 1px solid var(--beige-2);
  padding: 2.5rem 2rem;
}

.info-box-white {
  background: var(--white);
  border: 1px solid var(--beige-2);
  padding: 2.5rem 2rem;
}

.info-box-price-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--brown);
  margin-bottom: 0.3rem;
}

.info-box-price-amount {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--brown);
}

.info-box-price-amount small {
  font-size: 0.9rem;
  font-weight: 300;
}

.info-box-price-note {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-top: 0.3rem;
}

.info-box-divider {
  border-bottom: 1px solid var(--beige-2);
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
}

.info-box-desc {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.8;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.feature-list li {
  display: flex;
  gap: 0.8rem;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

.feature-list li span { color: var(--gold); flex-shrink: 0; }

.feature-list + .section-label { margin-top: 1.5rem; }

.cta-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 1rem;
}

.cta-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 1.5rem;
}

.cta-text {
  color: var(--brown);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  font-size: 0.95rem;
}

.italic-note {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.8;
  font-style: italic;
  margin-top: 1.2rem;
}

/* --- Responsiivisuus: hinnasto kaksipalsta ----------------- */
@media (max-width: 600px) {
  .two-col-grid { grid-template-columns: 1fr; }
  .section-white,
  .section-beige,
  .section-brown { padding: 4rem 1.2rem; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
 
/* ============================================================
   RESPONSIIVISUUS
   Breakpointit:
     - Desktop  : > 1024px  (oletustyyli)
     - Tabletti : 601–1024px
     - Mobiili  : ≤ 600px
   ============================================================ */
 
/* --- Hampurilaisvalikko (näkyy vain mobiilissa) ------------ */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
}
 
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
 
/* Animaatio auki-tilassa */
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
 
/* Mobiilivalikon liukuva tausta */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(58,46,36,0.35);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.3s;
}
 
.nav-mobile-overlay.visible { opacity: 1; }
 
/* --- Tabletti (601–1024px) --------------------------------- */
@media (max-width: 1024px) {
  nav { padding: 0 1.5rem; }
 
  .nav-links a { padding: 0.5rem 0.8rem; font-size: 0.75rem; }
 
  .hero h1      { font-size: clamp(2.8rem, 6vw, 4.5rem); }
  .hero-sub     { font-size: 0.95rem; }
 
  .story-grid   { gap: 3rem; }
  .floaty       { bottom: -1rem; right: -1rem; padding: 1rem 1.2rem; }
 
  .pricing-grid  { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .price-card.featured { grid-column: span 2; max-width: 480px; margin: 0 auto; width: 100%; }
 
  .services-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
 
  .gallery-grid  { grid-template-columns: 1fr 1fr; }
 
  .contact-grid  { gap: 3rem; }
 
  section { padding: 5rem 1.5rem; }
  .page-hero { padding: 9rem 1.5rem 4.5rem; }
}
 
/* --- Mobiili (≤ 600px) ------------------------------------- */
@media (max-width: 600px) {
 
/* Navigaatio */
nav { padding: 0 1rem; }
.nav-inner { height: 60px; }
 
.nav-toggle { display: flex; }
 
/* Piilotetaan desktop-linkit ja CTA */
.nav-links,
.nav-cta { display: none !important; }
 
/* Mobiilivalikko liu'uttuu sisään vasemmalta */
.nav-links.mobile-open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: min(280px, 85vw);
  height: 100dvh;
  background: var(--beige-0);
  border-right: 1px solid var(--beige-2);
  padding: 5rem 2rem 2rem;
  z-index: 99;
  gap: 0;
  box-shadow: 4px 0 24px rgba(58,46,36,0.12);
  animation: slideInLeft 0.3s ease;
}
 
.nav-links.mobile-open li { border-bottom: 1px solid var(--beige-2); }
 
.nav-links.mobile-open a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
    letter-spacing: 0.08em;
    color: var(--text);
}
 
.nav-links.mobile-open a.active {
    color: var(--gold);
    background: none;
}
 
.nav-links.mobile-open a.active::after { display: none; }
 
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(58,46,36,0.35);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.nav-mobile-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
 
/* Hero */
.hero { padding-top: 60px; }
.hero-content { padding: 0 1rem; }
.hero h1 { font-size: clamp(2.2rem, 11vw, 3.2rem); }
.hero-sub { font-size: 0.92rem; max-width: 100%; }
.hero-btns { flex-direction: column; align-items: center; gap: 0.75rem; }
.hero-btns .btn-primary,
.hero-btns .btn-outline { width: 100%; max-width: 280px; text-align: center; }
 
/* Sivun hero */
.page-hero { padding: 7rem 1.2rem 3.5rem; }
.page-hero h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
 
/* Osioiden padding */
section { padding: 4rem 1.2rem; }
 
/* Tarina */
.story-grid { grid-template-columns: 1fr; gap: 3rem; }
.story-img-frame { aspect-ratio: 4/3; }
.floaty { bottom: -1rem; right: 0; padding: 0.8rem 1rem; }
.floaty-num { font-size: 1.5rem; }
 
/* Palvelukortit */
.services-grid { grid-template-columns: 1fr; gap: 1rem; }
 
/* Galleria-ruudukko */
.gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
 
/* Slideshow */
  .slideshow { aspect-ratio: 4/3; }
  .slide-art svg { width: 70%; height: 70%; }
  .slide-caption { padding: 1.2rem 1.5rem; }
  .slide-btn { width: 36px; height: 36px; }
  .slide-btn-prev { left: 0.5rem; }
  .slide-btn-next { right: 0.5rem; }
  .slide-btn svg { width: 14px; height: 14px; }
  .slide-counter { top: 0.8rem; right: 0.8rem; font-size: 0.65rem; }
 
/* Hinnasto */
  .pricing-grid { grid-template-columns: 1fr; gap: 1rem; }
  .price-card.featured { grid-column: span 1; max-width: none; }
  .price-amount { font-size: 2rem; }
 
/* Yhteydenotto */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .map-placeholder { height: 200px; }
 
/* UKK hinnasto-sivulla */
  .faq-section { padding: 4rem 1.2rem; }
 
/* Footer */
  .footer-links { flex-wrap: wrap; gap: 1rem 1.5rem; justify-content: center; }
 
/* CTA-osio */
  .cta-section { padding: 4rem 1.2rem; }
}
 
/* --- Animaatio mobiilinavigaatiolle ------------------------ */
@keyframes slideInLeft {
  from { transform: translateX(-100%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}