/* ─────────────────────────────────────────────
   AHANAS TOKENS
───────────────────────────────────────────── */
:root {
  --ah-primary:       #60181c;
  --ah-primary-dark:  #4a1115;
  --ah-primary-light: #f5e8e8;
  --ah-black:         #1e293b;
  --ah-dark:          #111111;
  --ah-off-white:     #f8f7f4;
  --ah-white:         #ffffff;
  --ah-light-grey:    #efefed;
  --ah-mid-grey:      #94a3b8;
  --ah-dark-grey:     #475569;
  --ah-font:          'Montserrat', sans-serif;
  --ah-max:           1200px;
  --ah-nav:           80px;
}



	
/* ─────────────────────────────────────────────
   GOOGLE FONT
───────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');


    .ast-container {
        max-width: unset!important;
		width: 100%!important;
	 padding-left: 0!important;
        padding-right: 0!important;
     display: block!important;
    }

	

/* ─────────────────────────────────────────────
   RESET / BASE
───────────────────────────────────────────── */
.ahanas-page *, .ahanas-page *::before, .ahanas-page *::after { box-sizing: border-box; margin: 0; padding: 0; }
.ahanas-page { font-family: var(--ah-font); color: var(--ah-black); font-size: 14px; line-height: 1.7; font-weight: 400; }
.ahanas-page img { display: block; max-width: 100%; }
.ahanas-page a { text-decoration: none; }
.ahanas-page ul { list-style: none; }
.ahanas-page p { color: var(--ah-dark-grey); line-height: 1.85; margin-bottom: 16px; }
.ahanas-page p:last-child { margin-bottom: 0; }

/* ─────────────────────────────────────────────
   LAYOUT HELPERS
───────────────────────────────────────────── */
.ahanas-container { max-width: var(--ah-max); margin: 0 auto; padding: 0 48px; }
.ahanas-section   { padding: 96px 0; }

