/* ========================================
   DİYETİSYEN ŞABLONU — Tasarım tokenları
   Renk, yazı ve ölçüleri buradan değiştirin.
   Tüm sayfalar aynı değişkenleri kullanır.
   ======================================== */

:root {
  --brand: #5cbf70;
  --brand-dark: #45a85a;
  --ink: #2f3330;
  --nav: #4b4f4c;
  --paper: #ffffff;
  --muted: #6a706c;
  --frame: #dcefe2;
  --heading: #1f3a52;

  --font: "Montserrat", system-ui, sans-serif;
  --font-script: "Great Vibes", cursive;

  --container: 1240px;
  --gutter: 24px;
  --topbar-h: 42px;
  --nav-h: 102px;
  --radius: 999px;

  --z-header: 60;
  --z-overlay: 50;
  --z-drawer: 61;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 8px 28px rgb(47 51 48 / 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: inherit;
}

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.header-sentinel {
  height: 1px;
  pointer-events: none;
}

/* ========================================
   HEADER
   ======================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--paper);
}

.site-header.is-scrolled .site-nav {
  box-shadow: var(--shadow);
}

.topbar {
  background: var(--brand);
  color: #fff;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--topbar-h);
}

.topbar__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 22px;
  min-width: 0;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.topbar__item svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.topbar__item--address {
  min-width: 0;
}

.topbar__item--address span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar__item:hover {
  opacity: 0.88;
}

.topbar__social {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.social {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 0.85);
  border-radius: var(--radius);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.social svg {
  width: 12px;
  height: 12px;
}

.social:hover {
  background: rgb(255 255 255 / 0.16);
}

.social:focus-visible,
.topbar__item:focus-visible,
.nav__link:focus-visible,
.brand:focus-visible,
.nav__toggle:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.nav__link:focus-visible,
.brand:focus-visible,
.nav__toggle:focus-visible {
  outline-color: var(--brand);
}

.site-nav {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s var(--ease);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: var(--nav-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand__logo {
  display: block;
  height: calc(var(--nav-h) - 4px);
  width: auto;
  aspect-ratio: 1254 / 836;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px 22px;
}

.nav__link {
  position: relative;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--nav);
  padding: 8px 0;
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--brand);
}

.nav__toggle {
  display: none;
  position: relative;
  z-index: calc(var(--z-drawer) + 1);
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
}

.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav__toggle span::before {
  top: -6px;
}

.nav__toggle span::after {
  top: 6px;
}

.nav__toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav__toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-overlay {
  display: none;
}

/* ========================================
   HERO
   ======================================== */

.hero {
  position: relative;
  background: #fff;
}

.hero__stage {
  position: relative;
  overflow: hidden;
}

.hero__mosaic {
  position: relative;
  height: min(72vh, 720px);
  min-height: 420px;
  background: #fff;
  overflow: hidden;
}

.hero__piece {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero__piece--food {
  background-image: url("../assets/img/hero-food.jpg");
  background-position: 35% 45%;
  clip-path: polygon(0 0, 41% 0, 16% 100%, 0 100%);
}

.hero__piece--center {
  background-image: url("../assets/img/hero-center.jpg");
  background-position: center;
  clip-path: polygon(43.4% 0, 76.2% 0, 51.2% 100%, 18.4% 100%);
}

.hero__piece--center::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(22 28 24 / 0.52);
}

.hero__piece--person {
  background-image: url("../assets/img/hero-dietitian.jpg");
  background-position: 62% 18%;
  clip-path: polygon(78.6% 0, 100% 0, 100% 100%, 53.6% 100%);
}

.hero__copy {
  position: absolute;
  z-index: 4;
  top: 38%;
  left: 47%;
  width: min(42vw, 520px);
  max-width: calc(100% - 40px);
  padding: 0 8px;
  transform: translate(-50%, -42%);
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 16px rgb(0 0 0 / 0.28);
  pointer-events: none;
  overflow-wrap: break-word;
}

.hero__copy h1 {
  margin: 0 0 12px;
  font-size: clamp(20px, 2.6vw, 36px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.25;
}

.hero__lead {
  margin: 0 auto 22px;
  max-width: 36ch;
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 400;
  line-height: 1.55;
}

.hero__sign {
  margin: 0;
  font-family: var(--font-script);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.2;
  font-weight: 400;
  padding-bottom: 4px;
}

.hero__title {
  margin: 4px 0 0;
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ========================================
   HAKKIMDA
   ======================================== */

.about {
  padding: 88px 0 96px;
  background: var(--paper);
  scroll-margin-top: calc(var(--topbar-h) + var(--nav-h) + 8px);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  gap: 48px 80px;
  align-items: start;
}

.about__media {
  position: relative;
  margin: 22px 0 0 22px;
}

.about__frame {
  position: absolute;
  top: -22px;
  left: -22px;
  width: 72%;
  height: 48%;
  background: var(--frame);
  z-index: 0;
}

.about__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 18%;
}

.about__content h2 {
  margin: 0;
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--heading);
  line-height: 1.35;
}

.about__lead {
  margin: 14px 0 22px;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--brand);
}

