:root {
  --border: oklch(90% 0.01 335);
  --radius: 10px;
  --color-apple: oklch(72.73% 0.16119 117.315);
  --color-apple-light: oklch(86.571% 0.20268 121.772) ;
  --color-berry: oklch(39.647% 0.13818 346.827);
  --color-berry-light: oklch(47.265% 0.17524 347.076);
  --color-pink: oklch(67.749% 0.19287 346.582);
  --color-plum-dark: oklch(26.345% 0.05985 321.698);
  --color-plum-darker: oklch(16% 0.06 335);
  --color-background: oklch(98% 0.004 340);
  --color-background-alt: oklch(95% 0.008 340);
  --color-text: oklch(20% 0.015 335);
  --color-text-soft: oklch(38% 0.02 335);
  --color-text-on-dark: oklch(97% 0.01 335);
  --color-text-on-dark-soft: oklch(85.024% 0.02062 335.48 / 0.8);
  --font-display: "Oswald", sans-serif;
  /*--font-body: "Nunito Sans", sans-serif;*/
  --font-body: "Mulish", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-background);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0;
}
p { margin: 0; line-height: 1.6; }
a { color: var(--color-berry); text-decoration: none; }
a:hover { color: var(--color-berry-light); text-decoration: underline; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(28% 0.08 335);
  border-bottom: 1px solid oklch(34% 0.08 335);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text-on-dark);
  flex: 1;
}
.brand:hover { color: var(--color-text-on-dark); text-decoration: none; }
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-berry) url("../img/logo.jpg") center/cover no-repeat;
  flex-shrink: 0;
}
.brand-text {
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.nav {
  display: flex;
  gap: 28px;
}
.nav a {
  color: var(--color-text-on-dark-soft);
  font-size: 14.5px;
  font-weight: 600;
  white-space: nowrap;
}
.nav a:hover { color: var(--color-text-on-dark); text-decoration: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--color-text-on-dark);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--color-berry);
  color: var(--color-text-on-dark);
}
.btn-primary:hover { background: var(--color-berry-light); color: var(--color-text-on-dark); }
.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--color-berry); color: var(--color-berry); }
.hero .btn-ghost {
  color: var(--color-text-on-dark);
  border-color: var(--color-text-on-dark-soft);
}
.hero .btn-ghost:hover {
  color: var(--color-text-on-dark);
  border-color: var(--color-text-on-dark);
}
.btn-call {
  background: var(--color-berry);
  color: var(--color-text-on-dark);
  padding: 10px 18px;
  font-size: 14px;
}
.btn-call:hover { background: var(--color-berry-light); color: var(--color-text-on-dark); }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--color-plum-dark), var(--color-plum-darker));
  color: var(--color-text-on-dark);
  padding: 48px 0 48px;
}
.hero-portrait {
  background: linear-gradient(160deg, var(--color-berry), var(--color-plum-darker));
}
.hero-inner {
  max-width: 760px; 
}

.hr-separator-bottom {
  border-bottom: 8px solid var(--color-apple);
}

.eyebrow {
  font-weight: 700;
  color: oklch(80% 0.1 338);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 14px;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(32px, 5.5vw, 52px);
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero-text {
  color: var(--color-text-on-dark-soft);
  font-size: 17px;
  max-width: 620px;
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}
.hero-facts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  color: var(--color-text-on-dark-soft);
  font-size: 14.5px;
  font-weight: 600;
  border-top: 1px solid oklch(35% 0.07 335);
  padding-top: 20px;
}

.hero .portrait {
  display: flex;
  justify-content: center;
  padding: 0;
}
.hero .portrait img {
  width: min(100%, 320px);
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}


/* Hero Table */
div.table-row {
  display: flex;
  width: 100%;
  padding-bottom: 30px;
}
div.table-cell-1 {
  width: 70%;
  padding-right: 20px;
  border: 0;
  line-height: 1.7;
}
div.table-cell-2 {
  width: 30%;
  padding: 0px;
  border: 0;
  display: flex;
  justify-content: flex-end; 
  align-items: flex-start; 
}
div.table-cell-2 img {
  margin-top: 0px;
  height: auto;
  width: 100%;
  max-width: 140px;
}

/* Sections */
.section { padding: 40px 0; }
.section h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  margin-bottom: 12px;
}
.section-lead {
  color: var(--color-text-soft);
  max-width: 560px;
  margin-bottom: 32px;
  font-size: 16px;
}
.section-accent {
  background: var(--color-berry);
  color: var(--color-text-on-dark);
}
.section-accent h2 { color: var(--color-text-on-dark); margin-bottom: 24px; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.card {
  background: var(--color-background-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--color-berry);
}
.card p { color: var(--color-text-soft); font-size: 15px; }

.chip-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip-list li {
  background: oklch(97% 0.01 340 / 0.15);
  border: 1px solid oklch(97% 0.01 340 / 0.35);
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.two-col h2 { margin-bottom: 20px; }

.hours-table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.hours-table th {
  font-weight: 700;
  width: 130px;
}
.note {
  color: var(--color-text-soft);
  font-size: 14.5px;
  margin-bottom: 12px;
}

.contact-card {
  font-style: normal;
  line-height: 1.7;
  font-size: 15.5px;
  background: var(--color-background-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 20px;
}

/* Footer */
.site-footer {
  background: var(--color-plum-darker);
  color: var(--color-text-on-dark-soft);
  padding: 48px 0 32px;
  font-size: 14.5px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid oklch(32% 0.07 335);
  margin-bottom: 20px;
}
.footer-top a { color: var(--color-text-on-dark); }
.site-footer strong { color: var(--color-text-on-dark); }

.legal { border-top: 1px solid oklch(32% 0.07 335); padding: 14px 0; }
.legal summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--color-text-on-dark);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.legal-body { padding-top: 16px; display: grid; gap: 12px; max-width: 720px; }
.legal-body p { font-size: 14px; color: var(--color-text-on-dark-soft); }
.legal-body strong { color: var(--color-text-on-dark); }
.legal-body a { color: oklch(80% 0.1 338); }
.placeholder-note { font-style: italic; opacity: 0.7; }

.copyright {
  margin-top: 24px;
  font-size: 13px;
  opacity: 0.7;
}

/* Mobile */
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 720px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-plum-dark);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 16px;
    display: none;
    border-bottom: 1px solid oklch(30% 0.08 335);
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; border-top: 1px solid oklch(30% 0.08 335); }
  .nav a:first-child { border-top: none; }
  .header-call { display: none; }
  .nav-toggle { display: flex; }
}
