/* style.css — single source of truth (mobile-first) */

/* ============ THEME ============ */
:root{
  --container: 1120px;

  --brand: #2f6f3e;   /* green */
  --brand2:#e1b15b;   /* gold */

  --cream: #f2f0e8;
  --paper: #FCFBF8;
  --ink: #0f172a;
  --muted: rgba(15, 23, 42, .72);
  --line: rgba(15, 23, 42, .10);

  --radius: 18px;
  --card: rgba(255,255,255,.88);
  --shadow: 0 14px 40px rgba(15, 23, 42, .06);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

img{ max-width:100%; height:auto; }
a{ color: inherit; text-decoration: none; }

.container{
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* Utility */
.is-hidden{ display:none !important; }

/* Gradient text helper */
.grad-text{
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}

/* =========================
   HEADER + MOBILE MENU
   ========================= */

.site-header{
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(15,23,42,.06);
  background: transparent;
  backdrop-filter: blur(10px);
}

.site-header::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(47,111,62,.14), transparent 60%),
    radial-gradient(900px 420px at 85% 0%, rgba(225,177,91,.18), transparent 60%),
    linear-gradient(180deg, rgba(242,240,232,.92), rgba(242,240,232,.72));
}

.header-row{
  min-height: 56px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 10px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
}

.brand-logo{
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display:block;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 10px 20px rgba(15,23,42,.10);
  object-fit: contain;
}

.brand-name{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-weight: 750;
  letter-spacing: -0.02em;
  font-size: 16px;
  line-height: 1.05;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;

  background: linear-gradient(90deg, var(--brand), var(--brand2));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}

/* Desktop nav */
.nav{
  display:none; /* mobile-first */
  gap: 18px;
  align-items:center;
}

.nav-link{
  font-weight: 700;
  font-size: 14px;
  color: rgba(15,23,42,.78);
  padding: 8px 2px;
  position: relative;
}

.nav-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:2px;
  width:0%;
  height:2px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  transition: width .18s ease;
}

.nav-link:hover::after{ width:100%; }

/* Language (desktop) */
.lang{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 800;
  font-size: 13px;
  flex: 0 0 auto;
}

.lang-link{
  color: rgba(15,23,42,.70);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  opacity: .75;
}

.lang-link.is-active{
  color: rgba(15,23,42,1);
  border-bottom-color: var(--brand);
  opacity: 1;
}

.lang-sep{ color: rgba(15,23,42,.35); }

/* Burger button (mobile) */
.burger{
  display:inline-flex;           /* mobile default ON */
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.65);
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:12px 12px;
  cursor:pointer;
  -webkit-tap-highlight-color: transparent;
}

.burger span{
  display:block;
  height:2px;
  width:18px;
  background: rgba(15,23,42,.92);
  border-radius:999px;
}

.burger span:nth-child(2){ width: 14px; opacity:.95; }
.burger span:nth-child(3){ width: 18px; opacity:.90; }

/* overlay + drawer */
.menu-overlay{
  position:fixed;
  inset:0;
  background: rgba(15,23,42,.35);
  opacity:0;
  pointer-events:none;
  transition: opacity .2s ease;
  z-index: 90;
}

.mobile-menu{
  position:fixed;
  top:0;
  right:0;
  height:100vh;
  width:min(86vw, 380px);
  background: rgba(252,251,248,.98);
  border-left: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 20px 60px rgba(15,23,42,.18);
  transform: translateX(110%);
  transition: transform .22s ease;
  z-index:95;
  display:flex;
  flex-direction:column;
}

.mobile-menu__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 16px 12px;
  border-bottom:1px solid rgba(15,23,42,.10);
}

.mobile-menu__title{
  font-weight:850;
  font-size:18px;
}

.mobile-menu__close{
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.7);
  font-size:26px;
  line-height:1;
  cursor:pointer;
}

