/* =============================================
   Lemmikkihoitola Toinen Koti — Uusi tyyli
   Värit: #fed136 (kulta), #212529 (tumma), #fffdf5 (lämmin valkoinen)
   ============================================= */

:root {
  --gold: #fed136;
  --gold-dark: #e6bc1e;
  --dark: #212529;
  --dark-soft: #2e3338;
  --light-bg: #fffdf5;
  --light-grey: #f4f4f0;
  --text: #2d2d2d;
  --muted: #6c757d;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  font-size: 18px;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ---- Typografia ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.6rem;
}

p {
  line-height: 1.8;
  color: var(--muted);
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---- Navigaatio ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar-logo img {
  height: 44px;
}

.navbar-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.navbar-links a {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.4rem 0;
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.navbar-social a {
  color: var(--white);
  font-size: 1.1rem;
  transition: color var(--transition);
}

.navbar-social a:hover {
  color: var(--gold);
}

/* Hampurilaisvalikko */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-text {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 5rem 5rem 8%;
  z-index: 2;
}

.hero-badge {
  display: block;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-text h1 span {
  color: var(--gold);
}

.hero-text p {
  color: rgba(255,255,255,0.7);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 380px;
}

.hero-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.hero-contact a {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 600;
  transition: color var(--transition);
}

.hero-contact a:hover {
  color: var(--gold);
}

.hero-contact span {
  color: rgba(255,255,255,0.6);
  font-size: 1.15rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
}

.hero-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  color: var(--dark);
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% 30%;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--dark) 0%, transparent 30%);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  animation: bounce 2s infinite;
}

