.aromaty-page {
  --ink: var(--text);
  --brown: var(--accent-dark);
  color: var(--text);
}

.aromaty-hero {
  padding-top: 150px;
  padding-bottom: 42px;
  background:
    radial-gradient(circle at 18% 22%, rgba(126, 92, 71, 0.13), transparent 32%),
    radial-gradient(circle at 78% 10%, rgba(221, 202, 178, 0.46), transparent 34%);
}

.aromaty-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 36px;
  align-items: stretch;
}

.aromaty-hero-copy h1 {
  margin: 12px 0 20px;
  max-width: 780px;
  color: var(--accent-dark);
  font-family: var(--font-serif);
  font-size: clamp(54px, 8vw, 118px);
  line-height: 0.86;
  letter-spacing: -0.06em;
}

.aromaty-hero-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.aromaty-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.aromaty-hero-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(109, 75, 58, 0.16);
  border-radius: 34px;
  padding: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,0.76), rgba(238,225,209,0.68));
  box-shadow: 0 24px 70px rgba(83, 59, 43, 0.12);
}

.aromaty-hero-card span {
  margin-bottom: auto;
  color: var(--brown);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.aromaty-hero-card strong {
  display: block;
  color: var(--brown);
  font-size: 30px;
  line-height: 1.08;
}

.aromaty-hero-card p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.aromaty-toolbar {
  position: relative;
  z-index: 5;
  padding: 0 0 48px;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.aromaty-toolbar-inner {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  padding-top: 0;
  padding-bottom: 0;
}

.aromaty-search {
  flex: 1;
  display: grid;
  gap: 8px;
  color: var(--brown);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.aromaty-search input {
  width: 100%;
  border: 1px solid rgba(74,48,41,.14);
  border-radius: 16px;
  padding: 15px 16px;
  background: rgba(255,250,244,.9);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: .2s ease;
}

.aromaty-search input:focus {
  border-color: rgba(109,73,59,.45);
  box-shadow: 0 0 0 4px rgba(109,73,59,.09);
}

.aromaty-jump-nav {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 0;
}

.aromaty-jump-nav a {
  flex: 0 0 auto;
  border: 1px solid rgba(74,48,41,.14);
  border-radius: 999px;
  padding: 15px 20px;
  background: rgba(255,250,244,.9);
  color: var(--brown);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.aromaty-jump-nav a:hover {
  transform: translateY(-1px);
  border-color: rgba(109,73,59,.45);
  background: rgba(255,250,244,1);
}

.aromaty-section + .aromaty-section {
  margin-top: 70px;
}

.aromaty-section-head {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 26px;
}

.aromaty-section-head h2 {
  max-width: 920px;
  margin: 0;
  color: var(--brown);
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.aromaty-count {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aromaty-group {
  margin-top: 34px;
}

.aromaty-group h3 {
  margin: 0 0 18px;
  color: var(--brown);
  font-size: 22px;
}

.aromaty-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  margin-top: 28px;
  gap: 18px;
}

.aromaty-card {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 640px;
  overflow: hidden;
  border: 1px solid rgba(109, 75, 58, 0.13);
  border-radius: 28px;
  background: rgba(255,255,255,0.56);
  box-shadow: 0 18px 45px rgba(83, 59, 43, 0.08);
}

.aromaty-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 0.74;
  margin: 18px 18px 0;
  border: 1px solid rgba(109, 75, 58, 0.16);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(238,225,209,0.9), rgba(255,255,255,0.8));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5);
}

.aromaty-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.aromaty-card:hover .aromaty-card-media img {
  transform: scale(1.04);
}

.aromaty-card-placeholder {
  display: grid;
  height: 100%;
  place-items: center;
  padding: 24px;
  color: rgba(109,75,58,0.46);
  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 1;
  text-align: center;
}

.aromaty-card-body {
  min-height: 0;
  overflow-y: auto;
  padding: 22px;
  scrollbar-width: thin;
  scrollbar-color: rgba(109, 75, 58, 0.32) transparent;
}

.aromaty-card-body::-webkit-scrollbar {
  width: 8px;
}

.aromaty-card-body::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(109, 75, 58, 0.26);
}

.aromaty-card-body h4 {
  margin: 0 0 12px;
  color: var(--brown);
  font-size: 20px;
  line-height: 1.18;
}

.aromaty-card-body p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.62;
}

.aromaty-usage {
  margin-top: 8px !important;
  color: rgba(61, 48, 40, 0.66) !important;
  font-size: 0.94em;
  line-height: 1.55 !important;
}