/* ─────────────────────────────────────────────
   HEADINGS
───────────────────────────────────────────── */
.ahanas-page h2 {
  font-family: var(--ah-font);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ah-black);
  letter-spacing: -0.02em;
  margin-bottom: 0;
}
.ahanas-page h2 em { font-style: normal; font-weight: 300; color:#e8a0a3!important; }

.ahanas-page h4 {
  font-family: var(--ah-font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ah-white);
  margin-bottom: 8px;
}

/* ─────────────────────────────────────────────
   EYEBROW
───────────────────────────────────────────── */
.ahanas-eyebrow {
  font-family: var(--ah-font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ah-primary)!important;
  margin-bottom: 14px !important;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ahanas-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ah-primary);
  flex-shrink: 0;
}
.ahanas-eyebrow--light { color: #e8a0a3!important; }
.ahanas-eyebrow--light::before { background: #e8a0a3; }

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.ahanas-btn {
  display: inline-block;
  font-family: var(--ah-font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: background .25s, color .25s, transform .2s;
  cursor: pointer;
  border: none;
}
.ahanas-btn--primary   { background: var(--ah-primary); color: var(--ah-white); }
.ahanas-btn--primary:hover { background: var(--ah-primary-dark); transform: translateY(-1px); color:#fff!important;}
.ahanas-btn--secondary { background: transparent; border: 1.5px solid var(--ah-primary); color: var(--ah-primary); }
.ahanas-btn--secondary:hover { background: var(--ah-primary); color: var(--ah-white); }
.ahanas-btn--outline-light { border: 1px solid rgba(255,255,255,0.5); color: var(--ah-white); }
.ahanas-btn--outline-light:hover { border-color: var(--ah-white); background: rgba(255,255,255,0.1);   color:#fff!important;}

/* ─────────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────────── */
.ah-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.ah-reveal.ah-visible { opacity: 1; transform: translateY(0); }
.ah-reveal.ah-d1 { transition-delay: .1s; }
.ah-reveal.ah-d2 { transition-delay: .2s; }
.ah-reveal.ah-d3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .ah-reveal { opacity: 1; transform: none; transition: none; }
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.ahanas-hero {
  height: 100vh;
  min-height: 580px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: #1d1c18;
  background-size: cover;
  background-position: center 30%;
}
.ahanas-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgb(20 18 14) 0%, rgb(20 18 14 / 38%) 55%, #00000033 100%);
}
.ahanas-hero__content { position: relative; z-index: 2; padding: 0 64px 72px; max-width: 780px; }
.ahanas-hero__h1 {
  font-family: var(--ah-font);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ah-white);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.ahanas-hero__sub {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .04em;
  color: rgba(255,255,255,.75)!important;
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.ahanas-hero__cta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.ahanas-hero__strip { position: absolute; bottom: 0; right: 0; display: flex; z-index: 3; }
.ahanas-hero__strip-item {
  background: rgba(255,255,255,.96);
  padding: 18px 28px;
  border-left: 1px solid rgba(0,0,0,.08);
  text-align: center;
  min-width: 110px;
}
.ahanas-hero__strip-num { display: block; font-size: 24px; font-weight: 600; color: var(--ah-black); line-height: 1; }
.ahanas-hero__strip-lbl { display: block; font-size: 9px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--ah-mid-grey); margin-top: 5px; }

/* ─────────────────────────────────────────────
   SERVICES
───────────────────────────────────────────── */
.ahanas-services { background: var(--ah-off-white); }
.ahanas-services__intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: end; margin-bottom: 56px;
}
.ahanas-services__intro-text { color: var(--ah-dark-grey); font-size: 14px; line-height: 1.85; margin: 0; }
.ahanas-services__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.ahanas-service-card {
  background: var(--ah-white);
  padding: 40px 32px;
  position: relative; overflow: hidden;
  transition: background .25s;
}
.ahanas-service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--ah-primary);
  transform: scaleX(0); transition: transform .3s; transform-origin: left;
}
.ahanas-service-card:hover::after { transform: scaleX(1); }
.ahanas-service-card:hover { background: var(--ah-primary-light); }
.ahanas-service-card__icon { margin-bottom: 22px; display: flex; }
.ahanas-service-card__icon svg { width: 52px; height: 52px;stroke: #60181c; }
.ahanas-service-card__title {
  font-size: 10px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ah-black); margin-bottom: 14px;
}
.ahanas-service-card__desc { font-size: 13px; color: var(--ah-dark-grey); line-height: 1.75; margin: 0; }

/* ─────────────────────────────────────────────
   PORTFOLIO
───────────────────────────────────────────── */
.ahanas-portfolio { padding: 96px 0; background: var(--ah-white); }
.ahanas-portfolio__header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.ahanas-portfolio__link {
  font-size: 10px; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ah-black);
  border-bottom: 1px solid var(--ah-black); padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.ahanas-portfolio__link:hover { color: var(--ah-primary); border-color: var(--ah-primary); }
.ahanas-portfolio__grid {
  display: grid;
  grid-template-columns: repeat(12,1fr);
  grid-auto-rows: 260px;
  gap: 3px;
}
.ahanas-proj { overflow: hidden; position: relative; background: var(--ah-light-grey); cursor: pointer; }
.ahanas-proj:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.ahanas-proj:nth-child(2) { grid-column: span 5; }
.ahanas-proj:nth-child(3) { grid-column: span 5; }
.ahanas-proj:nth-child(4) { grid-column: span 4; }
.ahanas-proj:nth-child(5) { grid-column: span 4; }
.ahanas-proj:nth-child(6) { grid-column: span 4; }
.ahanas-proj img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; filter: brightness(.9); }
.ahanas-proj:hover img { transform: scale(1.05); filter: brightness(.72); }
.ahanas-proj__info {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px 28px;
  background: linear-gradient(to top, rgba(15,13,10,.72) 0%, transparent 55%);
  opacity: 0; transition: opacity .3s;
}
.ahanas-proj:hover .ahanas-proj__info { opacity: 1; }
.ahanas-proj__type { font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: #e8a0a3; margin-bottom: 5px; }
.ahanas-proj__name { font-size: 20px; font-weight: 600; color: var(--ah-white); line-height: 1.2; }
.ahanas-proj__loc  { font-size: 10px; color: rgba(255,255,255,.65); margin-top: 4px; }

/* ─────────────────────────────────────────────
   WHY AHANAS
───────────────────────────────────────────── */
.ahanas-why { background: var(--ah-dark); color: var(--ah-white); }
.ahanas-why .ahanas-container > .ah-reveal { margin-bottom: 56px; }
.ahanas-why h2 { color: var(--ah-white); }
.ahanas-why h2 em { color: #e8a0a3; font-weight: 300; font-style: normal; }
.ahanas-why__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ahanas-why__image { aspect-ratio: 4/5; overflow: hidden; }
.ahanas-why__image img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.88); }
.ahanas-why__list { list-style: none; }
.ahanas-why__item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex; gap: 24px; align-items: flex-start;
}
.ahanas-why__item:first-child { border-top: 1px solid rgba(255,255,255,.1); }
.ahanas-why__icon { flex-shrink: 0; display: flex; margin-top: 0; }
.ahanas-why__icon svg{
	stroke: #fff
}
.ahanas-why__item-title {
  font-size: 10px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ah-white); margin-bottom: 8px;
}
.ahanas-why__item p { font-size: 13px; color: rgba(255,255,255,.6); margin: 0; }

