/* VM Dental Clinic — lightweight, responsive, no framework */
:root{
  --bg: #f8f7f4;
  --surface: #ffffff;
  --text: #141414;
  --muted: #5f6368;
  --border: rgba(20,20,20,.10);
  --shadow: 0 12px 40px rgba(20,20,20,.08);
  --shadow-sm: 0 8px 24px rgba(20,20,20,.06);
  --shadow-gold: 0 10px 28px rgba(168,134,63,.22);

  --gold: #c6a15b;
  --gold-light: #dcc18a;
  --gold-2: #a8863f;
  --gold-deep: #8f6f3a;
  --accent: var(--gold);

  --radius-lg: 18px;
  --radius-md: 16px;
  --radius-sm: 14px;

  --container: 1160px;
  --pad: 24px;

  --space-xs: 10px;
  --space-sm: 14px;
  --space-md: 20px;
  --space-lg: 28px;
  --space-xl: 36px;
}

*{ box-sizing: border-box; }
html{
  scroll-behavior: smooth;
  overflow-x: clip;
  width: 100%;
}
body{
  margin: 0;
  width: 100%;
  overflow-x: clip;
  font-family: "Noto Sans Georgian", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 10% 0%, rgba(198,161,91,.16), transparent 55%),
              radial-gradient(1000px 600px at 90% 10%, rgba(198,161,91,.10), transparent 60%),
              var(--bg);
  color: var(--text);
  line-height: 1.55;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button, input, select, textarea{ font: inherit; }