.about__body {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.about__body p {
  margin: 0 0 16px;
}

.about__body p:last-child {
  margin-bottom: 0;
}

/* ========================================
   HİZMETLERİM
   ======================================== */

.services {
  position: relative;
  padding: 72px 0 88px;
  background: #f6faf6;
  overflow: hidden;
  scroll-margin-top: calc(var(--topbar-h) + var(--nav-h) + 8px);
}

.services::before,
.services::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  pointer-events: none;
  background:
    radial-gradient(circle at 30% 40%, rgb(92 191 112 / 0.14), transparent 62%),
    radial-gradient(circle at 70% 70%, rgb(92 191 112 / 0.08), transparent 55%);
}

.services::before {
  left: -80px;
  bottom: -60px;
}

.services::after {
  right: -70px;
  top: -50px;
}

.services__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
  box-shadow: 0 10px 28px rgb(47 51 48 / 0.07);
}

.service-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e8eee9;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: -26px auto 0;
  background: #fff;
  border: 1px solid #e3e8e3;
  border-radius: 50%;
  color: var(--ink);
  flex-shrink: 0;
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
}

.service-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 14px 18px 22px;
  text-align: center;
}

.service-card h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px 0 12px;
  min-height: 2.7em;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--heading);
}

.service-card p {
  flex: 1;
  margin: 0 0 18px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
}

.service-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: auto;
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.service-card__btn:hover {
  background: var(--brand-dark);
}

.service-card__btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

/* ========================================
   SSS
   ======================================== */

.faq {
  padding: 80px 0 88px;
  background: var(--paper);
  scroll-margin-top: calc(var(--topbar-h) + var(--nav-h) + 8px);
}

.faq__inner {
  max-width: 860px;
}

.faq h2 {
  margin: 0 0 36px;
  text-align: center;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.faq__item {
  border-bottom: 1px solid #e6e8e6;
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
}

.faq__item[open] summary::after {
  content: "-";
}

.faq__item summary:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 4px;
}

.faq__answer {
  padding: 0 40px 20px 0;
}

.faq__answer p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
}

/* ========================================
   BLOG
   ======================================== */

.blog {
  padding: 80px 0 88px;
  background: #f4f7f4;
  scroll-margin-top: calc(var(--topbar-h) + var(--nav-h) + 8px);
}

.blog__heading {
  margin: 0;
  text-align: center;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.blog__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 18px 0 40px;
  color: var(--brand);
}

.blog__rule span {
  width: 48px;
  height: 1px;
  background: var(--brand);
}

.blog__rule svg {
  width: 22px;
  height: 22px;
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
}

.blog-card__media {
  display: block;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #e8eee9;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 4px 8px;
}

.blog-card__meta {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a918c;
}

.blog-card h3 {
  margin: 0 0 10px;
  min-height: 2.7em;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
}

.blog-card h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin-top: 10px;
  background: var(--brand);
}

.blog-card__body > p:not(.blog-card__meta) {
  flex: 1;
  margin: 0 0 16px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
}

.blog-card__btn {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.blog-card__btn:hover {
  background: var(--brand-dark);
}

.blog-card__btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

/* ========================================
   İLETİŞİM
   ======================================== */

.contact {
  padding: 80px 0 88px;
  background: var(--paper);
  scroll-margin-top: calc(var(--topbar-h) + var(--nav-h) + 8px);
}

.contact__heading {
  margin: 0;
  text-align: center;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.contact__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 18px 0 48px;
  color: var(--brand);
}

.contact__rule span {
  width: 48px;
  height: 1px;
  background: var(--brand);
}

.contact__rule svg {
  width: 22px;
  height: 22px;
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 48px 56px;
  align-items: start;
}

.contact__lead {
  margin: 0 0 12px;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--brand);
}