.hero-scroll i {
  font-size: 1.2rem;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---- Info-banneri ---- */
.info-banner {
  background: var(--gold);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  padding: 1.2rem 2rem;
  font-weight: 800;
  font-size: 0.95rem;
  text-align: center;
  border-radius: 50px;
  margin: 0 2rem;
}

.info-banner p {
  color: var(--dark);
  font-weight: 800;
  font-size: 0.95rem;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ---- Osio-otsikot ---- */
.section-label {
  display: inline-block;
  background: rgba(254, 209, 54, 0.15);
  color: var(--gold-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  border: 1px solid rgba(254, 209, 54, 0.3);
}

/* ---- Esittely-osio ---- */
.esittely {
  padding: 6rem 0;
  background: var(--light-bg);
}

.esittely .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.esittely-header {
  text-align: center;
  margin-bottom: 4rem;
}

.esittely-header h2 {
  color: var(--dark);
}

.esittely-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.2rem;
}

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

.esittely-card-wide {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
}

.esittely-card-wide .esittely-card-img {
  width: 340px;
  height: 100%;
  min-height: 300px;
  flex-shrink: 0;
  object-fit: cover;
  object-position: calc(100% + 5cm) center;
}

@media (max-width: 1024px) {
  .esittely-card-wide {
    flex-direction: column;
  }
  .esittely-card-wide .esittely-card-img {
    width: 100%;
    height: 220px;
    object-position: center center;
  }
}

.esittely-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.esittely-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}

.esittely-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.esittely-card-body {
  padding: 1.5rem;
}

.esittely-card-body h3 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.esittely-card-body dl {
  margin: 0;
}

.esittely-card-body dt {
  color: var(--dark);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 0.75rem;
}

.esittely-card-body dd {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-left: 0;
  margin-bottom: 0;
}

/* ---- Hinnasto-osio ---- */
.hinnasto {
  padding: 6rem 0;
  background: var(--dark);
}

.hinnasto .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hinnasto-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.hinnasto-header .section-label {
  background: rgba(254,209,54,0.15);
  color: var(--gold);
  border-color: rgba(254,209,54,0.3);
}

.hinnasto-header h2 {
  color: var(--white);
}

.hinnasto-header p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.hinnasto-header a {
  color: var(--gold);
  text-decoration: underline;
}

.hinnasto-header .hero-btn {
  color: var(--dark);
  text-decoration: none;
  margin-top: 2rem;
}

.sesonki-box {
  background: rgba(254,209,54,0.1);
  border: 1px solid rgba(254,209,54,0.25);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin: 2rem 0 3rem;
}

.sesonki-box h4 {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.sesonki-box h4 + ul + h4 {
  margin-top: 1.75rem;
}

.sesonki-box ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  padding: 0;
}

.sesonki-box ul li {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  padding-left: 1.2rem;
  position: relative;
}

.sesonki-box ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.hinnasto-tabs {
  display: flex;
  gap: 0.5rem;
  margin: 0 auto 2rem;
  background: rgba(255,255,255,0.05);
  border-radius: 50px;
  padding: 0.35rem;
  width: fit-content;
}

.tab-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.tab-btn.active {
  background: var(--gold);
  color: var(--dark);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.price-card {
  background: var(--dark-soft);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}

.price-card:hover {
  border-color: rgba(254,209,54,0.4);
  transform: translateY(-3px);
}

.price-card.featured {
  border-color: var(--gold);
  background: rgba(254,209,54,0.06);
}

.price-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  border-radius: 50px;
  white-space: nowrap;
}

.price-card-icon {
  width: 42px;
  height: 42px;
  background: rgba(254,209,54,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.price-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 0.3rem;
}

.price-amount .amount {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--gold);
}

.price-amount .unit {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
}

.price-extra {
  color: rgba(255,255,255,0.45);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.price-details {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

/* Lisäpalvelut taulukko */
.lisapalvelut-title {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

.lisapalvelut-table {
  width: 100%;
  border-collapse: collapse;
}

.lisapalvelut-table tr {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.lisapalvelut-table tr:last-child {
  border-bottom: none;
}

.lisapalvelut-table td {
  padding: 0.8rem 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  vertical-align: top;
}

.lisapalvelut-table td:first-child {
  color: var(--white);
  font-weight: 600;
  width: 55%;
}

.lisapalvelut-table td:last-child {
  color: var(--gold);
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  text-align: right;
  white-space: nowrap;
}

/* ---- Galleria ---- */
.galleria {
  padding: 6rem 0;
  background: var(--light-bg);
}

.galleria .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.galleria-header {
  text-align: center;
  margin-bottom: 3rem;
}

.galleria-header h2 {
  color: var(--dark);
}

.masonry {
  column-count: 3;
  column-gap: 1rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.masonry-item:hover img {
  transform: scale(1.03);
  filter: brightness(0.88);
}

@media (max-width: 1024px) {
  .masonry { column-count: 2; }
}

@media (max-width: 600px) {
  .masonry { column-count: 1; }
}

/* ---- Hintalaskuri ---- */
.laskuri {
  padding: 6rem 0;
  background: var(--light-grey);
}

.laskuri .container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

.laskuri-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.laskuri-header h2 {
  color: var(--dark);
}

.laskuri-header p {
  font-size: 1.05rem;
}

.laskuri-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
}

.laskuri-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.laskuri-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.laskuri-field label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: var(--dark);
  text-transform: uppercase;
}

.date-input-fi {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid #e0ddd5;
  border-radius: 10px;
  background: var(--light-bg);
  padding: 0 1rem;
  height: 3.2rem;
  box-sizing: border-box;
  cursor: pointer;
  transition: border-color var(--transition);
  position: relative;
}

.date-input-fi:hover,
.date-input-fi:focus-within {
  border-color: var(--gold);
}

.date-display {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: var(--muted);
}

.date-display.valittu {
  color: var(--dark);
  font-weight: 600;
}

.date-icon {
  color: var(--gold-dark);
  font-size: 1rem;
}

.date-input-fi input[type="date"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  border: none;
  background: transparent;
}

.laskuri-field > select,
.aika-single {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid #e0ddd5;
  border-radius: 10px;
  background: var(--light-bg);
  padding: 0 1rem;
  height: 3.2rem;
  box-sizing: border-box;
  cursor: pointer;
  transition: border-color var(--transition);
  position: relative;
}

.laskuri-field input[type="date"]:focus,
.laskuri-field > select:focus,
.aika-single:focus {
  outline: none;
  border-color: var(--gold);
}

.lask-counter {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
  height: 3.2rem;
  box-sizing: border-box;
  border: 2px solid #e0ddd5;
  border-radius: 10px;
  background: var(--light-bg);
  width: fit-content;
}

.lask-counter-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--gold);
  color: var(--dark);
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  line-height: 1;
}

.lask-counter-btn:hover {
  background: var(--gold-dark);
}

#lask-koirat {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  min-width: 24px;
  text-align: center;
}

.laskuri-tulos {
  border-top: 2px solid var(--light-grey);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lask-tulos-rivi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid #f0ede6;
}

.lask-rivi-label {
  color: var(--muted);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lask-rivi-label i {
  color: var(--gold-dark);
  width: 16px;
}

.lask-rivi-arvo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--dark);
  font-size: 1rem;
}

