

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500&display=swap');

:root {
  --bg:           #F5F0E8;
  --bg-alt:       #EDE8DE;
  --bg-dark:      #1A1916;
  --ink:          #1A1916;
  --ink-muted:    #6B6152;
  --sage:         #7A8B6D;
  --amber:        #C09A6A;
  --border:       #DDD6C8;
  --cream:        #FDFAF5;

  --f-head: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --w: 1140px;
  --px: 1.5rem;

  --s1: 0.5rem;
  --s2: 1rem;
  --s3: 1.5rem;
  --s4: 2.5rem;
  --s5: 4rem;
  --s6: 6rem;
  --s7: 8rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img   { display: block; max-width: 100%; }
a     { color: inherit; text-decoration: none; }
address { font-style: normal; }
ul, ol  { list-style: none; }

.container {
  max-width: var(--w);
  margin-inline: auto;
  padding-inline: var(--px);
}

h1, h2, h3, h4, h5 {
  font-family: var(--f-head);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.75rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.6rem); }
p  {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-muted);
}

.label {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--s2);
}

.sec-head       { margin-bottom: var(--s5); max-width: 620px; }
.sec-head h2    { margin-top: var(--s1); }
.sec-head p     { margin-top: var(--s2); font-size: 1.05rem; }
.sec-head--c    { text-align: center; margin-inline: auto; }

.divider {
  width: 40px;
  height: 1px;
  background: var(--amber);
  margin: var(--s2) 0 var(--s3);
}

.btn {
  display: inline-block;
  padding: 0.75rem 2.25rem;
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--sage);
  color: var(--cream);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}

.ph {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph span {
  font-family: var(--f-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--border);
  user-select: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-decoration: none;
}
.brand-logo {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--f-head);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ink);
}

.hero {
  padding: var(--s7) 0 var(--s6);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.hero-overline {
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--s3);
}
.hero-body { max-width: 660px; }
.hero-body h1 { margin-bottom: var(--s3); }
.hero-body p {
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: var(--s4);
}

.intro {
  padding: var(--s6) 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5);
  align-items: center;
}
.intro-text { display: flex; flex-direction: column; align-items: flex-start; }
.intro-text h2 { margin-bottom: var(--s2); }
.intro-text p  { margin-bottom: var(--s4); }
.intro-ph { aspect-ratio: 4 / 3; width: 100%; }

.pillars {
  padding: var(--s6) 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
}
.pillar-card {
  padding: var(--s4);
  border: 1px solid var(--border);
}
.pillar-icon {
  width: 32px;
  height: 32px;
  color: var(--sage);
  margin-bottom: var(--s3);
}
.pillar-card h3 { margin-bottom: var(--s1); }

.quote-block {
  padding: var(--s6) 0;
  background: var(--bg-dark);
  border-bottom: 1px solid #2E2B27;
}
.quote-block blockquote {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}
.quote-block blockquote p {
  font-family: var(--f-head);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: var(--s3);
}
.quote-block blockquote cite {
  font-family: var(--f-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
}

.practices {
  padding: var(--s6) 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.practices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
}
.practice-card { display: flex; flex-direction: column; gap: var(--s2); }
.practice-ph   { aspect-ratio: 3 / 4; width: 100%; }
.practice-card h3 { font-size: 1.2rem; }

.gallery {
  padding: var(--s6) 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: var(--s1);
}
.g-cell { width: 100%; height: 100%; }
.g-tall { grid-row: 1 / 3; }

.products {
  padding: var(--s6) 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
}
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
}
.product-ph  { aspect-ratio: 1 / 1; width: 100%; }
.product-body {
  padding: var(--s3);
  display: flex;
  flex-direction: column;
  gap: var(--s1);
  flex: 1;
}
.product-body h3 { font-size: 1.05rem; }
.product-body p  { font-size: 0.9rem; flex: 1; }
.product-price {
  display: block;
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  margin-top: var(--s1);
}
.product-body .btn { margin-top: var(--s2); text-align: center; display: block; }

.testimonials {
  padding: var(--s6) 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
}
.testimonial {
  padding: var(--s4) 0;
  border-top: 2px solid var(--sage);
}
.testimonial p {
  font-family: var(--f-head);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: var(--s2);
}
.testimonial cite {
  font-family: var(--f-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.events {
  padding: var(--s6) 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.events-list {
  border-top: 1px solid var(--border);
}
.event-row {
  display: flex;
  align-items: center;
  gap: var(--s4);
  padding: var(--s4) 0;
  border-bottom: 1px solid var(--border);
}
.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
}
.event-date .day {
  font-family: var(--f-head);
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1;
  color: var(--sage);
}
.event-date .month {
  font-family: var(--f-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.event-info { flex: 1; }
.event-info h3 { font-size: 1.2rem; margin-bottom: 0.2rem; }

.contacts {
  padding: var(--s6) 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
  margin-top: var(--s3);
}
.contact-item { display: flex; flex-direction: column; gap: var(--s2); }
.contact-icon { width: 26px; height: 26px; color: var(--sage); }
.contact-item .contact-label {
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.contact-item a,
.contact-item address {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
}

.site-footer {
  background: var(--bg-dark);
  padding: var(--s5) 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s3);
  text-align: center;
}
.brand--footer .brand-name { color: var(--cream); }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2rem var(--s3);
}
.footer-nav a {
  font-family: var(--f-body);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(253,250,245,0.45);
}
.footer-nav a:hover { color: var(--cream); }
.footer-copy {
  font-family: var(--f-body);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(253,250,245,0.3);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  border-top: 1px solid #2E2B27;
  padding: var(--s3);
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  align-items: center;
  text-align: center;
  max-width: 100%;
  transform: translateY(110%);
  transition: transform 0.3s ease;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner p {
  color: rgba(253,250,245,0.75);
  font-size: 0.9rem;
  margin: 0;
  max-width: 600px;
}
.cookie-banner__buttons {
  display: flex;
  gap: var(--s2);
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-banner .btn {
  padding: 0.6rem 1.8rem;
  font-size: 0.7rem;
}
.cookie-banner .btn-primary {
  background: var(--sage);
  color: var(--cream);
}
.cookie-banner .btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(253,250,245,0.4);
}

@media (max-width: 1024px) {
  .practices-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .g-tall { grid-row: span 1; }
}

@media (max-width: 768px) {
  .intro-grid        { grid-template-columns: 1fr; }
  .pillars-grid      { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contacts-grid     { grid-template-columns: 1fr; }
  .event-row         { flex-direction: column; align-items: flex-start; gap: var(--s2); }
}

@media (max-width: 600px) {
  .practices-grid,
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: 1fr; grid-template-rows: auto; }
  .g-tall        { height: 200px; }
  .hero          { padding: var(--s5) 0; }
}