.contact__intro {
  margin: 0 0 28px;
  max-width: 42ch;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.contact__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact__list svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--brand);
}

.contact__list span {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--heading);
}

.contact__list a,
.contact__list p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}

.contact__list a:hover {
  color: var(--brand);
}

.contact-form {
  padding: 32px 28px;
  background: #f6faf6;
  border: 1px solid var(--frame);
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cfd8d1;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--brand);
  outline-offset: 1px;
  border-color: var(--brand);
}

.contact-form__status {
  margin: 0 0 14px;
  padding: 10px 12px;
  background: var(--frame);
  color: var(--heading);
  font-size: 14px;
  line-height: 1.45;
}

.contact-form__status[hidden] {
  display: none;
}

.contact-form__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.contact-form__btn:hover {
  background: var(--brand-dark);
}

.contact-form__btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.site-footer {
  background: #1c3226;
}

.footer__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.footer__panel {
  padding: 56px var(--gutter) 44px;
}

.footer__panel--brand {
  background: var(--paper);
  color: var(--ink);
  padding-left: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  padding-right: clamp(32px, 5vw, 64px);
}

.footer__panel--links {
  background: #1c3226;
  color: #d5e3d8;
  padding-right: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  padding-left: clamp(32px, 5vw, 64px);
}

.footer__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
  max-width: 520px;
}

.footer__brand {
  max-width: 38ch;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer__logo .brand__logo {
  height: calc(var(--nav-h) - 8px);
}

.footer__brand p {
  margin: 0 0 20px;
  max-width: 34ch;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.footer__panel--brand .footer__social .social {
  border-color: rgb(47 51 48 / 0.22);
  color: var(--ink);
}

.footer__panel--brand .footer__social .social:hover {
  background: rgb(92 191 112 / 0.12);
  border-color: var(--brand);
  color: var(--brand-dark);
}

.footer__panel--brand .footer__logo:focus-visible,
.footer__panel--brand .footer__social .social:focus-visible {
  outline-color: var(--brand);
}

.footer__social {
  display: flex;
  gap: 8px;
}

.footer__social .social {
  border-color: rgb(255 255 255 / 0.35);
  color: #fff;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col h2 {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.footer__col a,
.footer__col p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #c5d6c9;
}

.footer__col a:hover {
  color: #fff;
}

.footer__col a:focus-visible,
.footer__social .social:focus-visible,
.footer__logo:focus-visible,
.footer__bar a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.footer__bar {
  border-top: 1px solid rgb(255 255 255 / 0.1);
}

.footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 54px;
  font-size: 13px;
}

.footer__bar p {
  margin: 0;
  color: #a8bdb0;
}

.footer__bar a {
  font-weight: 600;
  color: var(--brand);
}

.footer__bar a:hover {
  color: #fff;
}

/* ========================================
   BLOG DETAY
   ======================================== */

.post-page {
  padding: 36px 0 72px;
  background: #f4f7f4;
}

.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 36px;
  align-items: start;
}

.post-aside {
  position: sticky;
  top: calc(var(--topbar-h) + var(--nav-h) + 16px);
}

.post-aside h2,
.post-more h2 {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--heading);
}

.aside-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aside-card {
  display: grid;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2eae3;
}

.aside-card img {
  width: 100%;
  height: 88px;
  object-fit: cover;
  max-width: none;
}

.aside-card span {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
}

.aside-card:hover span {
  color: var(--brand);
}

.aside-cta {
  display: block;
  margin-top: 16px;
  padding: 12px 14px;
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
}

.aside-cta:hover {
  background: var(--brand-dark);
}

.post {
  background: #fff;
  padding: 32px 36px 40px;
  box-shadow: 0 10px 28px rgb(47 51 48 / 0.06);
}

.post-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--muted);
}

.post-crumb a {
  color: var(--brand);
  font-weight: 600;
}

.post-meta {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8a918c;
}

.post h1 {
  margin: 0 0 20px;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
}

.post-hero {
  margin: 0 -36px 28px;
  overflow: hidden;
}

.post-hero img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  max-width: none;
}

.post-body {
  font-size: 16.5px;
  line-height: 1.8;
  color: #4a524d;
}

