:root {
  --arak-ivory:      #FBF9F5;
  --arak-ink:        #1B1813;
  --arak-body:       #514A3F;
  --arak-gold:       #A8854A;
  --arak-gold-deep:  #876A3A;
  --arak-gold-soft:  #BE9B5D;
  --arak-line:       #ECE6DA;
  --arak-line-soft:  #F2EEE5;
  --arak-card:       #FFFFFF;
  --arak-card-bd:    #EBE2D1;
  --arak-badge-bg:   #E7D4A8;
  --arak-muted:      #BCAF98;
  --arak-serif: 'Cormorant Garamond', Georgia, serif;
  --arak-sans:  'Jost', system-ui, sans-serif;
}

.arak-page-c { background: var(--arak-ivory); font-family: var(--arak-sans); color: var(--arak-ink); }
.arak-page-c * { box-sizing: border-box; -webkit-font-smoothing: antialiased; }

.arak-hero { position: relative; height: 440px; overflow: hidden; }
.arak-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.arak-hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 64% 52% at 50% 44%, rgba(27,24,19,.46) 0%, rgba(27,24,19,0) 72%),
    linear-gradient(180deg, rgba(27,24,19,.40) 0%, rgba(27,24,19,.16) 30%, rgba(251,249,245,.10) 64%, var(--arak-ivory) 100%);
}
.arak-hero__inner {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  padding-top: 120px;
}
.arak-hero__title {
  margin: 0; font-family: var(--arak-serif); font-weight: 300; font-size: 80px; line-height: 1;
  letter-spacing: -.01em; color: #fff;
  text-shadow: 0 2px 24px rgba(27,24,19,.6), 0 1px 4px rgba(27,24,19,.4);
}

.arak-wrap { max-width: 1100px; margin: 0 auto; padding: 0 56px 80px; }
.arak-intro { text-align: center; margin-top: 8px; }
.arak-intro p {
  margin: 0 auto; max-width: 66ch; font-weight: 300; font-size: 15.5px; line-height: 1.7; color: var(--arak-body);
}
.arak-intro p + p { margin-top: 14px; }

.arak-tabs { position: relative; margin-top: 24px; }
.arak-tabs__row {
  display: flex; justify-content: center; gap: 0; flex-wrap: nowrap;
  border-bottom: 1px solid var(--arak-line);
}
.arak-tab { position: relative; }
.arak-tab__btn {
  position: relative; display: flex; align-items: center; gap: 6px;
  padding: 22px 16px 24px; cursor: pointer;
  font-size: 14px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  white-space: nowrap; color: #4C4538; transition: color .2s; background: none; border: 0;
}
.arak-tab__btn:hover { color: var(--arak-gold-deep); }
.arak-tab__btn .caret { font-size: 10px; color: var(--arak-gold-soft); transition: transform .2s, color .2s; }
.arak-tab[aria-expanded="true"] .caret { transform: rotate(180deg); color: var(--arak-gold); }
.arak-tab__btn .underline {
  position: absolute; left: 16px; right: 16px; bottom: -1px; height: 3px;
  background: var(--arak-gold); transform: scaleX(0); transform-origin: center; transition: transform .3s ease;
}
.arak-tab.is-active .arak-tab__btn { color: var(--arak-ink); }
.arak-tab.is-active .underline { transform: scaleX(1); }
.arak-tab.is-active .caret { color: var(--arak-gold); }