.aromaty-notes {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.aromaty-note {
  border-radius: 18px;
  padding: 10px 12px;
  background: rgba(231, 220, 207, 0.68);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.aromaty-empty {
  border: 1px solid rgba(109, 75, 58, 0.16);
  border-radius: 28px;
  padding: 26px;
  background: rgba(255,255,255,0.62);
  color: var(--muted);
  text-align: center;
}

@media (max-width: 1040px) {
  .aromaty-hero-grid {
    grid-template-columns: 1fr;
  }

  .aromaty-toolbar-inner {
    flex-direction: column;
    align-items: stretch;
  }

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

@media (max-width: 680px) {
  .aromaty-hero {
    padding-top: 118px;
  }

  .aromaty-grid {
    grid-template-columns: 1fr;
  }

  .aromaty-card {
    height: 620px;
  }

  .aromaty-section-head {
    display: block;
  }

  .aromaty-count {
    display: block;
    margin-top: 10px;
  }
}

/* Responsive hardening for aromaty page */

.aromaty-hero {
  padding-top: clamp(124px, 11vh, 170px);
}

.aromaty-hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.62fr);
}

.aromaty-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.aromaty-card {
  height: clamp(590px, 42vw, 690px);
}

@media (min-width: 1600px) {
  .aromaty-grid {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  }
}

@media (max-width: 1180px) {
  .aromaty-hero-grid {
    grid-template-columns: 1fr;
  }

  .aromaty-hero-card {
    min-height: 240px;
  }
}

@media (max-width: 900px) {
  .aromaty-hero-copy h1,
  .aromaty-section-head h2 {
    font-size: clamp(42px, 12vw, 72px);
    line-height: 0.96;
  }

  .aromaty-toolbar-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .aromaty-jump-nav {
    padding-bottom: 8px;
  }

  .aromaty-section-head {
    display: grid;
    align-items: start;
  }
}

@media (max-width: 680px) {
  .aromaty-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .aromaty-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .aromaty-hero {
    padding-top: 112px;
    padding-bottom: 24px;
  }

  .aromaty-hero-card {
    min-height: 0;
    padding: 22px;
    border-radius: 28px;
  }

  .aromaty-toolbar {
    padding-top: 0;
    padding-bottom: 34px;
  }

  .aromaty-toolbar-inner {
    gap: 14px;
  }

  .aromaty-jump-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    overflow: visible;
    padding-bottom: 0;
  }

  .aromaty-jump-nav a {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
    text-align: center;
    white-space: normal;
  }

  .aromaty-card {
    height: clamp(600px, 150vw, 680px);
  }

  .aromaty-card-media {
    margin: 14px 14px 0;
  }

  .aromaty-card-body {
    padding: 18px;
  }
}

/* Compact aromaty grid for phones and narrow screens */

.aromaty-toolbar,
.aromaty-section {
  scroll-margin-top: 118px;
}

@media (max-width: 1180px) {
  .aromaty-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 16px;
  }

  .aromaty-card {
    height: clamp(500px, 56vw, 620px);
  }
}

@media (max-width: 760px) {
  .aromaty-content.section-pad {
    padding-top: 54px;
  }

  .aromaty-section + .aromaty-section {
    margin-top: 48px;
  }

  .aromaty-group {
    margin-top: 24px;
  }

  .aromaty-group h3 {
    margin-bottom: 14px;
    font-size: 20px;
  }

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

  .aromaty-card {
    height: auto;
    min-height: 520px;
    border-radius: 22px;
  }

  .aromaty-card-media {
    margin: 10px 10px 0;
    aspect-ratio: 1 / 0.86;
    border-radius: 16px;
  }

  .aromaty-card-placeholder {
    padding: 14px;
    font-size: 20px;
  }

  .aromaty-card-body {
    overflow: visible;
    padding: 12px;
  }

  .aromaty-card-body h4 {
    margin-bottom: 8px;
    color: #111;
    font-size: clamp(13px, 3.65vw, 15px);
    line-height: 1.16;
  }

  .aromaty-card-body p {
    margin-bottom: 7px;
    font-size: clamp(12px, 3.25vw, 13px);
    line-height: 1.42;
  }

  .aromaty-notes {
    gap: 6px;
    margin-top: 10px;
  }

  .aromaty-note {
    border-radius: 14px;
    padding: 7px 9px;
    font-size: 11px;
    line-height: 1.28;
  }
}

@media (max-width: 380px) {
  .aromaty-grid {
    gap: 10px;
  }

  .aromaty-card {
    min-height: 500px;
  }

  .aromaty-card-media {
    margin: 8px 8px 0;
  }

  .aromaty-card-body {
    padding: 10px;
  }
}