.mobile-menu__nav{
  padding: 14px 16px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.mobile-menu__nav a{
  font-size: 18px;
  font-weight: 650;
  padding: 12px 10px;
  border-radius: 14px;
  color: rgba(15,23,42,.88);
}

.mobile-menu__nav a:hover{
  background: rgba(15,23,42,.06);
}

.mobile-menu__lang{
  margin-top:auto;
  padding: 16px;
  border-top:1px solid rgba(15,23,42,.10);
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:850;
}

/* open state */
body.is-menu-open .menu-overlay{
  opacity:1;
  pointer-events:auto;
}
body.is-menu-open .mobile-menu{
  transform: translateX(0);
}

/* breakpoints */
@media (min-width: 901px){
  .header-row{ min-height: 74px; padding: 14px 0; }
  .brand-name{ font-size: 20px; }
  .nav{ display:flex; }
  .burger{ display:none; }
  .lang{ display:flex; }
}

@media (max-width: 900px){
  .nav{ display:none !important; }
  .lang{ display:none !important; } /* мову ховаємо в бургер */
  .burger{ display:inline-flex !important; }
}

/* ============ HERO ============ */
.hero{
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding: 22px 0 26px 0;
  border-bottom: 1px solid rgba(15,23,42,.06);
}

.hero-bg{ display:none; }

.hero-inner{
  position: relative;
  z-index: 2;
  text-align: left;
}

.hero-kicker{
  margin: 0 0 12px 0;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(15,23,42,.72);
}

.hero-title{
  margin: 0 0 14px 0;
  line-height: 1.04;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-weight: 750;
  letter-spacing: -0.02em;
  font-size: 44px;
}

.hero-title-left{ color: rgba(15,23,42,.95); }
.hero-title-brand{
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  -webkit-background-clip: text;
  background-clip:text;
  color: transparent;
}

.hero-subtitle{
  margin: 0 0 18px 0;
  max-width: 58ch;
  font-size: 20px;
  line-height: 1.5;
  color: rgba(15,23,42,.80);
}

.hero-actions{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items:center;
}

@media (min-width: 901px){
  .hero{
    min-height: 520px;
    display:flex;
    align-items:center;
    padding: 0;
    background: transparent;
  }

  .hero-bg{
    display:block;
    position:absolute;
    inset:-40px;
    background:
      radial-gradient(1200px 500px at 15% 20%, rgba(47,111,62,.28), transparent 60%),
      radial-gradient(900px 500px at 85% 30%, rgba(225,177,91,.28), transparent 60%),
      linear-gradient(110deg, rgba(47,111,62,.12), rgba(225,177,91,.12)),
      url("/assets/img/hero/hero.jpg");
    background-size: cover;
    background-position: center 20%;
    filter: saturate(1.04) contrast(1.04);
    transform: scale(1.02);
  }

  .hero-bg::after{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(180deg, rgba(242,240,232,.68), rgba(242,240,232,.86));
  }

  .hero-inner{
    text-align: center;
    padding: 84px 0;
  }

  .hero-title{
    margin: 0 auto 14px auto;
    max-width: 980px;
    font-size: clamp(44px, 5.2vw, 74px);
  }

  .hero-subtitle{
    margin: 0 auto 28px auto;
    font-size: 18px;
    color: rgba(15,23,42,.74);
    font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  }

  .hero-actions{ justify-content:center; }
}

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .2px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 22px rgba(15,23,42,.08);
  cursor:pointer;
}

.btn-primary{
  border-color: rgba(15,23,42,.12);
  background: linear-gradient(90deg, rgba(47,111,62,.85), rgba(225,177,91,.92));
  color: #0b1220;
}

.btn-ghost{ background: rgba(255,255,255,.72); }
.btn:active{ transform: translateY(1px); }

/* ============ SECTIONS ============ */
.section{ padding: 40px 0; }

.section-title{
  margin: 0 0 10px 0;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: 44px;
  letter-spacing: -0.02em;
}