.arak-drop {
  position: absolute; left: 50%; transform: translateX(-50%); top: 100%; margin-top: 12px; z-index: 40;
  width: 380px; max-height: 420px; overflow-y: auto;
  background: #FFFDF9; border: 1px solid #EAE2D2; border-radius: 16px;
  box-shadow: 0 40px 80px -34px rgba(27,24,19,.5); padding: 8px;
  animation: arak-drop .2s ease-out;
}
.arak-drop::before {
  content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px;
}
.arak-drop__close {
  display: none;
  position: sticky; top: 4px; float: right;
  width: 34px; height: 34px; padding: 0;
  background: rgba(255,253,249,.92); border: 1px solid var(--arak-line); border-radius: 50%;
  font-size: 22px; line-height: 30px; color: var(--arak-ink); cursor: pointer;
  z-index: 2;
}
.arak-backdrop {
  position: fixed; inset: 0; z-index: 39;
  background: rgba(27,24,19,.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
body.arak-drop-open { overflow: hidden; }
@keyframes arak-drop {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.arak-drop__all {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; margin: 2px 2px 6px; border-bottom: 1px solid #F0EADD; cursor: pointer;
  text-decoration: none;
}
.arak-drop__all span:first-child {
  font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--arak-gold-deep);
}
.arak-drop__all span:last-child { font-size: 13px; color: var(--arak-gold); }
.arak-drop__item {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 13px 16px; border-radius: 10px; cursor: pointer; color: var(--arak-ink);
  transition: background .16s ease, color .16s ease;
  text-decoration: none;
}
.arak-drop__item:hover { background: #F5EEDD; color: var(--arak-gold-deep); }
.arak-drop__item .name { font-weight: 400; font-size: 13.5px; }
.arak-drop__item .count { flex: none; font-size: 10.5px; letter-spacing: .06em; color: var(--arak-muted); }

.arak-cat {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
  margin-top: 52px; padding-bottom: 18px; border-bottom: 1px solid var(--arak-ink);
}
.arak-cat__title { margin: 0; font-family: var(--arak-serif); font-weight: 400; font-size: 36px; line-height: 1.04; }
.arak-cat__title a { color: inherit; text-decoration: none; transition: color .2s ease; }
.arak-cat__title a:hover { color: var(--arak-gold); }
.arak-cat__tag  { margin: 8px 0 0; font-weight: 300; font-size: 14.5px; color: var(--arak-gold-deep); }
.arak-cat__right { display: flex; align-items: center; gap: 12px; }
.arak-cat__arlabel { font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: #9E9382; white-space: nowrap; }

.arak-group { margin-top: 52px; scroll-margin-top: 240px; }
.arak-group__head { text-align: center; margin-bottom: 22px; }
.arak-group__title {
  display: inline-block; text-decoration: none; color: var(--arak-gold); transition: color .2s ease;
  font-family: var(--arak-serif); font-weight: 400; font-size: 34px; line-height: 1.1; letter-spacing: -.005em;
}
.arak-group__title:hover { color: var(--arak-ink); }
.arak-badge {
  display: inline-block; margin-top: 12px;
  font-size: 9.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--arak-ink); background: var(--arak-badge-bg); padding: 4px 11px; border-radius: 100px; white-space: nowrap;
}
.arak-subhead {
  text-align: center; margin: 28px 0 14px;
  font-family: var(--arak-serif); font-weight: 400; font-size: 22px; color: var(--arak-gold-deep);
}

.arak-card {
  background: var(--arak-card); border: 1px solid var(--arak-card-bd); border-radius: 14px;
  box-shadow: 0 14px 34px -24px rgba(27,24,19,.34); padding: 6px 28px;
}

.arak-row {
  display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: baseline;
  padding: 16px 4px; border-bottom: 1px solid var(--arak-line-soft);
}
.arak-row:last-child { border-bottom: 0; }
.arak-row__main { display: flex; flex-wrap: wrap; align-items: baseline; gap: 2px 12px; }
.arak-row__name { font-family: var(--arak-serif); font-weight: 500; font-size: 21px; line-height: 1.2; color: var(--arak-ink); }
.arak-row__desc { font-family: var(--arak-serif); font-weight: 400; font-size: 15.5px; line-height: 1.3; color: var(--arak-gold); }
.arak-row__price-wrap { text-align: right; white-space: nowrap; }
.arak-row__price { font-weight: 500; font-size: 18px; letter-spacing: .01em; color: var(--arak-gold); }
.arak-row__pkg { margin-top: 5px; font-weight: 500; font-size: 14px; letter-spacing: .03em; color: var(--arak-gold-deep); }

.arak-note {
  margin-top: 38px; background: #F7F1E4; border: 1px solid #E3D2AE; border-radius: 10px; padding: 34px 36px;
}
.arak-note__lead { margin: 0; font-family: var(--arak-serif); font-weight: 400; font-size: 24px; line-height: 1.3; color: var(--arak-ink); }
.arak-note__body { margin: 12px 0 0; font-weight: 300; font-size: 14.5px; line-height: 1.7; color: var(--arak-body); }

.arak-cta-c { display: flex; justify-content: center; margin-top: 56px; }
.arak-cta-c .btn { padding: 14px 36px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; font-size: 12px; }

@media (max-width: 900px) {
  .arak-tabs__row { flex-wrap: wrap; }
}
@media (max-width: 720px) {
  .arak-hero { height: 320px; }
  .arak-hero__inner { padding-top: 100px; }
  .arak-hero__title { font-size: 56px; }
  .arak-wrap { padding: 0 22px 56px; }
  .arak-tab__btn { font-size: 12px; padding: 14px 12px 16px; letter-spacing: .08em; }
  .arak-group__title { font-size: 27px; }
  .arak-row { grid-template-columns: 1fr; gap: 6px; }
  .arak-row__price-wrap { text-align: left; }

  .mobile-sticky-cta { display: none !important; }

  .arak-drop {
    position: fixed;
    top: 50%;
    left: 4vw;
    right: 4vw;
    bottom: auto;
    transform: translateY(-50%);
    width: auto;
    margin-top: 0;
    max-height: 70vh;
    z-index: 50;
    padding: 16px 12px 12px;
    animation: arak-drop-mobile .2s ease-out;
  }
  @keyframes arak-drop-mobile {
    from { opacity: 0; transform: translateY(-50%) scale(.97); }
    to   { opacity: 1; transform: translateY(-50%) scale(1); }
  }
  .arak-drop::before { display: none; }
  .arak-drop__close { display: block; }
  .arak-drop__item { padding: 16px 18px; font-size: 15px; }
  .arak-drop__item .name { font-size: 15px; }
}