.container{
  width: min(var(--container), calc(100% - var(--pad) * 2));
  margin: 0 auto;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:10px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  z-index: 9999;
}
.skip-link:focus{ left: 12px; }

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  background: rgba(248,247,244,.92);
  border-bottom: 1px solid rgba(20,20,20,.06);
}
.topbar{
  background: linear-gradient(165deg, #b89452 0%, var(--gold-2) 48%, #8f6f3a 100%);
  color: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.topbar__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 5px 0;
  min-height: 30px;
}
.topbar__phone{
  font-size: 12.5px;
  line-height: 1.2;
  color: rgba(255,255,255,.92);
  letter-spacing: .1px;
  white-space: nowrap;
}
.topbar__phone strong{
  font-weight: 650;
  color: #ffffff;
}
.topbar__phone:hover{
  color: #ffffff;
}
.topbar__langs{
  display: flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}
.topbar__lang{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 22px;
  padding: 0 7px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .3px;
  color: rgba(255,255,255,.88);
  border: 1px solid transparent;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.topbar__lang:hover{
  color: #ffffff;
  background: rgba(255,255,255,.12);
}
.topbar__lang.is-active{
  color: #ffffff;
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.35);
}
.topbar__lang.is-disabled{
  opacity: .5;
  cursor: default;
  pointer-events: none;
}
.header__main{
  backdrop-filter: blur(10px);
}
.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  min-width: 0;
}
.brand{
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 1 1 auto;
}
.brand__logo{
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: none;
  border: 1px solid rgba(20,20,20,.08);
  background: rgba(255,255,255,.90);
}
.brand__title{
  display: grid;
  gap: 4px;
  line-height: 1.35;
  min-width: 0;
  padding: 2px 0;
}
.brand__title b{
  letter-spacing: .2px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.brand__title span{
  font-size: 13.5px;
  line-height: 1.35;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav{
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav a{
  font-size: 14px;
  color: rgba(20,20,20,.78);
  padding: 10px 16px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.nav a:hover{
  background: rgba(198,161,91,.14);
  color: rgba(20,20,20,.92);
}
.nav a[aria-current="page"]{
  background: rgba(198,161,91,.20);
  color: rgba(20,20,20,.92);
}

.header__cta{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}
.pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: rgba(20,20,20,.78);
  font-size: 13px;
}
.pill strong{ color: rgba(20,20,20,.92); font-weight: 650; }

.btn{
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  min-height: 48px;
  border-radius: 14px;
  font-weight: 650;
  font-size: 14.5px;
  letter-spacing: .35px;
  transition: transform .12s ease, box-shadow .2s ease, filter .2s ease, background .2s ease;
  user-select: none;
}
.btn:active{ transform: translateY(1px); }
.btn--primary{
  background: linear-gradient(165deg, var(--gold-light) 0%, var(--gold) 42%, var(--gold-2) 100%);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,.28);
}
.btn--primary:hover{
  filter: brightness(1.05);
  color: #ffffff;
  box-shadow: 0 14px 36px rgba(168,134,63,.30), inset 0 1px 0 rgba(255,255,255,.32);
  transform: translateY(-1px);
}
.btn--ghost{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(198,161,91,.22);
  color: rgba(20,20,20,.88);
  padding: 13px 24px;
  box-shadow: 0 4px 14px rgba(20,20,20,.04);
}
.btn--ghost:hover{
  background: rgba(255,255,255,.96);
  border-color: rgba(198,161,91,.38);
  box-shadow: 0 8px 22px rgba(20,20,20,.06);
}

.burger{
  display: none;
  flex-direction: column;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.70);
  cursor: pointer;
  padding: 0;
}
.burger span{
  display:block;
  width: 20px;
  height: 2px;
  background: rgba(20,20,20,.75);
  margin: 4px auto;
  border-radius: 9px;
}

/* Hero */
.hero{
  padding: 42px 0 16px;
}
.hero__grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 32px;
  align-items: stretch;
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.86));
  border: 1px solid rgba(198,161,91,.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.hero__left{
  padding: 36px 32px;
  overflow: hidden;
  position: relative;
}
.hero__left:before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(700px 220px at 10% 0%, rgba(198,161,91,.28), transparent 55%),
    radial-gradient(540px 220px at 90% 10%, rgba(198,161,91,.18), transparent 55%);
  opacity: .70;
  pointer-events:none;
}
.hero__left > *{ position: relative; }
.kicker{
  display:flex;
  align-items:center;
  gap:10px;
  color: rgba(20,20,20,.72);
  font-size: 13px;
}
.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: none;
}
h1{
  margin: 10px 0 10px;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.08;
  letter-spacing: .2px;
  font-family: "Noto Serif Georgian", "Noto Sans Georgian", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.section__head h2,
.panel h2,
.panel h3,
.tile h3,
.tile__body h3{
  font-family: "Noto Serif Georgian", "Noto Sans Georgian", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.lead{
  margin: 0;
  color: rgba(20,20,20,.74);
  font-size: 15.5px;
  max-width: 58ch;
}
.hero__actions{
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.mini{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.mini__item{
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(198,161,91,.12);
  background: rgba(255,255,255,.62);
}
.mini__item b{ display:block; font-size: 14px; }
.mini__item span{ display:block; font-size: 12.5px; color: var(--muted); }

.hero__right{
  padding: 0;
  overflow: hidden;
  position: relative;
}
.hero__image{
  height: 100%;
  min-height: 360px;
  width: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
}
.hero__right .overlay{
  position:absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,20,20,.08), rgba(20,20,20,.00) 40%, rgba(20,20,20,.15));
}
.badge{
  position:absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  padding: 18px 20px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.70);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}
.badge b{ display:block; }
.badge span{ display:block; color: rgba(20,20,20,.70); font-size: 12.8px; }

/* Sections */
.section{ padding: 48px 0; }
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.section__head h2{
  margin: 0;
  font-size: 26px;
  letter-spacing: .3px;
}
.section__head p{
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  max-width: 60ch;
}

.grid{
  display:grid;
  gap: 20px;
}
.grid--3{ grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid--2{ grid-template-columns: repeat(2, minmax(0,1fr)); }

.tile{
  padding: 26px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(198,161,91,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.88));
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .22s ease, border-color .22s ease;
}
.tile:hover{
  transform: translateY(-3px);
  border-color: rgba(198,161,91,.32);
  box-shadow: 0 16px 40px rgba(168,134,63,.12);
}
.tile--service{
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}
.tile--service .tile__media{
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid rgba(198,161,91,.10);
  background: rgba(248,247,244,.90);
}
.tile--service .tile__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tile--service .tile__body{
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 22px 24px;
}
.service-cover{
  margin: -32px -28px 20px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  border-bottom: 1px solid rgba(198,161,91,.12);
  background: rgba(248,247,244,.90);
}
.service-cover img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 720px){
  .service-cover{
    margin: -24px -20px 18px;
    aspect-ratio: 16 / 10;
  }
}
.tile__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
}
.chip{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(198,161,91,.12);
  border: 1px solid rgba(198,161,91,.24);
  color: rgba(20,20,20,.82);
  font-size: 12.5px;
  white-space: nowrap;
}
.tile h3{
  margin: 12px 0 6px;
  font-size: 16.5px;
}
.tile p{
  margin: 0;
  color: rgba(20,20,20,.70);
  font-size: 13.5px;
}
.tile--service .tile__body h3{
  margin: 12px 0 6px;
  font-size: 16.5px;
}
.tile--service .tile__body p{
  margin: 0;
  color: rgba(20,20,20,.70);
  font-size: 13.5px;
}
.tile__actions{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items:center;
}
.tile--service .tile__actions{
  margin-top: auto;
  padding-top: 18px;
}
.tile.quote{
  display: grid;
  gap: 10px;
}
.link{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 12px 18px;
  min-height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(198,161,91,.18);
  background: rgba(255,255,255,.72);
  color: rgba(20,20,20,.82);
  font-size: 13.5px;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.link:hover{
  background: rgba(255,255,255,.96);
  border-color: rgba(198,161,91,.32);
  box-shadow: 0 6px 18px rgba(20,20,20,.05);
}

/* Team */
.person{
  display: flex;
  gap: 18px;
  align-items: center;
}
.person__meta{
  flex: 1;
  min-width: 0;
}
.avatar{
  width: 174px;
  height: 174px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(20,20,20,.10);
  background: rgba(255,255,255,.8);
  flex-shrink: 0;
}
.person__meta b{ display:block; font-size: 15px; }
.person__meta span{ display:block; color: var(--muted); font-size: 13px; }
.person__desc{
  margin: 7px 0 0;
  line-height: 1.45;
}
@media (max-width: 720px){
  .avatar{
    width: 132px;
    height: 132px;
  }
  .person{
    gap: 14px;
  }
}

/* Breadcrumbs + page head */
.pagehead{
  padding: 36px 0 12px;
}
.crumbs{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(20,20,20,.70);
  font-size: 13px;
}
.crumbs a{
  color: rgba(20,20,20,.78);
  border-bottom: 1px dashed rgba(20,20,20,.20);
}
.crumbs a:hover{ color: rgba(20,20,20,.92); }
.pagehead h1{ margin: 10px 0 8px; }
.pagehead .lead{ max-width: 70ch; }

/* Content layouts */
.layout{
  display:grid;
  grid-template-columns: 1fr .9fr;
  gap: 28px;
  align-items: stretch;
}
.layout > .panel,
.layout > article.panel,
.layout > aside.panel,
.layout > div.panel{
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.panel{
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(198,161,91,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.90));
  box-shadow: var(--shadow-sm);
}
.layout > .panel > .form:last-child,
.layout > article.panel > form.form:last-of-type{
  flex: 1;
  display: flex;
  flex-direction: column;
}
.layout > .panel > .form:last-child > button[type="submit"],
.layout > article.panel > form.form:last-of-type > button[type="submit"]{
  margin-top: auto;
}
.layout > aside.panel > div:has(.btn),
.layout > aside.panel > a.btn,
.layout > aside.panel > .btn{
  margin-top: auto;
  width: fit-content;
}
.layout > aside.panel > div:has(.btn){
  width: 100%;
}
.layout > article.panel > div:has(.btn):last-of-type{
  margin-top: auto;
}
.panel h2, .panel h3{ margin: 0 0 14px; }
.panel p{ margin: 0 0 14px; color: rgba(20,20,20,.74); }
.list{
  margin: 0;
  padding: 0 0 0 18px;
  color: rgba(20,20,20,.74);
}
.list li{ margin: 8px 0; }

/* Appointment */
.form{
  display:grid;
  gap: 18px;
}
.field{
  display:grid;
  gap: 8px;
}
.field label{
  font-size: 13px;
  color: rgba(20,20,20,.80);
}
.control{
  border-radius: 14px;
  border: 1px solid rgba(198,161,91,.16);
  background: rgba(255,255,255,.94);
  padding: 14px 18px;
  min-height: 50px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.control:focus{
  border-color: rgba(198,161,91,.55);
  box-shadow: 0 0 0 4px rgba(198,161,91,.16);
}
select.control,
select.lang{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 48px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 18px 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235f6368' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
select.control{
  background-color: rgba(255,255,255,.94);
}
select.lang{
  background-color: rgba(255,255,255,.78);
  padding-right: 40px;
  background-position: right 14px center;
}
.hint{
  color: var(--muted);
  font-size: 12.5px;
}
.row{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.check{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(198,161,91,.14);
  background: rgba(255,255,255,.78);
}
.check input{ margin-top: 2px; }
.check span{
  font-size: 12.5px;
  color: rgba(20,20,20,.78);
}
.toast{
  display:none;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(46,125,50,.25);
  background: rgba(46,125,50,.10);
  color: rgba(20,20,20,.86);
}
.toast.is-visible{ display:block; }

/* Modal */
.modal{
  position: fixed;
  inset: 0;
  display:none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(10,10,10,.55);
  z-index: 80;
}
.modal.is-open{ display:flex; }
.modal__card{
  width: min(720px, 100%);
  max-height: min(86vh, 900px);
  overflow:auto;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.60);
  box-shadow: 0 18px 60px rgba(0,0,0,.20);
}
.modal__head{
  display:flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(20,20,20,.08);
}
.modal__head b{ font-size: 16px; }
.iconbtn{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(20,20,20,.10);
  background: rgba(255,255,255,.82);
  cursor: pointer;
}
.modal__body{ padding: 16px 18px 18px; }

/* Footer — full width gold, content in container */
.footer{
  width: 100%;
  max-width: 100%;
  margin-top: 16px;
  margin-inline: 0;
  padding: 52px 0 36px;
  padding-bottom: calc(36px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(165deg, #b89452 0%, var(--gold-2) 48%, #8f6f3a 100%);
  color: rgba(255,255,255,.92);
  border-top: 1px solid rgba(255,255,255,.12);
  box-sizing: border-box;
}
main{
  max-width: 100%;
  overflow-x: clip;
}
.footer__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.footer__col{
  display:grid;
  gap: 10px;
  align-content: start;
}
.footer__brand{
  display:flex;
  align-items:center;
  gap: 14px;
}
.footer__logo{
  width: 72px;
  height: 72px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.12);
}
.footer__brand b{
  display:block;
  font-size: 15px;
  font-family: "Noto Serif Georgian", "Noto Sans Georgian", system-ui, sans-serif;
}
.footer__brand span{
  display:block;
  font-size: 12.5px;
  color: rgba(255,255,255,.78);
  margin-top: 2px;
}
.footer__title{
  display:block;
  margin-bottom: 4px;
  font-size: 14px;
  font-family: "Noto Serif Georgian", "Noto Sans Georgian", system-ui, sans-serif;
  letter-spacing: .3px;
}
.footer__text{
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255,255,255,.88);
}
.footer__text--muted{ color: rgba(255,255,255,.72); font-size: 13px; }
.footer__nav{
  display:grid;
  gap: 8px;
}
.footer__nav a{
  color: rgba(255,255,255,.90);
  font-size: 14px;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: border-color .15s ease, color .15s ease;
  width: fit-content;
}
.footer__nav a:hover{
  color: #ffffff;
  border-bottom-color: rgba(255,255,255,.45);
}
.footer__bottom{
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.footer__bottom small{
  color: rgba(255,255,255,.70);
  font-size: 12.5px;
}

/* Google Map */
.map{
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(198,161,91,.14);
  background: rgba(255,255,255,.84);
  min-height: 360px;
  box-shadow: var(--shadow-sm);
}
.map iframe{
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

/* Mobile */
@media (max-width: 960px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__right .badge{ left: 14px; right: 14px; bottom: 14px; }
  .grid--3{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .layout{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 1024px){
  .nav{ display: none; }
  .burger{
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 720px){
  :root{ --pad: 16px; }
  .footer{
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
  }
  .footer > .container{
    width: min(var(--container), calc(100% - var(--pad) * 2));
    margin-inline: auto;
  }
  .section__head{
    flex-direction: column;
    align-items: flex-start;
  }
  .header__inner{
    gap: 10px;
    padding: 12px 0;
  }
  .header__cta > .btn{
    display: none;
  }
  .topbar__inner{
    padding: 4px 0;
    min-height: 28px;
  }
  .topbar__phone{
    font-size: 12px;
  }
  .topbar__lang{
    min-width: 26px;
    height: 20px;
    padding: 0 6px;
    font-size: 10.5px;
  }
  .mini{ grid-template-columns: 1fr; }
  .grid--3, .grid--2{ grid-template-columns: 1fr; }
  .row{ grid-template-columns: 1fr; }
  .brand__logo{ width: 68px; height: 68px; }
  .brand__title b{ font-size: 15px; }
  .brand__title span{ font-size: 12.5px; }
}
@media (max-width: 420px){
  .brand__title span{ display: none; }
  .brand__title b{ font-size: 14px; }
  .brand__logo{ width: 60px; height: 60px; }
  .brand{ gap: 10px; }
  .topbar__phone strong{
    display: none;
  }
}

/* Mobile drawer — slides in from the right */
.drawer{
  display: none;
}
@media (max-width: 1024px){
  .drawer{
    display: none;
    position: fixed;
    inset: 0;
    z-index: 75;
    background: rgba(10,10,10,.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity .24s ease;
  }
  .drawer.is-open{
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
  .drawer__panel{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 92vw);
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,.98);
    border-left: 1px solid rgba(198,161,91,.18);
    box-shadow: -12px 0 48px rgba(0,0,0,.18);
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.4,0,.2,1);
    overflow: hidden auto;
  }
  .drawer.is-open .drawer__panel{
    transform: translateX(0);
    visibility: visible;
  }
  .drawer:not(.is-open) .drawer__panel{
    visibility: hidden;
  }
  .drawer__panel header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(20,20,20,.08);
    flex-shrink: 0;
  }
  .drawer__panel header b{
    font-size: 16px;
  }
  .drawer__panel nav{
    display: grid;
    grid-auto-rows: auto;
    align-content: start;
    padding: 12px 16px;
    gap: 6px;
    flex: 0 0 auto;
  }
  .drawer__panel nav a{
    display: flex;
    align-items: center;
    padding: 10px 12px;
    min-height: 0;
    line-height: 1.3;
    border-radius: 12px;
    border: 1px solid rgba(20,20,20,.08);
    background: rgba(248,247,244,.85);
    font-size: 14.5px;
    font-weight: 550;
  }
  .drawer__panel nav a[aria-current="page"]{
    background: rgba(198,161,91,.18);
    border-color: rgba(198,161,91,.32);
  }
  .drawer__panel .actions{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 16px 24px;
    margin-top: auto;
    flex-shrink: 0;
    border-top: 1px solid rgba(20,20,20,.06);
  }
  .drawer__panel .actions .btn{
    width: 100%;
  }
}

/* Language switcher */
.lang{
  border-radius: 14px;
  border: 1px solid rgba(198,161,91,.18);
  background: rgba(255,255,255,.78);
  padding: 12px 16px;
  height: 48px;
  color: rgba(20,20,20,.82);
}

/* Blog / news */
.post-list{
  display: grid;
  gap: 22px;
}
.post-card{
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  gap: 22px;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(198,161,91,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.90));
  box-shadow: var(--shadow-sm);
}
.post-card__media{
  display: block;
  overflow: hidden;
  min-height: 100%;
}
.post-card__media img{
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
}
.post-card__body{
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.post-card__date{
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 8px;
}
.post-card__body h2{
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.25;
}
.post-card__body h2 a{
  color: inherit;
}
.post-card__body h2 a:hover{
  color: var(--gold-2);
}
.post-card__body p{
  margin: 0 0 14px;
  color: rgba(20,20,20,.74);
  font-size: 14px;
  line-height: 1.55;
}
.post-content p{
  margin: 0 0 14px;
  color: rgba(20,20,20,.76);
  font-size: 15px;
  line-height: 1.65;
}
.post-content p:last-child{
  margin-bottom: 0;
}
.page-404{
  padding-top: 24px;
  padding-bottom: 48px;
}
.page-404__card{
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 32px;
}
.page-404__code{
  margin: 0 0 8px;
  font-size: clamp(56px, 12vw, 88px);
  line-height: 1;
  font-weight: 800;
  color: rgba(198,161,91,.35);
  font-family: "Noto Serif Georgian", "Noto Sans Georgian", system-ui, sans-serif;
}
.page-404__card h1{
  margin: 0 0 10px;
}
.page-404__card .lead{
  margin: 0 auto 22px;
}
.page-404__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 720px){
  .post-card{
    grid-template-columns: 1fr;
  }
  .post-card__media img{
    min-height: 200px;
  }
}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
}
.gallery__big{
  border-radius: var(--radius-lg);
  overflow:hidden;
  border: 1px solid rgba(20,20,20,.08);
  background: rgba(255,255,255,.84);
}
.gallery__big img{ width: 100%; height: 100%; object-fit: cover; min-height: 340px; }
.gallery__side{
  display:grid;
  gap: 14px;
}
.gallery__side .gallery__big img{ min-height: 163px; }
@media (max-width: 960px){
  .gallery{ grid-template-columns: 1fr; }
  .gallery__big img{ min-height: 260px; }
}

/* Testimonials */
.quote p{
  margin: 0;
  color: rgba(20,20,20,.74);
  font-size: 14px;
}
.stars{ color: rgba(168,134,63,.95); letter-spacing: 2px; font-size: 14px; }

/* Appointment scheduler */
.scheduler{
  display:grid;
  gap: 14px;
}
.calendar{
  border: 1px solid rgba(198,161,91,.14);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.90));
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}
.calendar__head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.calendar__head b{
  font-family: "Noto Serif Georgian", "Noto Sans Georgian", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.cal-nav{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(20,20,20,.72);
  cursor: pointer;
  border-radius: 8px;
  transition: color .15s ease, background .15s ease;
}
.cal-nav svg{
  width: 22px;
  height: 22px;
  display: block;
}
.cal-nav:hover{
  color: var(--gold-2);
  background: rgba(198,161,91,.10);
}
.cal-nav:active{
  transform: translateY(1px);
}
.cal-nav:disabled{
  opacity: .35;
  cursor: not-allowed;
}
.calendar__grid{
  display:grid;
  grid-template-columns: repeat(7, minmax(0,1fr));
  gap: 8px;
}
.dow{
  font-size: 12px;
  color: rgba(20,20,20,.60);
  text-align:center;
  padding: 6px 0;
}
.day{
  position: relative;
  border: 1px solid rgba(198,161,91,.14);
  background: rgba(255,255,255,.88);
  border-radius: 14px;
  padding: 14px 12px 12px;
  cursor: pointer;
  text-align: left;
  min-height: 58px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.day:hover{
  border-color: rgba(198,161,91,.38);
  box-shadow: 0 6px 16px rgba(168,134,63,.10);
}
.day[disabled]{ opacity: .50; cursor: not-allowed; }
.day.is-selected{
  border-color: rgba(198,161,91,.65);
  background: rgba(198,161,91,.14);
}
.day__num{
  display: block;
  font-weight: 650;
  font-size: 15px;
  line-height: 1.1;
  padding-right: 14px;
}
.day__status{
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  z-index: 1;
}
.day__status .dot2{
  display: block;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}
.day__meta{
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(20,20,20,.68);
  white-space: nowrap;
  line-height: 1;
}
.day__seats{
  font-weight: 650;
}
.day__clock-icon{
  width: 14px;
  height: 14px;
  color: rgba(20,20,20,.55);
  flex-shrink: 0;
}
.legend{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(20,20,20,.70);
  font-size: 12.5px;
}
.tag{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(198,161,91,.16);
  background: rgba(255,255,255,.80);
}
.dot2{ width: 10px; height: 10px; border-radius: 999px; flex-shrink: 0; }
.dot2--free{ background: rgba(46,125,50,.75); }
.dot2--busy{ background: rgba(229,57,53,.75); }
.legend__clock{
  width: 14px;
  height: 14px;
  color: rgba(20,20,20,.55);
  flex-shrink: 0;
}
.slots{
  border: 1px solid rgba(198,161,91,.14);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.90));
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}
.slots__grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 10px;
}
.slot{
  border: 1px solid rgba(198,161,91,.14);
  background: rgba(255,255,255,.88);
  border-radius: 14px;
  padding: 14px 12px;
  min-height: 48px;
  cursor: pointer;
  text-align:center;
  font-weight: 600;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.slot:hover{ border-color: rgba(198,161,91,.40); }
.slot[disabled]{ opacity: .50; cursor: not-allowed; text-decoration: line-through; }
.slot.is-selected{
  border-color: rgba(198,161,91,.65);
  background: linear-gradient(180deg, rgba(220,193,138,.22), rgba(198,161,91,.16));
  box-shadow: 0 6px 18px rgba(168,134,63,.14);
}
@media (max-width: 720px){
  .slots__grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .calendar{
    padding: 16px 12px;
  }
  .legend{
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }
  .legend .tag{
    display: flex;
    width: 100%;
    box-sizing: border-box;
    border-radius: 12px;
    justify-content: flex-start;
  }
  .calendar__grid{
    gap: 5px;
  }
  .day{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 8px 4px 10px;
    min-height: 0;
    border-radius: 12px;
  }
  .day__status{
    position: static;
    width: auto;
    height: auto;
    margin-bottom: 2px;
  }
  .day__num{
    padding-right: 0;
    font-size: 14px;
  }
  .day__meta{
    margin-top: 4px;
    justify-content: center;
  }
  .day__seats{
    font-size: 11px;
    font-weight: 600;
    color: rgba(20,20,20,.62);
  }
  .day__clock-icon{
    display: none;
  }
}