.section-text{
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

/* ============ SERVICES CAROUSEL (home + /services) ============ */
.services-carousel{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  overflow-x:auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.services-carousel::-webkit-scrollbar{ height: 8px; }
.services-carousel::-webkit-scrollbar-thumb{
  background: rgba(15,23,42,.14);
  border-radius: 999px;
}

.svc-card{
  scroll-snap-align: start;
  min-width: 88%;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
  display:flex;
  flex-direction: column;
}

.svc-img{
  width:100%;
  height: 190px;
  object-fit: cover;
  display:block;
  filter: saturate(1.06) contrast(1.08);
}

.svc-body{ padding: 14px 14px 16px 14px; }

.svc-title{
  margin: 0 0 8px 0;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.1;
}

.svc-desc{
  margin: 0 0 10px 0;
  color: rgba(15,23,42,.74);
  line-height: 1.45;
}

.svc-meta{
  display:grid;
  gap: 6px;
  color: rgba(15,23,42,.74);
  margin-bottom: 12px;
}

.svc-actions{
  display:flex;
  justify-content:center;
  margin-top: 10px;
}

.svc-actions .btn{
  width: 100%;
  max-width: 280px;
}

@media (min-width: 901px){
  .services-carousel{
    overflow: visible;
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-bottom: 0;
  }
  .svc-card{ min-width: auto; }
  .svc-img{ height: 170px; }
}

/* ============ BOOKING (твій існуючий блоки залишаю) ============ */
.form{ max-width: 820px; }

.form label{
  display:block;
  margin-bottom: 12px;
  font-size: 14px;
}

.form input, .form select, .form textarea{
  width:100%;
  margin-top: 6px;
  padding: 12px 12px;
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 14px;
  font-size: 16px; /* iOS zoom fix */
  background: rgba(255,255,255,.92);
}

.form input:focus, .form select:focus, .form textarea:focus{
  outline: none;
  border-color: rgba(47,111,62,.35);
  box-shadow: 0 0 0 4px rgba(47,111,62,.12);
}

.row-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 900px){
  .row-2{ grid-template-columns: 1fr !important; }
}

/* =========================
   FOOTER
   ========================= */

.site-footer{
  border-top: 1px solid rgba(15,23,42,.08);
  margin-top: 60px;
  padding: 28px 0;
  background:
    radial-gradient(700px 420px at 10% 20%, rgba(47,111,62,.10), transparent 60%),
    radial-gradient(700px 420px at 90% 30%, rgba(225,177,91,.14), transparent 60%),
    linear-gradient(180deg, rgba(242,240,232,.92), rgba(242,240,232,.98));
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.footer-brand-row{
  display:flex;
  align-items:center;
  gap:10px;
}

.footer-logo{
  width:44px;
  height:44px;
  border-radius:999px;
  object-fit:contain;
  background:rgba(255,255,255,.85);
  border:1px solid rgba(15,23,42,.10);
}

.footer-brand{
  font-weight: 900;
  font-size: 18px;
  line-height: 1.1;
}

.footer-sub{
  opacity:.75;
  font-weight:700;
  font-size:13px;
  line-height:1.1;
}

.footer-text{
  color: var(--muted);
  line-height: 1.5;
}

.footer-strong{
  font-weight: 900;
  color: rgba(15,23,42,.86);
  margin-bottom: 6px;
}

.footer-links{
  display:flex;
  flex-direction:column;
  gap: 10px;
  padding-top: 2px;
}

.footer-links a{
  font-weight:800;
  text-decoration:none;
  color: rgba(15,23,42,.86);
}

.footer-bottom{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(15,23,42,.10);
  display:flex;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-copy{
  color: rgba(15,23,42,.70);
  font-size: 14px;
}

@media (max-width: 900px){
  .footer-grid{ grid-template-columns: 1fr; }
}
/* ===== MOBILE MENU: switch open-state to html.nav-open (valenciafacials style) ===== */

.menu-overlay[hidden],
.mobile-menu[hidden]{ display:none !important; }

/* open state via html.nav-open */
html.nav-open .menu-overlay{
  opacity: 1 !important;
  pointer-events: auto !important;
}

html.nav-open .mobile-menu{
  transform: translateX(0) !important;
}

/* lock scroll */
html.nav-open{ overflow: hidden; }

/* burger to X animation */
html.nav-open .burger span:nth-child(1){
  transform: translateY(8px) rotate(45deg);
}
html.nav-open .burger span:nth-child(2){
  opacity: 0;
}
html.nav-open .burger span:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
}

/* add transitions to your burger spans (so animation works) */
.burger span{
  transition: transform .2s ease, opacity .2s ease;
}
/* ===== MOBILE MENU: switch open-state to html.nav-open (valenciafacials style) ===== */

.menu-overlay[hidden],
.mobile-menu[hidden]{ display:none !important; }

/* open state via html.nav-open */
html.nav-open .menu-overlay{
  opacity: 1 !important;
  pointer-events: auto !important;
}

html.nav-open .mobile-menu{
  transform: translateX(0) !important;
}

/* lock scroll */
html.nav-open{ overflow: hidden; }

/* burger to X animation */
html.nav-open .burger span:nth-child(1){
  transform: translateY(8px) rotate(45deg);
}
html.nav-open .burger span:nth-child(2){
  opacity: 0;
}
html.nav-open .burger span:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
}

/* add transitions to your burger spans (so animation works) */
.burger span{
  transition: transform .2s ease, opacity .2s ease;
}
/* ============ ABOUT SECTION ============ */
.about-section{
  padding-top: 48px;
  padding-bottom: 48px;
}

.about-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.about-media{
  min-width: 0;
}

.about-image-wrap{
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(700px 280px at 20% 20%, rgba(47,111,62,.12), transparent 60%),
    radial-gradient(700px 280px at 80% 80%, rgba(225,177,91,.18), transparent 60%),
    rgba(255,255,255,.72);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: var(--shadow);
}

.about-image{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  filter: saturate(1.03) contrast(1.02);
}

.about-content{
  min-width: 0;
}

.about-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(15,23,42,.08);
  color: rgba(15,23,42,.72);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about-title{
  margin-bottom: 14px;
}

.about-subtitle{
  margin: 0 0 18px 0;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(15,23,42,.78);
  max-width: 62ch;
}

.about-text{
  display: grid;
  gap: 14px;
}

.about-text p{
  margin: 0;
  color: rgba(15,23,42,.82);
  line-height: 1.72;
  font-size: 16px;
}

.about-actions{
  margin-top: 22px;
}

@media (min-width: 901px){
  .about-section{
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .about-grid{
    grid-template-columns: minmax(360px, 460px) minmax(0, 1fr);
    gap: 40px;
  }

  .about-image{
    height: 100%;
    min-height: 640px;
  }

  .about-title{
    font-size: 48px;
  }
}

@media (max-width: 640px){
  .about-subtitle{
    font-size: 16px;
  }

  .about-text p{
    font-size: 15px;
    line-height: 1.68;
  }

  .about-image{
    height: 280px;
  }
}
/* =========================
   BLOG LIST + BLOG POST
   ========================= */

.page-hero--soft{
  padding: 34px 0 18px;
  background:
    radial-gradient(800px 280px at 10% 0%, rgba(47,111,62,.10), transparent 60%),
    radial-gradient(800px 280px at 90% 0%, rgba(225,177,91,.12), transparent 60%),
    linear-gradient(180deg, rgba(252,251,248,.96), rgba(252,251,248,.98));
  border-bottom: 1px solid rgba(15,23,42,.06);
}

.page-hero__content{
  max-width: 760px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:10px;
  padding:7px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15,23,42,.08);
  color: rgba(15,23,42,.66);
  font-size:12px;
  font-weight:800;
  letter-spacing:.10em;
  text-transform:uppercase;
}

.page-hero--soft h1{
  margin:0 0 10px 0;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: clamp(34px, 5vw, 54px);
  line-height:1.02;
  letter-spacing:-.02em;
}

.page-hero--soft p{
  margin:0;
  color: rgba(15,23,42,.72);
  font-size: 17px;
  line-height:1.65;
}

/* blog list */
.section-blog-list{
  padding: 28px 0 54px;
}

.blog-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.blog-card{
  background: rgba(255,255,255,.9);
  border:1px solid rgba(15,23,42,.10);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(15,23,42,.05);
  overflow:hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.blog-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15,23,42,.08);
  border-color: rgba(47,111,62,.18);
}

