@import url('https://fonts.googleapis.com/css2?family=Georgia:wght@400;700&family=Inter:wght@300;400;600;700&family=Nunito+Sans:wght@300;400;600;700&family=Source+Sans+3:wght@300;400;600;700&display=swap');

/* ── Reset ── */
:root {
  --font-body: "Inter", sans-serif;
  --ink: #3f322c;
  --ivory: #efe3dd;
  --page-bg: #BFB8AD;
  --mist: #e4d2ca;
  --taupe: #866d62;
  --sand: #d2ab98;
  --line: #ceb8ad;
  --panel: #f3e8e2;
  --accent: #b76e79;
  --btn-bg: #7a6a52;
  --max-width: 1080px;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--page-bg, #eee0d5);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

body.font-preview-inter {
  --font-body: "Inter", sans-serif;
}

body.font-preview-sourcesans {
  --font-body: "Source Sans 3", sans-serif;
}

body.font-preview-nunito {
  --font-body: "Nunito Sans", sans-serif;
}

img { max-width: 100%; height: auto; display: block; border: 1px solid #655950; border-radius: 2px; }

h1, h2, h3, h4, h5, h6 { font-family: "Inter", sans-serif; line-height: 1.3; margin: 1.5rem 0 0.75rem; }
h1, h2, h3, h4, h5, h6 { color: #655950; }
h1 { font-size: 2.2rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

/* ── Layout ── */
.site-header__inner,
.site-footer__inner,
.about-section,
.pricing-section,
.faq-section,
.post-grid,
.content-single,
.content-page {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: 2rem;
}
/* --- url ----*/
.wp-image-26 { margin-top: -300px; }
.page-id-60 a[href*="vello.fi"] {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  background: #866d62;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  margin: 8px 0 24px;
}

.page-id-60 a[href*="vello.fi"]:hover {
  background: #4f5d54;
  color: #ffffff;
  text-decoration: none;
}
/* ── Carousel ── */
.carousel-section {
  width: 100%;
  overflow: hidden;
  background: var(--mist);
}

.carousel {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
}

.carousel__slides {
  display: flex;
  transition: transform 0.6s ease;
}

.carousel__slide {
  min-width: 100%;
  height: min(72vh, 760px);
  min-height: 380px;
  overflow: hidden;
}

.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel--single .carousel__slide {
  height: min(78vh, 820px);
  min-height: 440px;
  background: var(--mist);
}

.carousel--single .carousel__slide img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center 28%;
}

.carousel--single .carousel__prev,
.carousel--single .carousel__next,
.carousel--single .carousel__dots {
  display: none;
}

.carousel__prev,
.carousel__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(63, 50, 44, 0.45);
  color: var(--ivory);
  border: none;
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 10;
}

.carousel__prev:hover,
.carousel__next:hover {
  background: rgba(63, 50, 44, 0.75);
}

.carousel__prev { left: 0; }
.carousel__next { right: 0; }

.carousel__dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.carousel__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(63, 50, 44, 0.25);
  cursor: pointer;
  transition: background 0.3s;
}

.carousel__dot.active {
  background: var(--accent);
}

@media (max-width: 900px) {
  .carousel__slide { height: 300px; }
  .carousel--single .carousel__slide { height: 58vh; min-height: 320px; }
  .carousel__prev,
  .carousel__next { font-size: 1.2rem; }
}

@media (max-width: 580px) {
  .carousel__slide { height: 200px; }
  .carousel--single .carousel__slide { height: 46vh; min-height: 260px; }
  .carousel__prev,
  .carousel__next { padding: 0.3rem 0.6rem; font-size: 1rem; }
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(239, 227, 221, 0.35);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(206, 184, 173, 0.35);
  z-index: 100;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 2rem;
}

.site-brand {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: nowrap;
}

.site-nav a {
  text-decoration: none;
  color: #655950;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.4rem 0.55rem;
  border-radius: 3px;
  transition: color 0.25s;
}

.site-nav a:hover { color: #ffffff; }

.site-nav .nav-cta a {
  background: #655950;
  color: var(--ivory);
  border-radius: 3px;
  padding: 0.45rem 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.site-nav .nav-cta a:hover { opacity: 0.85; }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--sand);
  border-radius: 3px;
  padding: 0.5rem 0.8rem;
  font-size: 1rem;
  cursor: pointer;
}

/* ── Main ── */
.site-main { padding-block: 0 5rem; }

/* ── Hero ── */
.hero {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--ivory) 0%, #dbc0b4 100%);
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.5rem;
}

