/* ---------------------------------------------------------------
   The Jawed Habib Kondapur — design system
   Clean salon layout with a contemporary Hyderabad palette,
   modern panels, relaxed spacing and a warm green accent.
----------------------------------------------------------------*/

:root {
  color-scheme: light;

  --paper: #ffffff;
  --paper-alt: #f3f7f5;
  --ink: #17231a;
  --ink-soft: #4d6257;
  --ink-faint: #7f8b80;
  --line: #d9e3dc;
  --line-strong: #c4d3c9;

  --accent: #0a6b51;
  --accent-ink: #0a533f;

  --dark: #152f2a;
  --dark-text: #f7f6f3;
  --dark-muted: #b2c2b3;
  --dark-line: rgba(18, 33, 28, 0.16);

  --shell-pad: 32px;
  --shell-max: 1200px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--accent);
  color: var(--paper);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.page-shell {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: 0 var(--shell-pad) 0;
}

/* ------------------------------ icons ------------------------------ */

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 20px;
  height: 20px;
  display: block;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--accent-ink);
  margin-bottom: 20px;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--paper-alt);
  border: 1px solid var(--line);
  color: var(--accent-ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

/* --------------------------- scroll reveal --------------------------- */

/* Only hide [data-reveal] once JS has confirmed it will reveal them —
   scripts.js sets .js-ready on <html> synchronously on load. Without
   JS (or if it errors), content stays fully visible by default. */
.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-ready [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------------------------- header ---------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px var(--shell-pad);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(20, 18, 14, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: 32px;
  width: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}

.site-nav a {
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  border-bottom-color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle .bar {
  width: 16px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-3px) rotate(-45deg);
}

/* ------------------------------ type ------------------------------ */

.eyebrow,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-ink);
}

.eyebrow::before,
.section-eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent);
}

.hero h1,
.menu-hero h1,
.section-header h2 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.04;
  font-size: clamp(2.5rem, 1.6rem + 3.6vw, 4.4rem);
}

.section-header h2 {
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
}

.hero p,
.menu-hero p,
.section-header p,
.menu-note p {
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.7;
  font-size: 1.05rem;
}

.section-header {
  margin: 0 0 56px;
  max-width: 620px;
}

/* ------------------------------ hero ------------------------------ */

.hero {
  margin-top: 24px;
}

.hero-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
  box-shadow: 0 30px 60px -24px rgba(20, 18, 14, 0.32);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  transform: scaleX(-1);
  z-index: 0;
  animation: hero-in 1.2s var(--ease) both;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(9, 18, 14, 0.92) 0%, rgba(9, 18, 14, 0.6) 42%, rgba(9, 18, 14, 0.18) 72%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 120px 56px 64px;
  color: var(--dark-text);
}

.hero-copy .eyebrow {
  color: var(--dark-muted);
}

.hero-copy .eyebrow::before {
  background: var(--accent);
}

.hero-copy h1 {
  color: var(--dark-text);
}

.hero-copy p {
  color: var(--dark-muted);
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-size: 0.88rem;
  color: var(--dark-muted);
}

.rating-badge .stars {
  color: var(--accent);
  letter-spacing: 0.05em;
  font-size: 0.95rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.94rem;
  transition: background-color 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease), transform 0.22s var(--ease);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--accent);
  color: var(--paper);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--dark-text);
  color: var(--dark);
}

.btn-secondary {
  padding: 15px 20px;
  color: var(--dark-text);
  border: 1px solid var(--dark-line);
  border-radius: 999px;
  background: transparent;
  position: relative;
}

.btn-secondary::after {
  content: "\2192";
  margin-left: 10px;
  transition: transform 0.22s var(--ease);
  display: inline-block;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--dark-text);
  color: var(--dark);
  border-color: var(--dark-text);
}

.btn-secondary:hover::after {
  transform: translateX(4px);
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  margin: -40px 40px 0;
  padding: 28px 32px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 20px 40px rgba(9, 18, 14, 0.18);
}

.hero-stats div {
  flex: 1 1 33%;
  padding-right: 24px;
}