.blog-card__image-link{
  display:block;
  aspect-ratio: 16 / 7.5;
  background: linear-gradient(90deg, rgba(47,111,62,.12), rgba(225,177,91,.14));
  overflow:hidden;
}

.blog-card__image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.blog-card__body{
  padding: 14px 16px 16px;
}

.blog-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  margin-bottom: 10px;
  color: rgba(15,23,42,.46);
  font-size: 13px;
  line-height:1.3;
}

.blog-card__title{
  margin:0 0 10px 0;
  font-size: 22px;
  line-height:1.24;
  font-weight: 900;
  color: rgba(15,23,42,.92);
}

.blog-card__title a{
  color: inherit;
  text-decoration:none;
}

.blog-card__title a:hover{
  color: var(--brand);
}

.blog-card__excerpt{
  margin:0 0 14px 0;
  color: rgba(15,23,42,.58);
  font-size: 15px;
  line-height:1.62;
}

.blog-card__readmore{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight: 900;
  color: #20b98e;
  text-decoration:none;
  border-bottom: 2px solid rgba(32,185,142,.25);
  padding-bottom: 2px;
}

.blog-card__readmore:hover{
  color: #149f79;
  border-bottom-color: rgba(32,185,142,.55);
}

/* post */
.section-blog-post{
  padding: 26px 0 20px;
}