/* ─────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────── */
.ahanas-testi { background: var(--ah-off-white); }
.ahanas-testi__header { margin-bottom: 48px; }
.ahanas-testi__swiper { padding-bottom: 56px !important; position: relative; }
.ahanas-testi__card {
  background: var(--ah-white);
  padding: 40px 36px 36px;
  height: 100%;
  display: flex; flex-direction: column;
  position: relative;
}
.ahanas-testi__quote-icon { margin-bottom: 20px; }
.ahanas-testi__quote {
  font-size: 15px; font-weight: 400; line-height: 1.8;
  color: var(--ah-black); flex: 1; margin-bottom: 32px;
  font-style: italic;
}
.ahanas-testi__meta { display: flex; align-items: center; gap: 14px; }
.ahanas-testi__photo {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
}
.ahanas-testi__initials {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--ah-primary-light);
  color: var(--ah-primary);
  font-size: 18px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ahanas-testi__name    { font-size: 13px; font-weight: 600; color: var(--ah-black); }
.ahanas-testi__project { font-size: 11px; color: var(--ah-primary); font-weight: 500; letter-spacing: .06em; margin-top: 2px; }

/* Swiper overrides */
.ahanas-testi__pagination { bottom: 0 !important; }
.ahanas-testi__pagination .swiper-pagination-bullet { background: var(--ah-mid-grey); opacity: 1; width: 8px; height: 8px; }
.ahanas-testi__pagination .swiper-pagination-bullet-active { background: var(--ah-primary); width: 24px; border-radius: 4px; }
.ahanas-testi__prev,
.ahanas-testi__next {
  color: var(--ah-primary) !important;
  width: 40px !important; height: 40px !important;
  background: var(--ah-white);
  border: 1px solid var(--ah-light-grey);
  border-radius: 50%;
  top: auto !important; bottom: -4px !important;
  transition: background .2s, border-color .2s;
}
.ahanas-testi__prev { right: 56px !important; left: auto !important; }
.ahanas-testi__next { right: 8px !important; }
.ahanas-testi__prev:hover,
.ahanas-testi__next:hover { background: var(--ah-primary); border-color: var(--ah-primary); color: var(--ah-white) !important; }
.ahanas-testi__prev::after,
.ahanas-testi__next::after { font-size: 13px !important; font-weight: 700 !important; }

/* ─────────────────────────────────────────────
   ABOUT US
───────────────────────────────────────────── */
.ahanas-about { background: var(--ah-white); }
.ahanas-about__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ahanas-about__image-wrap { position: relative; }
.ahanas-about__image-wrap img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; }
.ahanas-about__image-tag {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--ah-primary); color: var(--ah-white);
  font-size: 10px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; padding: 12px 20px;
}
.ahanas-about__content h2 { margin-bottom: 24px; }
.ahanas-about__stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--ah-light-grey); margin: 32px 0;
}
.ahanas-about__stat { padding: 20px 16px; border-right: 1px solid var(--ah-light-grey); text-align: center; }
.ahanas-about__stat:last-child { border-right: none; }
.ahanas-about__stat-num { display: block; font-size: 22px; font-weight: 700; color: var(--ah-primary); line-height: 1; margin-bottom: 6px; }
.ahanas-about__stat-lbl { display: block; font-size: 9px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--ah-mid-grey); }

/* ─────────────────────────────────────────────
   TEAM
───────────────────────────────────────────── */
.ahanas-team { background: var(--ah-off-white); }
.ahanas-team h2 { margin-bottom: 48px; }
.ahanas-team__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
.ahanas-team-card { background: var(--ah-white); overflow: hidden; }
.ahanas-team-card__img { aspect-ratio: 3/4; overflow: hidden; background: var(--ah-light-grey); }
.ahanas-team-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: top; filter: grayscale(20%) brightness(.95); transition: filter .4s; }
.ahanas-team-card:hover .ahanas-team-card__img img { filter: grayscale(0%) brightness(1); }
.ahanas-team-card__info { padding: 24px 28px 32px; }
.ahanas-team-card__role { font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--ah-primary); margin-bottom: 8px; }
.ahanas-team-card__name { font-size: 18px; font-weight: 600; color: var(--ah-black); margin-bottom: 12px; }
.ahanas-team-card__bio  { font-size: 12.5px; color: var(--ah-dark-grey); line-height: 1.75; margin: 0; }