.hero-stats div + div {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.hero-stats strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.hero-stats span {
  display: block;
  margin-top: 4px;
  font-size: 0.84rem;
  color: var(--ink-faint);
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: scale(1.06);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy p,
.hero-copy .rating-badge,
.hero-copy .hero-actions {
  animation: rise-in 0.8s var(--ease) both;
}

.hero-copy h1 {
  animation-delay: 0.08s;
}

.hero-copy p {
  animation-delay: 0.16s;
}

.hero-copy .rating-badge {
  animation-delay: 0.22s;
}

.hero-copy .hero-actions {
  animation-delay: 0.28s;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg,
  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy p,
  .hero-copy .rating-badge,
  .hero-copy .hero-actions {
    animation: none;
  }
}

.manifesto-band {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  gap: 48px;
  padding: 72px 0;
}

.manifesto-rings {
  position: relative;
  width: 130px;
  height: 130px;
  justify-self: center;
}

.manifesto-rings span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
}

.manifesto-rings span:nth-child(1) {
  border-color: var(--accent);
  opacity: 0.55;
  animation: spin-cw 22s linear infinite;
}

.manifesto-rings span:nth-child(2) {
  inset: 17px;
  border-style: dashed;
  animation: spin-ccw 28s linear infinite;
}

.manifesto-rings span:nth-child(3) {
  inset: 34px;
  border-color: var(--accent);
  animation: spin-cw 34s linear infinite;
}

@keyframes spin-cw {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spin-ccw {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .manifesto-rings span {
    animation: none;
  }
}

.manifesto-copy {
  max-width: 780px;
}

.manifesto-copy .section-eyebrow {
  margin-bottom: 20px;
}

.manifesto-text {
  margin: 0;
  font-size: clamp(1.4rem, 1rem + 1.8vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.35;
  color: var(--ink);
}

/* ---------------------------- story band ---------------------------- */

.story-band {
  position: relative;
  margin: 88px 0;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 30px 60px -24px rgba(20, 18, 14, 0.28);
}

.story-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 15, 12, 0.72), rgba(8, 15, 12, 0.05) 55%);
  pointer-events: none;
}

.story-band-copy {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 36px;
  z-index: 1;
  color: var(--dark-text);
}

.story-band-copy .section-eyebrow {
  color: var(--dark-muted);
}

.story-band-copy .section-eyebrow::before {
  background: var(--accent);
}

.story-band-copy p:last-child {
  margin: 0;
  max-width: 520px;
  font-size: clamp(1.1rem, 0.9rem + 1vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .story-band {
    aspect-ratio: 4 / 3;
    margin: 56px 0;
  }

  .story-band-copy {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }
}

/* --------------------------- numbered grids --------------------------- */

.feature-block,
.services-preview,
.testimonial-block,
.offer-block {
  padding: 88px 0;
  border-top: 1px solid var(--line);
}

.feature-grid,
.service-grid,
.testimonial-grid {
  display: grid;
  gap: 48px 40px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.service-tile,
.testimonial-card {
  padding: 28px 26px;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: var(--paper-alt);
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.feature-card:hover,
.service-tile:hover,
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(10, 18, 14, 0.08);
}

.feature-card:hover .icon-badge,
.service-tile:hover .icon-badge {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--paper);
}

.feature-card h3,
.service-tile h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.feature-card p,
.service-tile p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 0.97rem;
}

.service-grid {
  margin-top: 4px;
}

/* ------------------------------ offers ------------------------------ */

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

.offer-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.offer-card-feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.offer-card-feature .offer-media {
  aspect-ratio: auto;
  height: 100%;
}

.offer-card-feature .offer-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 44px;
}

.offer-card-feature h3 {
  font-size: 1.6rem;
}

@media (max-width: 720px) {
  .offer-card-feature {
    grid-template-columns: 1fr;
  }
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(20, 18, 14, 0.08);
}

.offer-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-alt);
}

.offer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.offer-card:hover .offer-media img {
  transform: scale(1.05);
}

.offer-body {
  padding: 26px 26px 28px;
}

.offer-badge {
  display: inline-block;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-ink);
}

.offer-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.offer-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 0.95rem;
}

.offer-card strong {
  display: block;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.offer-note {
  margin: 28px 0 0;
  color: var(--ink-faint);
  font-size: 0.88rem;
}

/* --------------------------- testimonials --------------------------- */

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.testimonial-card strong {
  display: block;
  margin-top: 20px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-faint);
}

/* ----------------------------- booking ----------------------------- */

.booking-block {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 72px 56px;
  border-radius: 20px;
  background: var(--dark);
  color: var(--dark-text);
}

.booking-block .section-header {
  margin: 0;
  grid-column: 1;
}

.booking-block .section-header h2 {
  color: var(--dark-text);
}

.booking-block .eyebrow,
.booking-block .section-eyebrow {
  color: var(--dark-muted);
}

.booking-block .eyebrow::before,
.booking-block .section-eyebrow::before {
  background: var(--accent);
}

