/*
Theme Name: NUTRIEVI
Theme URI: https://nutrievi.gr/
Author: NUTRIEVI — Εύη Χριστοδούλου
Author URI: https://nutrievi.gr/
Description: Classic PHP theme for nutrievi.gr — dietitian Evi Christodoulou, Chalkida. Faithful port of the static site (bilingual GR/EN, split-shift hours, Bookly booking). Styles below are public/css/styles.css copied verbatim.
Version: 1.3.2
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 7.4
License: Proprietary
Text Domain: nutrievi
*/

/* NUTRIEVI Wireframes - Warm Organic Style */
/* Inspired by: Real Food Dietitians, Nutrition Stripped, earthy wellness brands */

:root {
  --terracotta: #c67b5c;
  --terracotta-light: #e8a98b;
  --terracotta-dark: #a85d3f;
  --sand: #f5ede4;
  --cream: #fffbf7;
  --olive: #6b7b4f;
  --olive-light: #8fa06a;
  --brown: #5c4a3d;
  --warm-brown: #8b7355;
  --beige: #e8dfd4;
  --white: #ffffff;
  --brown: #5c4033;
  --terracotta: #b8704b;
  --olive: #7a8b4a;
  --cream: #fffbf7;
}

.logo-wordmark {
  display: flex;
  align-items: baseline;
  user-select: none;
}

.logo-wordmark .nutri {
  font-family: "Fraunces", Georgia, serif;
  font-size: 3rem;
  font-weight: 500;
  color: var(--brown);
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-wordmark .evi {
  font-family: "Fraunces", Georgia, serif;
  font-size: 3rem;
  font-weight: 500;
  color: var(--terracotta);
  letter-spacing: -0.02em;
  line-height: 1;
}

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

body {
  font-family:
    "DM Sans",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--cream);
  color: var(--brown);
  line-height: 1.7;
  font-size: 16px;
}

/* Wireframe Badge */
.wireframe-badge {
  position: fixed;
  top: 15px;
  right: 15px;
  background: var(--terracotta);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 1000;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  color: var(--brown);
}

/* Header - Organic feel */
.header {
  background: var(--cream);
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 7rem;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--brown);
}

.nav {
  display: flex;
  gap: 35px;
}

.nav a {
  text-decoration: none;
  color: var(--warm-brown);
  font-size: 20px;
  font-weight: 700;
  transition: color 0.3s;
}

.nav a:hover,
.nav a.active {
  color: var(--terracotta);
}

.header-cta {
  background: var(--terracotta);
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.header-cta:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
}

/* Hero - Organic curves */
.hero {
  padding: 60px 50px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 52px;
  line-height: 1.15;
  margin-bottom: 25px;
}

.hero-content h1 span {
  color: var(--terracotta);
  font-style: italic;
}

.hero-content p {
  font-size: 18px;
  color: var(--warm-brown);
  margin-bottom: 35px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.hero-image {
  position: relative;
}

.hero-image-main {
  width: 100%;
  height: 500px;
  background: var(--sand);
  border-radius: 200px 200px 100px 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-brown);
  font-size: 14px;
}

.hero-badge {
  position: absolute;
  bottom: 40px;
  left: -30px;
  background: var(--olive);
  color: white;
  padding: 20px 25px;
  border-radius: 20px;
  text-align: center;
}

.hero-badge .number {
  font-family: "Fraunces", Georgia, serif;
  font-size: 32px;
  font-weight: 600;
  display: block;
}

.hero-badge .label {
  font-size: 12px;
  opacity: 0.9;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-primary {
  background: var(--terracotta);
  color: white;
  border: none;
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--brown);
  border: 2px solid var(--brown);
}

.btn-outline:hover {
  background: var(--brown);
  color: white;
}