/* ─────────────────────────────────────────────
   SEO COPY
───────────────────────────────────────────── */
.ahanas-seo-copy { background: var(--ah-white); }
.ahanas-seo__layout { display: grid; grid-template-columns: 300px 1fr; gap: 80px; align-items: start; }
.ahanas-seo__aside { position: sticky; top: 100px; }
.ahanas-seo__aside h2 { font-size: 28px; margin-bottom: 24px; }
.ahanas-seo__aside .ahanas-btn { margin-top: 28px; }
.ahanas-seo__body h2 { display: none; }
.ahanas-seo__h3 {
  font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ah-primary);
  margin-top: 36px; margin-bottom: 12px;
}
.ahanas-seo__h3:first-child { margin-top: 0; }
.ahanas-seo__body p { font-size: 14px; line-height: 1.85; color: var(--ah-dark-grey); }

/* ─────────────────────────────────────────────
   FAQ
───────────────────────────────────────────── */
.ahanas-faq { background: var(--ah-white); }
.ahanas-faq__header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 48px; align-items: end; }
.ahanas-faq__subtext { font-size: 14px; color: var(--ah-dark-grey); line-height: 1.8; margin: 0; }
.ahanas-faq__list { list-style: none; }
.ahanas-faq__item { border-bottom: 1px solid rgba(0,0,0,.1); }
.ahanas-faq__q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; cursor: pointer; user-select: none; gap: 20px;
}
.ahanas-faq__q-text { font-size: 15px; font-weight: 500; color: var(--ah-black); line-height: 1.4; }
.ahanas-faq__icon {
  flex-shrink: 0; width: 24px; height: 24px;
  border: 1px solid rgba(0,0,0,.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--ah-mid-grey);
  transition: all .2s; font-weight: 300; line-height: 1;
}
.ahanas-faq__item.open .ahanas-faq__icon {
  background: var(--ah-primary); border-color: var(--ah-primary);
  color: var(--ah-white); transform: rotate(45deg);
}
.ahanas-faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.ahanas-faq__item.open .ahanas-faq__a { max-height: 400px; }
.ahanas-faq__a-inner { padding-bottom: 22px; font-size: 13.5px; color: var(--ah-dark-grey); line-height: 1.8; }

/* ─────────────────────────────────────────────
   CTA FORM
───────────────────────────────────────────── */
.ahanas-cta-form { background: var(--ah-dark); color: var(--ah-white); }
.ahanas-cta-form .ahanas-section { padding: 96px 0; }
.ahanas-cta__heading h2 { color: var(--ah-white); font-size: clamp(26px,3vw,42px); margin-bottom: 0; }
.ahanas-cta_heading em { color: #e8a0a3; font-style: normal; font-weight: 300; }
.ahanas-cta__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 56px; }
.ahanas-cta__left > p { font-size: 14px; line-height: 1.85; color: rgba(255,255,255,.6); margin-bottom: 32px; }
.ahanas-cta__detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.ahanas-cta__detail-icon { flex-shrink: 0; display: flex; margin-top: 3px; }
.ahanas-cta__detail-text { font-size: 12.5px; color: rgba(255,255,255,.6)!important; line-height: 1.6; margin: 0; }
.ahanas-cta__detail-text strong { color: var(--ah-white); font-weight: 600; display: block; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 2px; }