.booking-block > p {
  grid-column: 2;
  grid-row: 1;
  margin: 0 0 28px;
  color: var(--dark-muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.booking-block .btn {
  grid-column: 2;
  grid-row: 2;
  justify-self: start;
}

.booking-block .btn-primary {
  background: var(--dark-text);
  color: var(--dark);
}

.booking-block .btn-primary:hover {
  background: var(--accent);
  color: var(--dark-text);
}

/* ----------------------------- contact ----------------------------- */

.contact-block {
  padding: 88px 0;
}

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

.contact-grid > div {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.contact-grid > div:first-child {
  padding-left: 0;
  border-left: none;
}

.contact-grid h3 {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
}

.contact-grid p {
  margin: 0 0 4px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.contact-grid a:hover {
  color: var(--accent-ink);
}

.contact-secondary {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 48px;
}

.map-embed {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(17, 42, 30, 0.06);
}

.map-embed iframe {
  display: block;
}

.qr-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper-alt);
  text-align: center;
}

.qr-block h3 {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
}

.qr-block img {
  border-radius: 10px;
}

@media (max-width: 720px) {
  .contact-secondary {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------ footer ------------------------------ */

.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink-faint);
  font-size: 0.85rem;
}

.site-footer a {
  color: var(--ink-soft);
}

.site-footer a:hover {
  color: var(--accent-ink);
}

/* --------------------------- whatsapp float --------------------------- */

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-weight: 600;
  font-size: 0;
  box-shadow: 0 10px 30px rgba(20, 18, 14, 0.22);
  transition: transform 0.22s var(--ease), background-color 0.22s var(--ease);
}

.whatsapp-float::before {
  content: "\1F4AC";
  font-size: 22px;
}

.whatsapp-float:hover {
  background: var(--accent-ink);
  transform: translateY(-2px);
}

/* ============================== menu.html ============================== */

.menu-hero {
  padding: 88px 0 48px;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at top left, rgba(10, 107, 81, 0.08), transparent 34%);
}

.menu-hero .section-header {
  margin-bottom: 14px;
  max-width: 680px;
}

.menu-hero h1 {
  margin-bottom: 14px;
}

.menu-quicklinks {
  display: flex;
  flex-wrap: wrap;
  column-gap: 14px;
  row-gap: 12px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.menu-quicklinks a {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--paper);
  box-shadow: 0 10px 24px rgba(17, 42, 30, 0.06);
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), color 0.2s var(--ease);
}

.menu-quicklinks a:hover,
.menu-quicklinks a:focus-visible {
  color: var(--paper);
  background: var(--accent);
  transform: translateY(-1px);
}

.menu-category {
  margin-top: 32px;
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(17, 42, 30, 0.05);
  counter-increment: category;
}

.menu-category:first-of-type {
  counter-reset: category;
}

.category-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  margin-bottom: 30px;
  align-items: center;
}

.category-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(10, 107, 81, 0.12);
  border: none;
  color: var(--accent);
}

.category-icon .icon {
  width: 24px;
  height: 24px;
}

.category-index::before {
  content: counter(category, decimal-leading-zero);
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.category-header h2 {
  margin: 0 0 8px;
  font-size: clamp(1.7rem, 1.25rem + 1vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.category-header p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 0.95rem;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 32px;
}

.menu-subcategory {
  margin: 0 0 16px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 18px;
  padding: 18px 0 18px 0;
  border-bottom: 1px solid var(--line);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}

.menu-item span {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--accent-ink);
}

.menu-item small {
  grid-column: 1 / -1;
  margin-top: 10px;
  color: var(--ink-faint);
  font-size: 0.86rem;
  line-height: 1.6;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.package-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.package-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
}

.package-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 0.92rem;
}

.package-card strong {
  display: block;
  margin-top: 18px;
  font-size: 1.15rem;
  color: var(--ink);
}

.menu-note {
  padding: 40px 0 96px;
}

.menu-note p {
  max-width: 720px;
  margin: 0;
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  background: rgba(10, 107, 81, 0.06);
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.8;
}


/* ------------------------------ responsive ------------------------------ */

@media (max-width: 1024px) {
  .feature-grid,
  .service-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero-frame {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .hero-copy {
    padding: 64px 32px 48px;
  }

  .hero-stats {
    margin: -32px 20px 0;
    padding: 20px 20px;
  }

  .manifesto-band {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 28px;
    padding: 56px 0;
  }

  .hero-stats div {
    flex: 1 1 100%;
    padding: 12px 0;
    border-top: 1px solid var(--line);
  }

  .hero-stats div:first-child {
    border-top: none;
    padding-top: 0;
  }

  .hero-stats div + div {
    padding-left: 0;
    border-left: none;
  }

  .booking-block {
    grid-template-columns: 1fr;
    padding: 48px 32px;
    border-radius: 16px;
  }

  .booking-block > p,
  .booking-block .btn {
    grid-column: 1;
  }

  .booking-block > p {
    grid-row: 2;
    margin-top: 24px;
  }

  .booking-block .btn {
    grid-row: 3;
    margin-top: 24px;
  }

  .booking-block .section-header {
    grid-row: 1;
  }
}

@media (max-width: 720px) {
  :root {
    --shell-pad: 20px;
  }

  .feature-grid,
  .service-grid,
  .testimonial-grid,
  .offer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid > div {
    padding-left: 0;
    border-left: none;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }

  .contact-grid > div:first-child {
    padding-top: 0;
    border-top: none;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 18px;
    margin: 0;
    padding: 24px var(--shell-pad) 28px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.show {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .brand img {
    height: 26px;
  }

  .category-icon {
    width: 40px;
    height: 40px;
  }

  .category-icon .icon {
    width: 18px;
    height: 18px;
  }

  .site-footer {
    flex-direction: column;
  }
}