.lask-tulos-yhteensa {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--dark);
  color: var(--white);
  padding: 1rem 1.4rem;
  border-radius: 12px;
  margin-top: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

#lask-yhteensa {
  color: var(--gold);
  font-size: 1.4rem;
}

.lask-huomio {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
  font-style: italic;
}

.laskuri-virhe {
  color: #c0392b;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  background: #fdf0f0;
  border-radius: 8px;
  border: 1px solid #f5c6c6;
}

@media (max-width: 768px) {
  .laskuri-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Mitä mukaan -osio ---- */
.mukaan {
  padding: 5rem 0;
  background: var(--light-bg);
}

.mukaan .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.mukaan h2 {
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.mukaan-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.mukaan-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1.5px solid #e0ddd5;
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mukaan-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(254,209,54,0.3);
}

/* ---- Lisäpalvelut accordion ---- */
.lisapalvelut-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 760px;
  margin: 0 auto;
}

.lisapalvelut-item {
  background: var(--dark-soft);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.lisapalvelut-item[open] {
  border-color: rgba(254,209,54,0.35);
}

.lisapalvelut-item summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.lisapalvelut-item summary::-webkit-details-marker {
  display: none;
}

.lp-nimi {
  flex: 1;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
}

.lp-hinta {
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
}

.lp-arrow {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  transition: transform var(--transition);
}

.lisapalvelut-item[open] .lp-arrow {
  transform: rotate(180deg);
  color: var(--gold);
}

.lp-body {
  padding: 0 1.4rem 1.2rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1rem;
  margin-top: 0;
}

/* ---- Yhteystiedot ---- */
.yhteystiedot {
  padding: 6rem 0;
  background: var(--white);
}

.yhteystiedot .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.yhteystiedot-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.yhteystiedot-header h2 {
  color: var(--dark);
}

.yhteystiedot-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.contact-item-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-item-value {
  color: var(--dark);
  font-weight: 600;
  font-size: 1.1rem;
}

.contact-item-value a {
  color: var(--dark);
  transition: color var(--transition);
}

.contact-item-value a:hover {
  color: var(--gold-dark);
}

.contact-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0;
}

.contact-social a {
  width: 40px;
  height: 40px;
  background: var(--dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: background var(--transition);
}

.contact-social a:hover {
  background: var(--gold);
  color: var(--dark);
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* ---- Footer ---- */
footer {
  background: var(--dark);
  padding: 3rem 2rem 1.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo img {
  height: 40px;
}

.footer-nav {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

/* ---- Responsiivisuus ---- */
@media (max-width: 1200px) {
  .esittely-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 1024px) {
  .navbar {
    padding: 1rem 1.5rem;
  }

  .navbar-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 999;
  }

  .navbar-links.open {
    display: flex;
  }

  .navbar-links a {
    font-size: 1.3rem;
  }

  .navbar-social {
    display: none;
  }

  .hamburger {
    display: flex;
    z-index: 1000;
  }

  .hero {
    grid-template-columns: 1fr;
    height: auto;
  }

  .hero-text {
    padding: 7rem 1.5rem 3rem;
    text-align: center;
    align-items: center;
  }

  .hero-text p {
    max-width: 100%;
  }

  .hero-image {
    height: 280px;
  }

  .hero-image::after {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  .hero {
    padding-bottom: 3rem;
  }

  .info-banner {
    margin-top: 0;
  }

  .esittely-grid {
    grid-template-columns: 1fr;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }

  .yhteystiedot-grid {
    grid-template-columns: 1fr;
  }

  .hinnasto-tabs {
    width: 100%;
    border-radius: var(--radius);
    justify-content: center;
  }

  .tab-btn {
    flex: 1;
    text-align: center;
    padding: 0.6rem 0.5rem;
    font-size: 0.72rem;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
    gap: 1rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .hero-text {
    padding: 6rem 1.2rem 3rem;
  }

  .hinnasto .container,
  .esittely .container,
  .mukaan .container,
  .yhteystiedot .container {
    padding: 0 1.2rem;
  }
}