/* Form */
.ahanas-form { display: flex; flex-direction: column; }
.ahanas-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.ahanas-form__field { display: flex; flex-direction: column; }
.ahanas-form__field label {
  font-size: 9px; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
  margin-bottom: 8px; margin-top: 2px;
}
.ahanas-form__field input,
.ahanas-form__field select,
.ahanas-form__field textarea {
  background: rgba(255,255,255,.06)!important;
  border: none!important; border-bottom: 1px solid rgba(255,255,255,.2)!important;
  color: var(--ah-white); font-family: var(--ah-font); font-size: 13px; font-weight: 300;
  padding: 12px 0; margin-bottom: 20px; outline: none!important;
  transition: border-color .2s; width: 100%!important; border-radius: 0!important; -webkit-appearance: none!important;
}
.ahanas-form__field select { cursor: pointer; }
.ahanas-form__field select option { background: #1a1a1a; color: var(--ah-white); }
.ahanas-form__field input::placeholder,
.ahanas-form__field textarea::placeholder { color: rgba(255,255,255,.3); }
.ahanas-form__field input:focus,
.ahanas-form__field select:focus,
.ahanas-form__field textarea:focus { border-bottom-color: #e8a0a3; }
.ahanas-form__field textarea { resize: none; height: 90px; }
.ahanas-form__submit { display: flex; align-items: center; gap: 20px; margin-top: 8px; }
.ahanas-form__submit .ahanas-btn { cursor: pointer; }
.ahanas-form__note { font-size: 11px; color: rgba(255,255,255,.35); line-height: 1.5; margin: 0; }

/* ─────────────────────────────────────────────
   WHATSAPP FLOAT
───────────────────────────────────────────── */
.ahanas-wa-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 52px; height: 52px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  transition: transform .2s, box-shadow .2s;
}
.ahanas-wa-btn:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,.45); }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 960px) {
  .ahanas-container { padding: 0 24px; }
  .ahanas-section { padding: 64px 0; }
  .ahanas-hero__content { padding: 0 24px 60px; }
  .ahanas-hero__h1 { font-size: 36px; }
  .ahanas-hero__strip { display: none; }
  .ahanas-services__intro { grid-template-columns: 1fr; gap: 24px; }
  .ahanas-services__grid { grid-template-columns: 1fr; }
  .ahanas-portfolio__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .ahanas-proj:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .ahanas-proj:nth-child(1) { grid-column: span 2; }
  .ahanas-why__layout { grid-template-columns: 1fr; gap: 48px; }
  .ahanas-why__image { aspect-ratio: 16/9; }
  .ahanas-about__layout { grid-template-columns: 1fr; gap: 48px; }
  .ahanas-about__image-tag { right: 0; bottom: 0; }
  .ahanas-about__stats { grid-template-columns: repeat(2,1fr); }
  .ahanas-team__grid { grid-template-columns: 1fr 1fr; }
  .ahanas-seo__layout { grid-template-columns: 1fr; gap: 40px; }
  .ahanas-seo__aside { position: static; }
  .ahanas-faq__header { grid-template-columns: 1fr; gap: 24px; }
  .ahanas-cta__layout { grid-template-columns: 1fr; gap: 48px; }
  .ahanas-form__row { grid-template-columns: 1fr; }
  .ahanas-testi__prev { right: 52px !important; }
}
@media (max-width: 560px) {
  .ahanas-team__grid { grid-template-columns: 1fr; }
  .ahanas-portfolio__grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .ahanas-proj:nth-child(n) { grid-column: span 1; }
  .ahanas-about__stats { grid-template-columns: repeat(2,1fr); }
}


/* ─────────────────────────────────────────────
   LOCATIONS
───────────────────────────────────────────── */
.ahanas-locations { background: var(--ah-off-white); }

.ahanas-locations__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}

.ahanas-locations__subtext {
  font-size: 14px;
  color: var(--ah-dark-grey);
  line-height: 1.8;
  margin: 0 !important;
}

.ahanas-locations__grid {
  display: grid;
 grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

/* ── Card ── */
.ahanas-loc-card {
  background: var(--ah-white);
  padding: 24px 20px 28px;
  position: relative;
  transition: background 0.2s;
  border-bottom: 2px solid transparent;
}

.ahanas-loc-card:hover {
  background: var(--ah-primary-light);
  border-bottom-color: var(--ah-primary);
}

.ahanas-loc-card__pin {
  margin-bottom: 14px;
  display: flex;
}

.ahanas-loc-card__name {
  font-family: var(--ah-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ah-black);
  margin-bottom: 10px;
  line-height: 1.3;
}

.ahanas-loc-card__desc {
  font-size: 11.5px;
  font-weight: 400;
  color: var(--ah-dark-grey);
  line-height: 1.7;
  margin: 0 !important;
}

/* ── CTA ── */
.ahanas-locations__cta {
  margin-top: 40px;
  text-align: center;
}

.ahanas-locations__cta p {
  font-size: 13px;
  color: var(--ah-dark-grey);
  margin: 0;
}

.ahanas-locations__cta a {
  color: var(--ah-primary);
  font-weight: 600;
  border-bottom: 1px solid var(--ah-primary);
  padding-bottom: 1px;
  transition: opacity 0.2s;
}

.ahanas-locations__cta a:hover { opacity: 0.75; }

/* SEO hidden keyword span — visible to Google, hidden to users */
.ahanas-loc-seo {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .ahanas-locations__grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 960px) {
  .ahanas-locations__header { grid-template-columns: 1fr; gap: 20px; }
  .ahanas-locations__grid   { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 560px) {
  .ahanas-locations__grid { grid-template-columns: repeat(1, 1fr); }
}