.btn-text {
  color: var(--terracotta);
  padding: 0;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Sections */
.section {
  padding: 100px 50px;
}

.section-cream {
  background: var(--cream);
}

.section-sand {
  background: var(--sand);
}

.section-white {
  background: var(--white);
}

.section-olive {
  background: var(--olive);
  color: white;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title .eyebrow {
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.section-title h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.section-title p {
  color: var(--warm-brown);
  max-width: 550px;
  margin: 0 auto;
  font-size: 17px;
}

/* Services - Rounded cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  padding: 35px 30px;
  border-radius: 25px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid var(--beige);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(92, 74, 61, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--sand);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--warm-brown);
  font-size: 14px;
  line-height: 1.6;
}

/* About Section - Organic layout */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-image-1 {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 380 / 480;
  height: auto;
  background: var(--beige);
  border-radius: 200px 200px 40px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-brown);
}

.about-image-2 {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 200px;
  height: 200px;
  background: var(--terracotta-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta-dark);
  font-size: 12px;
  border: 6px solid var(--cream);
}

.about-content .eyebrow {
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.about-content h2 {
  font-size: 38px;
  margin-bottom: 25px;
  line-height: 1.2;
}

.about-content p {
  color: var(--warm-brown);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.highlight-icon {
  width: 40px;
  height: 40px;
  background: var(--olive-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
}

.highlight-text {
  font-weight: 600;
  font-size: 15px;
}

/* Testimonials - Warm style */
.testimonials-container {
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  padding: 50px;
  border-radius: 30px;
  text-align: center;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: "Fraunces", Georgia, serif;
  font-size: 120px;
  color: var(--terracotta-light);
  position: absolute;
  top: 20px;
  left: 40px;
  line-height: 1;
  opacity: 0.5;
}

.testimonial-text {
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  line-height: 1.6;
  color: var(--brown);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.author-avatar {
  width: 55px;
  height: 55px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--terracotta);
}

.author-info .name {
  font-weight: 600;
  color: var(--brown);
}

.author-info .role {
  font-size: 14px;
  color: var(--warm-brown);
}

/* Blog - Organic cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: var(--white);
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid var(--beige);
  transition: all 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(92, 74, 61, 0.1);
}

.blog-image {
  height: 220px;
  background: var(--sand);
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-content {
  padding: 30px;
}

.blog-category {
  background: var(--terracotta-light);
  color: var(--terracotta-dark);
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.blog-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-card p {
  color: var(--warm-brown);
  font-size: 14px;
  line-height: 1.6;
}

.blog-date {
  color: var(--warm-brown);
  font-size: 13px;
  margin-top: 15px;
  display: block;
  opacity: 0.7;
}

/* CTA Section */
.cta-section {
  background: var(--olive);
  color: white;
  padding: 80px 50px;
  border-radius: 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.cta-section h2 {
  color: white;
  font-size: 38px;
  margin-bottom: 20px;
}

.cta-section p {
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto 30px;
  font-size: 17px;
}

.cta-section .btn {
  background: white;
  color: var(--olive);
}

/* Footer */
.footer {
  background: var(--brown);
  color: white;
  padding: 70px 50px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.footer-brand .logo-text {
  color: white;
  margin-bottom: 15px;
}

.footer-brand p {
  opacity: 0.7;
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer h4 {
  color: var(--terracotta-light);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: "DM Sans", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 12px;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer a:hover {
  color: var(--terracotta-light);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.social-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: white;
  transition: all 0.3s;
}

.social-icon:hover {
  background: var(--terracotta);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 13px;
  opacity: 0.6;
}

/* Placeholder */
.placeholder {
  background: var(--beige);
  border: 2px dashed var(--warm-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-brown);
  font-size: 13px;
}

/* ============================================
   INNER PAGE COMPONENTS
   ============================================ */

/* Breadcrumb */
.breadcrumb {
  background: var(--sand);
  padding: 14px 50px;
  border-bottom: 1px solid var(--beige);
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 13px;
  color: var(--warm-brown);
}

.breadcrumb a {
  color: var(--warm-brown);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--terracotta);
}

.breadcrumb-sep {
  margin: 0 10px;
  opacity: 0.5;
}

/* Page Header */
.page-header {
  background: var(--sand);
  padding: 60px 50px 70px;
  text-align: center;
}

.page-header-inner {
  max-width: 700px;
  margin: 0 auto;
}

.page-header .eyebrow,
.eyebrow {
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.page-header h1 {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.page-header h1 span {
  color: var(--terracotta);
  font-style: italic;
}

.page-header p {
  color: var(--warm-brown);
  font-size: 18px;
  line-height: 1.7;
  max-width: 550px;
  margin: 0 auto;
}

/* ============================================
   SERVICES PAGE
   ============================================ */

/* Detailed Service Cards */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.service-card-detailed {
  background: var(--white);
  padding: 40px 35px;
  border-radius: 25px;
  border: 1px solid var(--beige);
  transition: all 0.3s;
}

.service-card-detailed:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(92, 74, 61, 0.1);
}

.service-card-detailed .service-icon {
  margin: 0 0 20px;
}

.service-card-detailed h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card-detailed p {
  color: var(--warm-brown);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--beige);
}

.service-price,
.service-duration,
.service-location {
  font-size: 13px;
  color: var(--warm-brown);
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-price {
  font-weight: 700;
  color: var(--terracotta);
  font-size: 15px;
}

/* ============================================
   FAQ COMPONENT
   ============================================ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-container h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 12px;
  border: 1px solid var(--beige);
  overflow: hidden;
}

.faq-question {
  padding: 22px 30px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--terracotta);
  flex-shrink: 0;
}

.faq-answer {
  padding: 0 30px 22px;
  color: var(--warm-brown);
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================
   PACKAGES / PRICING PAGE
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border-radius: 25px;
  border: 1px solid var(--beige);
  overflow: hidden;
  transition: all 0.3s;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(92, 74, 61, 0.1);
}

.pricing-card-featured {
  border: 2px solid var(--terracotta);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta);
  color: white;
  padding: 6px 20px;
  border-radius: 0 0 12px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pricing-header {
  padding: 40px 30px 25px;
  text-align: center;
  border-bottom: 1px solid var(--beige);
}

.pricing-header h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.pricing-header p {
  color: var(--warm-brown);
  font-size: 14px;
}

.pricing-price {
  padding: 25px 30px;
  text-align: center;
  border-bottom: 1px solid var(--beige);
}

.price-amount {
  font-family: "Fraunces", Georgia, serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--terracotta);
}

.price-amount span {
  font-size: 20px;
  font-weight: 400;
  color: var(--warm-brown);
}

.price-note {
  font-size: 13px;
  color: var(--warm-brown);
  margin-top: 5px;
}

.pricing-body {
  padding: 30px;
}

.pricing-features {
  list-style: none;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.feature-included::before {
  content: "✓";
  color: var(--olive);
  font-weight: 700;
  flex-shrink: 0;
}

.feature-excluded {
  opacity: 0.4;
}

.feature-excluded::before {
  content: "—";
  flex-shrink: 0;
}

.pricing-meta {
  padding: 0 30px;
  margin-bottom: 15px;
}

.pricing-meta span {
  font-size: 13px;
  color: var(--warm-brown);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.pricing-footer {
  padding: 0 30px 30px;
  text-align: center;
}

.pricing-footer .btn {
  width: 100%;
  text-align: center;
}

/* Price List (individual) */
.price-list {
  max-width: 800px;
  margin: 0 auto;
}

.price-list h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

.price-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 10px;
  border: 1px solid var(--beige);
  transition: all 0.3s;
}

.price-list-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(92, 74, 61, 0.08);
}

.price-list-info h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.price-list-info span {
  font-size: 13px;
  color: var(--warm-brown);
}

.price-list-amount {
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--terracotta);
  white-space: nowrap;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.about-hero-image {
  position: relative;
}

.about-portrait {
  width: 100%;
  height: 500px;
  background: var(--beige);
  border-radius: 200px 200px 40px 40px;
}

.about-portrait img {
  object-position: calc(50% - 50px) calc(50% + 50px);
}

.about-hero-content .about-subtitle {
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  color: var(--terracotta);
  margin-bottom: 20px;
  font-style: italic;
}

.about-hero-content h2 {
  font-size: 38px;
  margin-bottom: 25px;
  line-height: 1.2;
}

.about-hero-content p {
  color: var(--warm-brown);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* Philosophy Grid */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.philosophy-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: 25px;
  text-align: center;
  border: 1px solid var(--beige);
  transition: all 0.3s;
}

.philosophy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(92, 74, 61, 0.1);
}

.philosophy-icon {
  width: 65px;
  height: 65px;
  background: var(--sand);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 26px;
}

.philosophy-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.philosophy-card p {
  color: var(--warm-brown);
  font-size: 14px;
  line-height: 1.6;
}

/* Credentials */
.credentials-panel {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 25px;
  padding: 40px 50px;
  border: 1px solid var(--beige);
}

.about-premises-actions {
  text-align: center;
}

.credential-list {
  list-style: none;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--beige);
}

.credential-item:last-child {
  border-bottom: none;
}

.credential-icon {
  width: 40px;
  height: 40px;
  background: var(--olive-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}

.credential-item h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 3px;
}

.credential-item p {
  font-size: 13px;
  color: var(--warm-brown);
}

.credentials-image {
  position: relative;
}

.about-image-arch {
  width: 100%;
  height: 400px;
  background: var(--beige);
  border-radius: 30px;
}

.credentials-badge {
  position: absolute;
  bottom: -20px;
  left: 30px;
  background: var(--terracotta);
  color: white;
  padding: 18px 24px;
  border-radius: 20px;
  text-align: center;
}

.credentials-badge .number {
  font-family: "Fraunces", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  display: block;
}

.credentials-badge .label {
  font-size: 11px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Office Gallery */
.office-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.office-image {
  height: 250px;
  background: var(--beige);
  border-radius: 20px;
}

.office-image-large {
  grid-row: span 2;
  height: 100%;
}

/* ============================================
   BLOG PAGE (ARCHIVE)
   ============================================ */

/* Blog Filters */
.blog-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.filter-tag {
  padding: 8px 22px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: var(--warm-brown);
  background: var(--white);
  border: 1px solid var(--beige);
  transition: all 0.3s;
}

.filter-tag:hover,
.filter-active {
  background: var(--terracotta);
  color: white;
  border-color: var(--terracotta);
}

/* Blog Featured Post */
.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--beige);
}

.blog-featured-image {
  min-height: 350px;
  overflow: hidden;
  border-radius: 30px 0 0 30px;
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  display: block;
}

.blog-featured-content {
  padding: 50px 40px 50px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-content h2 {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 15px;
}

.blog-featured-content p {
  color: var(--warm-brown);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-featured-meta {
  margin-bottom: 20px;
}

.blog-read-time {
  font-size: 13px;
  color: var(--warm-brown);
  opacity: 0.7;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
}

.pagination-current,
.pagination-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.pagination-current {
  background: var(--terracotta);
  color: white;
}

.pagination-link {
  background: var(--white);
  color: var(--warm-brown);
  border: 1px solid var(--beige);
}

.pagination-link:hover {
  background: var(--terracotta-light);
  color: white;
  border-color: var(--terracotta-light);
}

/* Newsletter */
.newsletter-section {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.newsletter-section h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.newsletter-section p {
  color: var(--warm-brown);
  font-size: 16px;
  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 450px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 14px 22px;
  border: 1px solid var(--beige);
  border-radius: 30px;
  font-size: 15px;
  font-family: "DM Sans", sans-serif;
  background: var(--white);
  color: var(--brown);
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-input:focus {
  border-color: var(--terracotta);
}

.newsletter-note {
  font-size: 12px;
  color: var(--warm-brown);
  opacity: 0.6;
  margin-top: 12px;
  display: block;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-wrapper h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-form-wrapper > p {
  color: var(--warm-brown);
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--brown);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 20px;
  border: 1px solid var(--beige);
  border-radius: 14px;
  font-size: 15px;
  font-family: "DM Sans", sans-serif;
  background: var(--white);
  color: var(--brown);
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--terracotta);
}

.form-checkbox label {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

.form-checkbox a {
  color: var(--terracotta);
}

/* Contact Info Cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-card {
  background: var(--white);
  padding: 25px;
  border-radius: 20px;
  border: 1px solid var(--beige);
}

.contact-card-icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.contact-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.contact-card p {
  color: var(--warm-brown);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.contact-card .btn-text {
  font-size: 13px;
  text-decoration: none;
}

.contact-card-hours .hours-list {
  list-style: none;
}

.contact-card-hours .hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--beige);
}

.contact-card-hours .hours-list li:last-child {
  border-bottom: none;
}

.contact-card-hours .hours-list span {
  color: var(--warm-brown);
}

/* Map Section */
.map-section {
  max-width: 1200px;
  margin: 0 auto;
}

.map-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}

.map-embed {
  width: 100%;
  overflow: hidden;
}

/* Legal-page tables (cookie inventory) — scoped so Bookly's own tables stay untouched */
.legal-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.legal-table th,
.legal-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--beige);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  font-weight: 600;
  white-space: nowrap;
}

/* Content blockers (e.g. Brave's cookie-notice filter) can strip the consent
   plugin's stylesheet; without it the settings modal markup renders as raw
   in-flow content at the end of the page. Mirror the plugin's own hidden
   state from first-party CSS so the markup stays hidden either way. */
.gdprmodal {
  display: none;
}

/* WPLP cookie banner ships inline padding-inline:120px; its own ≤768px rule
   (padding:20px, no !important) loses to the inline style, squeezing phones.
   !important beats the inline style. */
@media (max-width: 768px) {
  #gdpr-cookie-consent-bar {
    padding-inline: 20px !important;
  }
}

/* Consent-gated Google Maps placeholder (map loads only on click — GDPR) */
.map-consent {
  width: 100%;
  height: 400px;
  border-radius: 25px;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 24px;
}

.map-consent p {
  font-size: 14px;
  opacity: 0.75;
  max-width: 460px;
  margin: 0;
}

.map-info {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 25px;
}

.map-info-item {
  font-size: 14px;
  color: var(--warm-brown);
}

.map-info-item strong {
  color: var(--brown);
}

/* ============================================
   BOOKING PAGE
   ============================================ */
.booking-hero {
  background: var(--sand);
  padding: 60px 50px 70px;
  text-align: center;
}

.booking-hero-inner {
  max-width: 600px;
  margin: 0 auto;
}

.booking-hero h1 {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.booking-hero h1 span {
  color: var(--terracotta);
  font-style: italic;
}

.booking-hero p {
  color: var(--warm-brown);
  font-size: 18px;
  line-height: 1.7;
}

.booking-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Booking Steps */
.booking-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 50px;
}

.booking-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--warm-brown);
}

.booking-step-number {
  width: 36px;
  height: 36px;
  background: var(--terracotta);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.booking-step-line {
  width: 60px;
  height: 2px;
  background: var(--beige);
  margin: 0 15px;
}

/* Booking Embed */
.booking-embed {
  margin-bottom: 60px;
}

/* Booking Alternatives */
.booking-alternatives {
  text-align: center;
}

.booking-alternatives h3 {
  font-size: 24px;
  margin-bottom: 30px;
}

.booking-alt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.booking-alt-card {
  background: var(--white);
  padding: 30px 25px;
  border-radius: 20px;
  border: 1px solid var(--beige);
  text-align: center;
}

.booking-alt-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.booking-alt-card h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.booking-alt-card p {
  color: var(--warm-brown);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.booking-alt-hours {
  font-size: 12px;
  color: var(--warm-brown);
  opacity: 0.7;
}

/* Booking Info Section */
.booking-info {
  max-width: 1000px;
  margin: 0 auto;
}

.booking-info h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.booking-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.booking-info-card {
  background: var(--white);
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--beige);
}

.booking-info-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.booking-info-card h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.booking-info-card p {
  color: var(--warm-brown);
  font-size: 13px;
  line-height: 1.6;
}

/* Booking Trust Bar */
.booking-trust {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.booking-trust-item {
  font-size: 14px;
  color: var(--warm-brown);
}

.booking-trust-item strong {
  color: var(--olive);
  margin-right: 6px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-detail-grid,
  .pricing-grid,
  .philosophy-grid,
  .booking-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid,
  .about-grid,
  .about-hero-grid,
  .blog-featured {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-images {
    display: flex;
    justify-content: center;
  }

  .blog-featured-content {
    padding: 30px;
  }

  .office-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .office-image-large {
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 25px;
  }

  .header {
    padding: 15px 25px;
    flex-wrap: wrap;
    gap: 15px;
  }

  .nav {
    gap: 20px;
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .page-header {
    padding: 40px 25px 50px;
  }

  .page-header h1,
  .booking-hero h1 {
    font-size: 34px;
  }

  .credentials-panel {
    padding: 30px 25px;
  }

  .services-detail-grid,
  .pricing-grid,
  .philosophy-grid,
  .blog-grid,
  .booking-alt-grid,
  .booking-info-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    grid-template-columns: 1fr;
    padding: 40px 25px;
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-image-main {
    height: auto;
    min-height: 300px;
    aspect-ratio: 5 / 6;
    border-radius: 120px 120px 60px 60px;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .about-content h2,
  .about-hero-content h2 {
    font-size: 28px;
  }

  .about-portrait {
    height: auto;
    min-height: 280px;
    aspect-ratio: 4 / 5;
  }

  .cta-section {
    padding: 48px 28px;
    border-radius: 24px;
  }

  .cta-section h2 {
    font-size: 28px;
  }

  .testimonial-card {
    padding: 32px 24px;
  }

  .testimonial-text {
    font-size: 18px;
  }

  .footer {
    padding: 48px 25px 32px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .booking-steps {
    flex-direction: column;
    gap: 15px;
  }

  .booking-step-line {
    width: 2px;
    height: 30px;
    margin: 0;
  }

  .booking-trust {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .map-info {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .breadcrumb {
    padding: 12px 25px;
  }

  .booking-hero {
    padding: 40px 25px 50px;
  }

  .office-gallery {
    grid-template-columns: 1fr;
  }

  .price-list-item {
    flex-wrap: wrap;
    gap: 12px;
  }

  .blog-featured-image {
    border-radius: 30px 30px 0 0;
  }

  .header__top {
    display: none;
  }

  .header__top .container,
  .header__main .container {
    padding: 12px 25px;
  }

  .header__main .container {
    flex-wrap: wrap;
  }

  .header__nav.is-open {
    display: flex;
    flex-direction: column;
    width: 100%;
    order: 4;
    padding: 16px 0 8px;
    gap: 12px;
  }

  .header__nav.is-open .header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .header__nav.is-open .header__nav-list a {
    display: block;
    padding: 12px 8px;
    font-size: 16px;
  }

  .header__nav.is-open .header__cta-group {
    width: 100%;
    padding-top: 8px;
  }

  .header__nav.is-open .header-cta {
    width: 100%;
    text-align: center;
    min-height: 44px;
  }
}

/* ============================================
   2026 ENHANCEMENTS — a11y, i18n, integrations
   ============================================ */

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 2000;
  background: var(--brown);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  top: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Site header — WordPress + static unified pattern */
.site-header,
.header--enhanced {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--cream);
}

.header__top {
  background: var(--sand);
  border-bottom: 1px solid var(--beige);
  font-size: 13px;
}

.header__top .container,
.header__main .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.header__top a {
  color: var(--brown);
  text-decoration: none;
  font-weight: 600;
}

.header__top a:hover {
  color: var(--terracotta);
}

.header__main .container {
  padding: 8px 50px;
}

.header__logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--brown);
}

.header__logo-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.header__logo-specialty {
  font-size: 0.85rem;
  color: var(--terracotta);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__nav-list {
  display: flex;
  list-style: none;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.header__nav-list a {
  text-decoration: none;
  color: var(--warm-brown);
  font-weight: 600;
  font-size: 15px;
}

.header__nav-list a:hover,
.header__nav-list a.active {
  color: var(--terracotta);
}

.header__cta-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

.header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--brown);
  min-width: 44px;
  min-height: 44px;
  padding: 8px;
  border-radius: 8px;
  flex-shrink: 0;
}

.header__mobile-bar {
  display: none;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header__lang-mobile {
  display: none;
}

.header__address {
  flex: 1;
  min-width: 0;
}

@media (max-width: 768px) {
  .header__top .header__address {
    display: none;
  }
}

body.nav-open {
  overflow: hidden;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lang-switcher__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 12px;
  color: var(--warm-brown);
  padding: 10px 8px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 4px;
}

.lang-switcher__btn.is-active {
  color: var(--terracotta);
  background: rgba(184, 112, 75, 0.12);
}

.lang-switcher__sep {
  opacity: 0.4;
}

/* Call & maps buttons */
.btn-call,
.btn-maps {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-call--phone {
  background: var(--olive);
  color: #fff;
}

.btn-call--mobile {
  background: var(--terracotta);
  color: #fff;
}

.btn-maps {
  background: var(--beige);
  border: 2px solid var(--terracotta);
  color: var(--terracotta);
}

.btn-maps:hover {
  background: var(--terracotta);
  color: #fff;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

/* Premises layout (from ioanchryst pattern) */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-preview__image img,
.media-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.placeholder--portrait {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 25px;
  border: none;
}

.placeholder--wide {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 25px;
  border: none;
}

.section--gray {
  background: var(--sand);
}

.section--primary {
  background: var(--olive);
  color: #fff;
}

.section--primary h2,
.section--primary h3,
.section--primary p {
  color: #fff;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: var(--terracotta-light);
  margin: 16px auto;
  border-radius: 2px;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.usp-item {
  background: rgba(255, 255, 255, 0.12);
  padding: 28px;
  border-radius: 20px;
  text-align: center;
}

.usp-item__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.usp-item__title {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.usp-item__text {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Action buttons (not links) */
button.btn,
button.header-cta {
  cursor: pointer;
  font-family: inherit;
  border: none;
}

.btn--compact {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 20px;
}

.footer-contact-actions {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-actions .btn {
  width: 100%;
  justify-content: center;
}

/* Premises gallery redesign */
.premises-hero {
  position: relative;
  height: clamp(280px, 56.5vw, 560px);
  overflow: hidden;
}

.premises-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.premises-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(92, 64, 51, 0.75) 0%,
    transparent 55%
  );
  display: flex;
  align-items: flex-end;
  padding: 48px 50px;
  color: #fff;
}

.premises-hero__overlay h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 8px;
}

.premises-hero__overlay p {
  max-width: 560px;
  opacity: 0.95;
  font-size: 17px;
}

.premises-intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 24px 24px;
}

.premises-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 48px;
}

.premises-gallery__item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 220px;
  background: var(--sand);
}

.premises-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 220px;
}

.premises-gallery__item--full {
  grid-column: span 12;
  min-height: 360px;
}

.premises-gallery__item--half {
  grid-column: span 6;
}

.premises-gallery__item--third {
  grid-column: span 4;
}

.premises-gallery__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .premises-gallery__item--half,
  .premises-gallery__item--third {
    grid-column: span 12;
  }

  .premises-hero__overlay {
    padding: 32px 24px;
  }
}

/* Legacy single-card carousel — deprecated */
.reviews-carousel__card.testimonial-card {
  display: none;
}

/* Real images replace placeholders */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.hero-image-main img,
.about-image-1 img,
.about-image-2 img,
.about-portrait img,
.about-image-arch img,
.office-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.hero-image-main {
  overflow: hidden;
}

.about-image-1,
.about-portrait,
.about-image-arch {
  overflow: hidden;
}

.about-image-1,
.about-portrait {
  border-radius: 200px 200px 40px 40px;
}

.about-image-arch {
  border-radius: 30px;
}

.booking-embed .bookly-placeholder {
  min-height: 600px;
  border-radius: 25px;
  background: var(--white);
  border: 1px dashed var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  padding: 40px;
  text-align: center;
}

.map-embed iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 25px;
}

@media (max-width: 1024px) {
  .about-preview,
  .usp-grid {
    grid-template-columns: 1fr;
  }

  .header__mobile-bar {
    display: flex;
  }

  .header__mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header__nav:not(.is-open) .header__nav-list,
  .header__nav:not(.is-open) .header__cta-group {
    display: none;
  }
}

@media (max-width: 768px) {
  .header__lang-mobile {
    display: inline-flex;
  }

  .header__lang-desktop {
    display: none;
  }
}