.container--narrow{
  max-width: 900px;
}

.breadcrumbs{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  margin-bottom:18px;
  color: rgba(15,23,42,.46);
  font-size: 14px;
}

.breadcrumbs a{
  color: rgba(15,23,42,.58);
  text-decoration:none;
}

.breadcrumbs a:hover{
  color: var(--brand);
}

.post-header{
  margin-bottom: 18px;
}

.post-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  margin-bottom:10px;
  color: rgba(15,23,42,.48);
  font-size: 14px;
}

.post-title{
  margin:0 0 12px 0;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: clamp(32px, 5vw, 52px);
  line-height:1.06;
  letter-spacing:-.02em;
}

.post-excerpt{
  margin:0;
  font-size: 18px;
  line-height:1.72;
  color: rgba(15,23,42,.66);
  max-width: 760px;
}

.post-cover{
  margin: 0 0 24px 0;
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.08);
  box-shadow: 0 14px 36px rgba(15,23,42,.06);
}

.post-cover img{
  width:100%;
  display:block;
  max-height: 480px;
  object-fit:cover;
}

.post-content{
  color: rgba(15,23,42,.84);
  font-size: 17px;
  line-height: 1.82;
}

.post-content p{
  margin: 0 0 16px 0;
}

.post-content h2{
  margin: 34px 0 14px 0;
  font-size: 28px;
  line-height:1.2;
  font-weight: 900;
  color: rgba(15,23,42,.96);
}

.post-content h3{
  margin: 24px 0 12px 0;
  font-size: 22px;
  line-height:1.25;
  font-weight: 850;
}

.post-content ul{
  margin: 0 0 18px 20px;
  padding:0;
}

.post-content li{
  margin-bottom: 10px;
}

.post-content strong{
  color: rgba(15,23,42,.95);
}

.section-recent-posts{
  padding: 18px 0 54px;
}

.section-heading{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom: 16px;
}

.section-heading h2{
  margin:0;
  font-size: 28px;
  font-weight: 900;
}