.hero--with-bg {
  margin-top: -70px;
  padding-top: calc(4rem + 70px);
  background-color: var(--taupe);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  min-height: min(78vh, 760px);
  display: grid;
  align-content: center;
}

.hero--with-bg h1,
.hero--with-bg p {
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.hero--with-bg .button--outline {
  border-color: #fff;
  color: #fff;
}

.hero--with-bg .button--outline:hover {
  background: #fff;
  color: var(--ink);
}

.hero h1 {
  margin-top: 0;
  font-size: clamp(2.05rem, 5vw, 2.85rem);
  margin-bottom: 1rem;
}

.hero p {
  max-width: 580px;
  margin-inline: auto;
  color: var(--taupe);
  font-size: 1.18rem;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.button,
.wp-block-button__link {
  display: inline-block;
  background: #655950;
  color: var(--ivory);
  text-decoration: none;
  padding: 0.8rem 2rem;
  border-radius: 3px;
  border: 0;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
  cursor: pointer;
}

.button:hover,
.wp-block-button__link:hover { opacity: 0.85; }
.button--outline {
  background: transparent;
  border: 2px solid var(--btn-bg);
  color: var(--btn-bg);
}

.button--outline:hover { background: var(--btn-bg); color: var(--ivory); }

/* ── About section ── */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-block: 4rem;
  border-bottom: 1px solid var(--line);
}

.about-text h2 { margin-top: 0; }
.about-text p { color: var(--ink); line-height: 1.8; }

.about-image img { border-radius: 4px; border: 1px solid #655950; }
.page-id-32 .about-image img {
  width: 50%;
  height: auto;
  margin-inline: auto;
}

.page-id-32 .wp-block-image img.wp-image-28 {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}

.page-id-32 .wp-block-image:has(img.wp-image-28) {
  float: right;
  width: 42%;
  margin: 0 0 1.5rem 2.5rem;
  clear: right;
}

.page-id-18 .content-page::after {
  content: '';
  display: table;
  clear: both;
}

.page-id-18 .about-image img {
  width: 50%;
  height: auto;
  margin-inline: auto;
}

.page-id-18 .wp-block-image img.wp-image-70 {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}

.page-id-18 .wp-block-image:has(img.wp-image-70) {
  float: right;
  width: 42%;
  margin: 0 0 1.5rem 2.5rem;
  clear: right;
}

.page-id-18 .content-page::after {
  content: '';
  display: table;
  clear: both;
}

.page-id-20 .wp-block-image img.wp-image-73 {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}

.page-id-20 .wp-block-image:has(img.wp-image-73) {
  float: right;
  width: 42%;
  margin: 0 0 1.5rem 2.5rem;
  clear: right;
}

.page-id-20 .content-page::after {
  content: '';
  display: table;
  clear: both;
}

/* ── Pricing section ── */
.pricing-section {
  padding-block: 4rem;
  border-bottom: 1px solid var(--line);
}

.pricing-section h2 { text-align: center; margin-bottom: 3rem; }

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #ece9e4;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(63, 50, 44, 0.08);
  border: 1px solid var(--line);
}

.pricing-table th,
.pricing-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.pricing-table thead tr {
  background: var(--btn-bg);
}

.pricing-table th {
  color: var(--ivory);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-table tbody tr:nth-child(odd) td  { background: #ece9e4; }
.pricing-table tbody tr:nth-child(even) td { background: var(--page-bg); }

.pricing-table tbody tr:hover td {
  background: #ffffff;
  transition: background 0.15s;
}

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

/* ── WordPress block tables ── */
.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  background: #ece9e4;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(63, 50, 44, 0.08);
  border: 1px solid var(--line);
}

.wp-block-table th,
.wp-block-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.wp-block-table thead tr {
  background: var(--btn-bg);
}

.wp-block-table thead th {
  color: var(--ivory);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: none;
}

.wp-block-table tbody tr:nth-child(odd)  td { background: #ece9e4; }
.wp-block-table tbody tr:nth-child(even) td { background: var(--page-bg); }

.wp-block-table tbody tr:hover td {
  background: #ffffff;
  transition: background 0.15s;
}

.wp-block-table tbody tr:last-child td { border-bottom: none; }

.wp-block-table figcaption {
  font-size: 0.825rem;
  color: var(--taupe);
  text-align: center;
  margin-top: 0.5rem;
}

/* ── Internal links section ── */
.seo-links-section {
  padding-block: 3rem;
  border-bottom: 1px solid var(--line);
}

.seo-links-section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.seo-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  max-width: 720px;
  margin-inline: auto;
}

.seo-links-list a {
  display: block;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.8rem 1rem;
  text-decoration: none;
  color: var(--ink);
}

.seo-links-list a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ── FAQ section ── */
.faq-section {
  padding-block: 4rem;
  max-width: 720px;
  margin-inline: auto;
}

.faq-section h2 { text-align: center; margin-bottom: 2rem; }

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.5rem;
}

.faq-item h3 {
  margin-top: 0;
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.15rem;
}

.faq-item h3::after { content: "+"; font-weight: 300; font-size: 1.4rem; }

.faq-item.is-open h3::after { content: "−"; }

.faq-content {
  display: none;
  color: var(--ink);
  margin-top: 1rem;
}

.faq-item.is-open .faq-content { display: block; }

/* ── Post grid ── */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.post-card {
  background: var(--mist);
  border-radius: 4px;
  padding: 2rem;
  border: 1px solid var(--line);
}

.post-card .meta { font-size: 0.85rem; color: var(--taupe); margin-bottom: 0.5rem; }

.post-card h3 { margin: 0.5rem 0 0.75rem; }

.post-card h3 a { text-decoration: none; color: var(--ink); }

.post-card h3 a:hover { color: #ffffff; }

.post-card p { color: var(--ink); }

/* ── Single / page ── */
.content-single,
.content-page {
  max-width: 720px;
  margin-inline: auto;
  padding-block: 2rem;
}

.content-single h1,
.content-page h1 { margin-top: 0; }

.page-id-60 .content-page {
  width: min(100%, 1400px);
  max-width: 1400px;
}

.content-page--front {
  max-width: var(--max-width);
}

.content-page--front .wp-block-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.content-page--front .wp-block-button {
  margin: 0;
}

.meta { font-size: 0.9rem; color: var(--taupe); margin-bottom: 1.5rem; }

.booking-embed-block {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.booking-embed-block__person {
  background: var(--page-bg, #BFB8AD) !important;
  border: 1px solid var(--page-bg, #BFB8AD);
  border-radius: 1px;
  padding: 0.9rem;
}

.booking-embed-block__person h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.booking-embed-block__person iframe {
  width: 100%;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 1px;
  display: block;
}

.contact-map-simple {
  margin-top: 0;
}

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

.social-links-block {
  margin-top: 2.25rem;
  padding: 1.5rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.social-links-block h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.social-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--ink);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-weight: 600;
  transition: color 0.2s, border-color 0.2s;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ── Footer ── */
.site-footer {
  background: #ffffff;
  border-top: 1px solid var(--line);
  padding-block: 3rem 2rem;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 { margin-top: 0; font-size: 1rem; font-weight: 600; }

.footer-col p,
.footer-col a { font-size: 0.9rem; color: var(--taupe); text-decoration: none; }

.footer-col a:hover { color: var(--accent); }

.footer-col ul { list-style: none; padding: 0; margin: 0; }

.footer-col li { margin-bottom: 0.5rem; }

.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  color: var(--taupe);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-social-link:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--taupe);
}

/* ── Testimonials ── */
.testimonials-section {
  padding-block: 3.5rem;
  border-bottom: 1px solid var(--line);
}

.testimonials-section h2 { text-align: center; margin-bottom: 2rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: 2rem;
}

.testimonial-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.5rem;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--btn-bg);
  opacity: 0.35;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
}

.testimonial-card blockquote {
  margin: 0;
  padding: 0;
  font-style: italic;
  color: var(--taupe);
  line-height: 1.7;
}

.testimonial-card cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--ink);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero--with-bg {
    min-height: min(78vh, 760px);
    padding-top: calc(4rem + 70px);
    background-position: center;
  }

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

  .booking-embed-block {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 1100px) {
  .menu-toggle { display: inline-block; }
  .site-nav { display: none; width: 100%; order: 3; }
  .site-header__inner { flex-wrap: wrap; }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav a { display: block; padding: 0.7rem 0; }
}

@media (max-width: 580px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .booking-embed-block__person iframe {
    min-height: 310px;
  }

  .hero--with-bg {
    min-height: min(64vh, 620px);
    padding-top: calc(3rem + 70px);
  }

  .pricing-table th,
  .pricing-table td,
  .wp-block-table th,
  .wp-block-table td { padding: 0.75rem; font-size: 0.9rem; }

  .seo-links-section {
    padding-block: 2.25rem;
  }

  .hero__actions { flex-direction: column; }

  .button { width: 100%; }

  .social-link {
    width: 100%;
    justify-content: center;
  }
}