.post-body p {
  margin: 0 0 16px;
}

.post-body h2 {
  margin: 28px 0 12px;
  font-size: 20px;
  color: var(--heading);
}

.post-cta {
  display: inline-flex;
  margin-top: 12px;
  padding: 12px 20px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.post-cta:hover {
  background: var(--brand-dark);
}

.post-more {
  display: none;
  margin-top: 40px;
}

.post-more__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.post-more .aside-card {
  background: #fff;
  padding: 0 0 12px;
  border: 0;
  box-shadow: 0 8px 20px rgb(47 51 48 / 0.06);
}

.post-more .aside-card img {
  height: 120px;
}

.post-more .aside-card span {
  display: block;
  padding: 0 12px;
}

@media (max-width: 1180px) {
  .nav {
    gap: 4px 14px;
  }

  .nav__link {
    font-size: 12.5px;
  }

  .topbar__item--address {
    display: none;
  }

  .post-layout {
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 24px;
  }

  .post {
    padding: 28px 24px 32px;
  }

  .post-hero {
    margin: 0 -24px 24px;
  }
}

@media (max-width: 980px) {
  .nav__toggle {
    display: grid;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: var(--z-overlay);
    background: rgb(20 28 22 / 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
  }

  .nav-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: var(--z-drawer);
    width: min(86vw, 360px);
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 88px 28px 32px;
    background: var(--paper);
    box-shadow: -16px 0 40px rgb(20 28 22 / 0.12);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    overflow: auto;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav__link {
    font-size: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    white-space: normal;
  }

  .topbar__item--hours {
    display: none;
  }

  .hero__mosaic {
    height: min(52dvh, 440px);
    min-height: 300px;
  }

  .hero__piece--food,
  .hero__piece--person {
    clip-path: none;
    opacity: 0;
  }

  .hero__piece--center {
    clip-path: none;
  }

  .hero__copy {
    top: 50%;
    left: 50%;
    width: min(88%, 420px);
    max-width: calc(100% - 32px);
    transform: translate(-50%, -50%);
  }

  .hero__copy h1 {
    font-size: clamp(18px, 5.4vw, 26px);
    letter-spacing: 0.03em;
    margin-bottom: 10px;
  }

  .hero__lead {
    margin-bottom: 14px;
    font-size: 13px;
    max-width: 32ch;
  }

  .hero__sign {
    font-size: clamp(26px, 8vw, 36px);
  }

  .about {
    padding: 56px 0 64px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about__media {
    max-width: 280px;
    margin: 18px auto 0;
  }

  .services__grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog__grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__split {
    grid-template-columns: 1fr;
  }

  .footer__panel--brand,
  .footer__panel--links {
    padding-inline: var(--gutter);
  }

  .footer__links {
    max-width: none;
  }

  .post-layout {
    grid-template-columns: 1fr;
  }

  .post-aside {
    display: none;
  }

  .post-more {
    display: block;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-h: 88px;
    --gutter: 16px;
  }

  .topbar {
    font-size: 12px;
  }

  .hero__mosaic {
    height: min(48dvh, 340px);
    min-height: 260px;
  }

  .hero__copy h1 {
    font-size: 17px;
    letter-spacing: 0.02em;
  }

  .hero__lead {
    font-size: 12.5px;
    margin-bottom: 12px;
  }

  .hero__sign {
    font-size: 26px;
  }

  .hero__title {
    font-size: 12px;
  }

  .about__lead {
    font-size: 18px;
  }

  .about__body {
    font-size: 14.5px;
  }

  .services {
    padding: 48px 0 56px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }

  .faq {
    padding: 56px 0 64px;
  }

  .faq h2 {
    margin-bottom: 20px;
  }

  .faq__item summary {
    font-size: 14.5px;
    padding: 16px 0;
    gap: 12px;
  }

  .blog {
    padding: 56px 0 64px;
  }

  .blog__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }

  .contact {
    padding: 56px 0 64px;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .footer__panel {
    padding-block: 40px 32px;
  }

  .footer__links {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bar-inner {
    flex-direction: column;
    padding: 16px 0;
    text-align: center;
  }

  .post {
    padding: 22px 18px 28px;
  }

  .post-hero {
    margin: 0 -18px 20px;
  }

  .post-more__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

body.menu-open {
  overflow: hidden;
}