.section-heading__link{
  color: #20b98e;
  font-weight: 900;
  text-decoration:none;
  border-bottom: 2px solid rgba(32,185,142,.25);
  padding-bottom:2px;
}

.blog-grid--recent .blog-card__title{
  font-size: 18px;
  line-height:1.3;
}

.blog-grid--recent .blog-card__excerpt{
  font-size: 14px;
  line-height:1.55;
  margin-bottom: 0;
}

@media (min-width: 760px){
  .blog-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (min-width: 1180px){
  .blog-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (max-width: 759px){
  .page-hero--soft{
    padding: 24px 0 14px;
  }

  .blog-card__title{
    font-size: 20px;
  }

  .post-title{
    font-size: 32px;
  }

  .post-excerpt{
    font-size: 16px;
  }

  .post-content{
    font-size: 16px;
  }

  .post-content h2{
    font-size: 24px;
  }

  .section-heading{
    flex-direction:column;
    align-items:flex-start;
  }
}
/* =========================
   HOLISTIC TOUCH FINAL PATCH
   ========================= */

.brand-logo{
  width: 38px;
  height: 38px;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
}

.footer-logo{
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: transparent;
}

.btn-secondary{
  background: linear-gradient(90deg, rgba(225,177,91,.95), rgba(199,146,49,.95));
  color: #0b1220;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 10px 22px rgba(15,23,42,.08);
}

.btn-secondary:hover{
  filter: brightness(.98);
}

.device-mobile .header-row{
  min-height: 62px;
}

.device-mobile .brand-name{
  font-size: 18px;
}

.device-mobile .hero-v2-title{
  font-size: clamp(34px, 10vw, 52px) !important;
}

.device-mobile .hero-v2-subtitle{
  font-size: 16px !important;
  line-height: 1.6 !important;
}

.device-mobile .hero-v2-text p,
.device-mobile .about-lite .about-text p{
  font-size: 15px !important;
  line-height: 1.72 !important;
}

.device-mobile .hero-v2-actions .btn,
.device-mobile .service-feature-actions .btn,
.device-mobile .services-page-actions .btn,
.device-mobile .service-single-actions .btn{
  min-height: 48px;
  width: 100%;
  justify-content: center;
}

.device-mobile .services-home-head{
  align-items: flex-start;
}

.device-mobile .services-home-head > div:last-child{
  width: 100%;
}

.device-mobile .services-home-head > div:last-child .btn{
  width: 100%;
}

.device-mobile .service-feature-title,
.device-mobile .services-page-title{
  font-size: 28px !important;
}

.device-mobile .service-feature-desc,
.device-mobile .services-page-desc,
.device-mobile .service-single-short{
  font-size: 15px !important;
}

.device-mobile .section-title{
  font-size: 34px !important;
}

.device-mobile .mobile-menu{
  width: min(88vw, 390px);
  border-top-left-radius: 22px;
  border-bottom-left-radius: 22px;
}

.device-mobile .mobile-menu__nav a{
  font-size: 20px;
  padding: 14px 10px;
}

.device-mobile.platform-ios .btn{
  min-height: 50px;
}

.device-mobile.platform-android .btn{
  min-height: 48px;
}
/* ============ ABOUT PAGE ============ */
.about-page{
  padding-top: 12px;
}

.about-page-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.about-page-image{
  height: 420px;
}

.about-philosophy-card{
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.about-philosophy-title{
  margin-bottom: 16px;
}

@media (min-width: 901px){
  .about-page-grid{
    grid-template-columns: minmax(360px, 480px) minmax(0, 1fr);
    gap: 44px;
  }

  .about-page-image{
    height: 680px;
  }
}

@media (max-width: 640px){
  .about-page-image{
    height: 320px;
  }
}
/* ============ PAGE UTILITIES ============ */
.page-pad{ padding: 28px 0 50px; }
.page-narrow{ max-width: 1060px; margin-left: auto; margin-right: auto; }

.page-title{
  margin: 0 0 10px 0;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: -.02em;
}