@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --aq-bg: var(--kececidigital-bg-light, #FAF8F5);
  --aq-surface: #F3EFE6;
  --aq-card: var(--kececidigital-bg-card, #FFFFFF);
  --aq-ink: var(--kececidigital-heading, #1F1A17);
  --aq-body: var(--kececidigital-text, #635A52);
  --aq-gold: var(--kececidigital-primary, #C5A059);
  --aq-gold-dark: var(--kececidigital-primary-hover, #A68544);
  --aq-gold-light: var(--kececidigital-secondary, #FAF5EB);
  --aq-border: var(--kececidigital-border, #E6DFD5);
  
  --aq-serif: 'Playfair Display', Georgia, serif;
  --aq-sans: 'Plus Jakarta Sans', sans-serif;
  
  --aq-shadow-sm: 0 4px 12px rgba(31, 26, 23, 0.04);
  --aq-shadow-md: 0 12px 32px rgba(31, 26, 23, 0.08);
  --aq-shadow-lg: 0 24px 64px rgba(31, 26, 23, 0.12);
}

.antiq-theme {
  font-family: var(--aq-sans);
  color: var(--aq-body);
  background:
    linear-gradient(90deg, rgba(31, 26, 23, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 26, 23, 0.05) 1px, transparent 1px),
    var(--aq-bg);
  background-size: 56px 56px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.antiq-theme * { box-sizing: border-box; }
.antiq-theme img { display: block; max-width: 100%; height: auto; }
.aq-container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ============================================================
   TYPOGRAPHY & BUTTONS
   ============================================================ */
.antiq-theme h1, .antiq-theme h2, .antiq-theme h3, .antiq-theme h4 {
  font-family: var(--aq-serif);
  color: var(--aq-ink);
  line-height: 1.18;
  margin: 0;
}
.antiq-theme h1 { font-size: clamp(40px, 5.5vw, 68px); font-weight: 600; }
.antiq-theme h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 600; }
.antiq-theme h3 { font-size: 24px; font-weight: 600; }
.antiq-theme h1 em, .antiq-theme h2 em { color: var(--aq-gold); font-style: italic; }
.antiq-theme p { margin: 0; }

.aq-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--aq-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--aq-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.aq-kicker::before { content: ''; width: 40px; height: 1px; background: var(--aq-gold); }

.aq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--aq-sans);
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  letter-spacing: 0.5px;
}
.aq-btn--primary {
  background: var(--aq-gold);
  color: #FFFFFF;
  border: 1px solid var(--aq-gold);
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.25);
}
.aq-btn--primary:hover {
  background: var(--aq-gold-dark);
  border-color: var(--aq-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(197, 160, 89, 0.35);
  color: #FFFFFF;
}
.aq-btn--ghost {
  background: transparent;
  color: var(--aq-ink);
  border: 2px solid var(--aq-gold);
}
.aq-btn--ghost:hover {
  background: var(--aq-gold);
  color: #FFFFFF;
  transform: translateY(-2px);
}
.aq-btn--light {
  background: #FFFFFF;
  color: var(--aq-ink);
  border: 1px solid #FFFFFF;
  box-shadow: var(--aq-shadow-sm);
}
.aq-btn--light:hover {
  background: var(--aq-gold);
  color: #FFFFFF;
  border-color: var(--aq-gold);
  transform: translateY(-2px);
}

.aq-section-head { margin-bottom: 56px; max-width: 680px; }
.aq-section-head h2 { margin-bottom: 18px; }
.aq-section-head p { font-size: 18px; color: var(--aq-body); }

.aq-section-head--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  max-width: none;
  margin-bottom: 64px;
}
.aq-section-head--split > div { max-width: 680px; }
.aq-section-head--split > p { max-width: 440px; text-align: right; font-size: 18px; margin-bottom: 8px; }

/* ============================================================
   HERO — Immersive Antique Slider (Premium & Dynamic)
   ============================================================ */
.aq-hero--slider {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 650px;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #0d0b0a;
}

.aq-hero__slides {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.aq-hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  align-items: center;
}

.aq-hero__slide.is-active {
  opacity: 1;
  z-index: 2;
}

/* Cinematic Ken Burns slow zoom */
.aq-hero__slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 7s ease-out;
  will-change: transform;
}

.aq-hero__slide.is-active .aq-hero__slide-bg {
  transform: scale(1.0);
}

.aq-hero__slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 12, 11, 0.95) 0%,
    rgba(15, 12, 11, 0.75) 45%,
    rgba(15, 12, 11, 0.25) 100%
  );
  z-index: 1;
}

.aq-hero__content-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.aq-hero__slide .aq-hero__copy {
  max-width: 620px;
  color: #fff;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: 0.4s;
  background: rgba(15, 12, 11, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid rgba(197, 160, 89, 0.35);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.aq-hero__slide.is-active .aq-hero__copy {
  opacity: 1;
  transform: translateY(0);
}

.aq-hero__slide .aq-hero__copy .aq-kicker {
  color: var(--aq-gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.aq-hero__slide .aq-hero__copy h1 {
  font-family: var(--aq-serif);
  font-size: 52px;
  font-weight: 400;
  line-height: 1.15;
  color: #f7f5f2;
}

.aq-hero__slide .aq-hero__copy h1 em {
  font-style: italic;
  color: var(--aq-gold);
  font-family: var(--aq-serif);
}

.aq-hero__slide .aq-hero__copy p {
  font-size: 17px;
  line-height: 1.6;
  margin-top: 20px;
  color: #d1c8be;
}

.aq-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }

/* Slider Controls */
.aq-hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(15, 12, 11, 0.7);
  border: 1px solid rgba(197, 160, 89, 0.4);
  color: var(--aq-gold);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.aq-hero__nav:hover {
  background: var(--aq-gold);
  color: var(--aq-ink);
  border-color: var(--aq-gold);
  box-shadow: 0 0 15px rgba(197, 160, 89, 0.4);
}

.aq-hero__nav--prev {
  left: 32px;
}

.aq-hero__nav--next {
  right: 32px;
}

/* Slider Footer (dots + stats) */
.aq-hero__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 24px 48px;
  background: linear-gradient(to top, rgba(15, 12, 11, 0.9) 0%, rgba(15, 12, 11, 0) 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}

.aq-hero__dots {
  display: flex;
  gap: 12px;
}

.aq-hero__dot {
  width: 32px;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.4s ease;
}

.aq-hero__dot.is-active {
  background: var(--aq-gold);
  width: 48px;
}

.aq-hero__stats {
  display: flex;
  gap: 36px;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.aq-hero__stat-item {
  text-align: left;
}

.aq-hero__stat-item strong {
  display: block;
  font-family: var(--aq-serif);
  font-size: 28px;
  color: var(--aq-gold);
  line-height: 1;
}

.aq-hero__stat-item span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #d1c8be;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .aq-hero--slider {
    height: 85vh;
  }
  .aq-hero__slide .aq-hero__copy h1 {
    font-size: 42px;
  }
  .aq-hero__nav {
    display: none; /* Hide arrows on smaller screens */
  }
  .aq-hero__footer {
    padding: 24px 32px;
  }
}

@media (max-width: 768px) {
  .aq-hero--slider {
    height: 520px;
    min-height: 520px;
  }
  .aq-hero__slides {
    position: absolute;
    inset: 0;
    height: auto;
  }
  .aq-hero__slide {
    align-items: center;
  }
  .aq-hero__slide-bg {
    background-position: center;
  }
  .aq-hero__slide-overlay {
    background:
      linear-gradient(to bottom, rgba(15, 12, 11, 0.24) 0%, rgba(15, 12, 11, 0.5) 44%, rgba(15, 12, 11, 0.88) 100%),
      linear-gradient(to right, rgba(15, 12, 11, 0.56), rgba(15, 12, 11, 0.16));
  }
  .aq-hero__content-container {
    align-self: flex-end;
    padding: 0 20px 112px;
  }
  .aq-hero__slide .aq-hero__copy {
    width: 100%;
    max-width: 420px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .aq-hero__slide .aq-hero__copy .aq-kicker {
    margin-bottom: 10px;
    font-size: 11px;
    letter-spacing: 1px;
  }
  .aq-hero__slide .aq-hero__copy h1 {
    font-size: 28px;
    line-height: 1.12;
  }
  .aq-hero__slide .aq-hero__copy p {
    display: none;
  }
  .aq-actions {
    margin-top: 18px;
  }
  .aq-actions .aq-btn {
    width: auto;
    min-height: 42px;
    padding: 11px 18px;
    font-size: 13px;
  }
  .aq-hero__footer {
    flex-direction: row;
    gap: 14px;
    align-items: flex-end;
    padding: 16px 20px;
    background: linear-gradient(to top, rgba(15, 12, 11, 0.92), rgba(15, 12, 11, 0));
  }
  .aq-hero__dots { gap: 8px; }
  .aq-hero__dot { width: 22px; }
  .aq-hero__dot.is-active { width: 32px; }
  .aq-hero__stats {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    width: auto;
  }
  .aq-hero__stat-item {
    text-align: right;
  }
  .aq-hero__stat-item:nth-child(n+3) { display: none; }
  .aq-hero__stat-item strong {
    font-size: 18px;
  }
  .aq-hero__stat-item span {
    font-size: 8px;
    line-height: 1.25;
  }
}

/* ============================================================
   INNER PAGE - About
   ============================================================ */
.aq-page-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(197, 160, 89, 0.22), transparent 26%),
    linear-gradient(135deg, #1F1A17 0%, #332821 100%);
  background-size: cover;
  background-position: center;
}
.aq-page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(15, 12, 11, 0.9), rgba(15, 12, 11, 0.62) 48%, rgba(15, 12, 11, 0.22)),
    linear-gradient(to top, rgba(15, 12, 11, 0.82), rgba(15, 12, 11, 0.05));
}
.aq-page-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  padding-top: 132px;
  padding-bottom: 64px;
}
.aq-page-hero__copy {
  max-width: 720px;
  padding: 36px 40px;
  border: 1px solid rgba(197, 160, 89, 0.34);
  border-radius: 8px;
  background: rgba(15, 12, 11, 0.54);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.aq-page-hero__copy h1 { color: #F7F5F2; }
.aq-page-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 14px;
  max-width: 520px;
}
.aq-page-hero__stats > div {
  padding: 20px 22px;
  border: 1px solid rgba(197, 160, 89, 0.32);
  border-radius: 8px;
  background: rgba(15, 12, 11, 0.62);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}
.aq-page-hero__stats strong {
  display: block;
  font-family: var(--aq-serif);
  font-size: 32px;
  line-height: 1;
  color: var(--aq-gold);
}
.aq-page-hero__stats span {
  display: block;
  margin-top: 7px;
  font-size: 11px;
  font-weight: 800;
  color: #D1C8BE;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.aq-about-page__grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.aq-about-page__head {
  width: 100%;
  padding: 0;
}
.aq-about-page__head h2 {
  max-width: none;
}
.aq-about-page__head p {
  max-width: 920px;
}
.aq-about-page__body {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 42px;
  align-items: start;
}
.aq-about-page .aq-about__image {
  width: 100%;
  max-width: none;
  margin: 0;
  aspect-ratio: 3 / 2;
  height: auto;
  padding: 16px;
  overflow: hidden;
}
.aq-about-page .aq-about__image::before {
  inset: 20px;
}
.aq-about-page .aq-about__image::after {
  left: 28px;
  right: 28px;
}
.aq-about-page .aq-about__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.aq-about-page .aq-about__notes {
  align-self: stretch;
}
.aq-about-page__content { display: flex; flex-direction: column; gap: 32px; }
.aq-about-page__prose {
  padding: 30px 32px;
  border: 1px solid rgba(197, 160, 89, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--aq-body);
  box-shadow: 0 18px 38px rgba(31, 26, 23, 0.07);
}
.aq-about-page__prose p + p { margin-top: 18px; }
.aq-about-page__prose h2,
.aq-about-page__prose h3,
.aq-about-page__prose h4 { margin: 0 0 14px; }
.aq-about-page__prose a { color: var(--aq-gold-dark); font-weight: 700; }
.aq-about-page__entry {
  padding: 96px 0;
  background: var(--aq-card);
  border-top: 1px solid var(--aq-border);
}

/* ============================================================
   ABOUT — Premium Gallery Grid
   ============================================================ */
.aq-about {
  padding: 118px 0;
  background:
    linear-gradient(90deg, rgba(31, 26, 23, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 26, 23, 0.04) 1px, transparent 1px),
    var(--aq-card);
  background-size: 64px 64px;
  border-top: 1px solid var(--aq-border);
  border-bottom: 1px solid var(--aq-border);
}
.aq-about__grid { display: grid; grid-template-columns: 0.95fr 0.9fr 1.05fr; gap: 42px; align-items: center; }

.aq-about__label { position: relative; padding: 36px 0; }
.aq-about__label::after {
  content: '';
  display: block;
  width: 96px;
  height: 3px;
  margin-top: 34px;
  background: var(--aq-gold);
}
.aq-about__label p { font-size: 18px; margin-top: 22px; color: var(--aq-body); }

.aq-about__tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.aq-about__tags span {
  padding: 9px 13px;
  border: 1px solid rgba(197, 160, 89, 0.42);
  border-radius: 999px;
  background: rgba(250, 245, 235, 0.78);
  font-size: 12px;
  font-weight: 800;
  color: var(--aq-ink);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.aq-about__image {
  position: relative;
  aspect-ratio: 4/5;
  padding: 18px;
  border-radius: 8px;
  background: #FFFFFF;
  box-shadow: 0 24px 54px rgba(31, 26, 23, 0.13);
}
.aq-about__image::before {
  content: '';
  position: absolute;
  inset: 32px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.58);
  pointer-events: none;
}
.aq-about__image::after {
  content: '';
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: -16px;
  height: 24px;
  border-radius: 999px;
  background: rgba(31, 26, 23, 0.16);
  filter: blur(18px);
  pointer-events: none;
}
.aq-about__image img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; }
.aq-about__stamp {
  position: absolute;
  z-index: 3;
  left: -16px;
  right: 28px;
  bottom: 32px;
  padding: 18px 22px;
  border-left: 4px solid var(--aq-gold);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--aq-shadow-md);
}
.aq-about__stamp span {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 800;
  color: var(--aq-gold);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.aq-about__stamp strong {
  display: block;
  font-family: var(--aq-serif);
  font-size: 21px;
  line-height: 1.25;
  color: var(--aq-ink);
}

.aq-about__notes { display: flex; flex-direction: column; gap: 16px; }
.aq-about__notes article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  align-items: start;
  background: rgba(250, 248, 245, 0.92);
  border: 1px solid var(--aq-border);
  border-radius: 8px;
  padding: 24px 26px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.aq-about__notes article::before {
  content: '';
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 54px;
  width: 1px;
  background: var(--aq-border);
}
.aq-about__notes article:hover {
  border-color: var(--aq-gold);
  transform: translateY(-3px);
  box-shadow: var(--aq-shadow-md);
  background: #FFFFFF;
}
.aq-about__notes article > span {
  font-family: var(--aq-serif);
  font-size: 26px;
  color: var(--aq-gold);
  line-height: 1;
}
.aq-about__notes i { color: var(--aq-gold); font-size: 18px; margin-bottom: 12px; display: block; }
.aq-about__notes h3 { font-size: 21px; margin-bottom: 8px; color: var(--aq-ink); }
.aq-about__notes p { font-size: 15px; color: var(--aq-body); }

/* ============================================================
   SERVICES — Envato Elite Catalog Grid
   ============================================================ */
/* ============================================================
   GALLERY - Selected Display Pieces
   ============================================================ */
.aq-gallery {
  padding: 112px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(197, 160, 89, 0.1), transparent 26%),
    var(--aq-bg);
  border-bottom: 1px solid var(--aq-border);
}
.aq-gallery-grid { display: grid; grid-template-columns: 1.05fr 0.95fr 1.05fr; gap: 24px; align-items: stretch; }
.aq-gallery-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 10px;
  padding: 16px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(31, 26, 23, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.aq-gallery-card::before {
  content: '';
  position: absolute;
  inset: 28px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.62);
  pointer-events: none;
}
.aq-gallery-card:nth-child(2) { transform: translateY(38px); }
.aq-gallery-card:hover {
  border-color: var(--aq-gold);
  box-shadow: 0 28px 58px rgba(31, 26, 23, 0.13);
}
.aq-gallery-card:nth-child(2):hover { transform: translateY(30px); }
.aq-gallery-card__image {
  position: relative;
  height: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  overflow: hidden;
  background: var(--aq-surface);
}
.aq-gallery-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.aq-gallery-card:hover .aq-gallery-card__image img { transform: scale(1.04); }

/* ============================================================
   WHY US - Antique Appraisal Desk
   ============================================================ */
.aq-why {
  position: relative;
  padding: 118px 0;
  background:
    linear-gradient(90deg, rgba(31, 26, 23, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 26, 23, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, #FCF8F0 0%, #EFE3D2 100%);
  background-size: 56px 56px, 56px 56px, auto;
  color: var(--aq-body);
  border-top: 1px solid var(--aq-border);
  border-bottom: 1px solid var(--aq-border);
  overflow: hidden;
}
.aq-why::before {
  content: '';
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(197, 160, 89, 0.22);
  pointer-events: none;
}
.aq-why .aq-container { position: relative; z-index: 1; }
.aq-why .aq-kicker { color: var(--aq-gold); }
.aq-why h2, .aq-why h3 { color: var(--aq-ink); }
.aq-why h2 em { color: var(--aq-gold); }

.aq-why__grid { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: 64px; align-items: start; }
.aq-why__intro { position: sticky; top: 40px; padding: 18px 0; }
.aq-why__intro p { font-size: 18px; margin-top: 24px; color: var(--aq-body); }

.aq-why__note {
  position: relative;
  margin-top: 36px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(197, 160, 89, 0.34);
  border-radius: 8px;
  box-shadow: 0 20px 44px rgba(31, 26, 23, 0.08);
}
.aq-why__note::before {
  content: '';
  position: absolute;
  top: 14px;
  right: 14px;
  bottom: 14px;
  left: 14px;
  border: 1px solid rgba(197, 160, 89, 0.18);
  pointer-events: none;
}
.aq-why__note span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  color: var(--aq-gold);
  text-transform: uppercase;
  letter-spacing: 1.4px;
}
.aq-why__note span::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--aq-gold);
}
.aq-why__note strong {
  position: relative;
  display: block;
  margin-top: 12px;
  font-family: var(--aq-serif);
  font-size: 22px;
  line-height: 1.45;
  color: var(--aq-ink);
  font-weight: 600;
}

.aq-why__ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.aq-why__ledger article {
  position: relative;
  min-height: 278px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(31, 26, 23, 0.07);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background 0.3s;
}
.aq-why__ledger article::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--aq-gold), rgba(197, 160, 89, 0.18));
}
.aq-why__card-label {
  position: absolute;
  right: 24px;
  bottom: 18px;
  font-size: 10px;
  font-weight: 800;
  color: rgba(31, 26, 23, 0.22);
  text-transform: uppercase;
  letter-spacing: 1.4px;
}
.aq-why__ledger article:nth-child(2n) { transform: translateY(32px); }
.aq-why__ledger article:hover {
  transform: translateY(-6px);
  background: #FFFFFF;
  border-color: var(--aq-gold);
  box-shadow: 0 26px 54px rgba(31, 26, 23, 0.12);
}
.aq-why__ledger article:nth-child(2n):hover { transform: translateY(24px); }
.aq-why__mark {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 36px;
}
.aq-why__mark span {
  font-family: var(--aq-serif);
  font-size: 46px;
  font-weight: 700;
  color: rgba(197, 160, 89, 0.48);
  line-height: 1;
}
.aq-why__mark i {
  width: 58px;
  height: 58px;
  background: var(--aq-ink);
  border: 1px solid rgba(197, 160, 89, 0.32);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--aq-gold);
  flex-shrink: 0;
  transition: all 0.3s;
}
.aq-why__ledger article:hover .aq-why__mark i {
  background: var(--aq-gold);
  color: var(--aq-ink);
  border-color: var(--aq-gold);
}
.aq-why__ledger h3 { font-size: 23px; margin-bottom: 12px; }
.aq-why__ledger p { font-size: 15.5px; margin: 0; color: var(--aq-body); }

/* ============================================================
   REVIEWS — Testimonial Showcase
   ============================================================ */
.aq-reviews { padding: 104px 0; background: var(--aq-card); border-bottom: 1px solid var(--aq-border); }
.aq-review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.aq-review-card {
  background: transparent;
  border: 1px solid var(--aq-border);
  border-top: 3px solid var(--aq-gold);
  border-radius: 8px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  transition: background 0.25s, border-color 0.25s;
}
.aq-review-card:hover { background: var(--aq-gold-light); border-color: rgba(197, 160, 89, 0.42); }

.aq-stars { color: var(--aq-gold); font-size: 13px; display: flex; gap: 4px; margin-bottom: 22px; }
.aq-review-card blockquote {
  font-family: var(--aq-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--aq-ink);
  line-height: 1.62;
  margin: 0 0 28px;
  flex: 1;
}
.aq-review-card cite {
  border-top: 1px solid var(--aq-border);
  padding-top: 16px;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.aq-review-card cite strong { display: block; color: var(--aq-ink); font-size: 15px; font-weight: 700; }
.aq-review-card cite span { display: block; color: var(--aq-body); font-size: 13px; }

/* ============================================================
   BLOG — Premium Editorial Rows
   ============================================================ */
.aq-blog { padding: 112px 0; background: var(--aq-bg); border-bottom: 1px solid var(--aq-border); }
.aq-blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.aq-blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--aq-card);
  border: 1px solid var(--aq-border);
  border-radius: 8px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.aq-blog-card:hover {
  border-color: rgba(197, 160, 89, 0.55);
  transform: translateY(-3px);
  box-shadow: var(--aq-shadow-md);
}
.aq-blog-card__image {
  aspect-ratio: 4 / 3;
  background: var(--aq-surface);
  overflow: hidden;
}
.aq-blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.aq-blog-card:hover .aq-blog-card__image img { transform: scale(1.04); }
.aq-blog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
}
.aq-blog-card span {
  display: inline-flex;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 800;
  color: var(--aq-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.aq-blog-card h3 { font-family: var(--aq-serif); font-size: 22px; color: var(--aq-ink); margin: 0 0 12px; }
.aq-blog-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 15px;
  color: var(--aq-body);
  margin: 0 0 22px;
}
.aq-blog-card i {
  width: 38px;
  height: 38px;
  margin-top: auto;
  background: var(--aq-gold-light);
  color: var(--aq-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.aq-blog-card:hover i { background: var(--aq-gold); color: #FFFFFF; transform: translateX(4px); }

/* ============================================================
   FAQ — Elegant Accordion
   ============================================================ */
.aq-faq { padding: 112px 0; background: var(--aq-card); border-bottom: 1px solid var(--aq-border); }
.aq-faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 80px; align-items: start; }
.aq-faq__grid > div:first-child p { font-size: 18px; margin-top: 18px; color: var(--aq-body); }
.aq-faq__items { display: flex; flex-direction: column; gap: 16px; }
.aq-faq__items--two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.aq-faq details {
  background: var(--aq-bg);
  border: 1px solid var(--aq-border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
}
.aq-faq details:hover { border-color: var(--aq-gold); box-shadow: var(--aq-shadow-sm); }
.aq-faq summary {
  padding: 24px 32px;
  font-family: var(--aq-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--aq-ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.aq-faq summary::-webkit-details-marker { display: none; }
.aq-faq summary span {
  width: 36px;
  height: 36px;
  background: var(--aq-gold-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--aq-gold);
  font-weight: 700;
  transition: all 0.3s;
  flex-shrink: 0;
}
details[open] summary span { background: var(--aq-gold); color: #FFFFFF; transform: rotate(45deg); }
.aq-faq details p {
  padding: 0 32px 28px;
  font-size: 16px;
  color: var(--aq-body);
  border-top: 1px solid var(--aq-border);
  margin-top: 8px;
  padding-top: 20px;
}
.aq-faq-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--aq-border);
  border-radius: 14px;
  background: var(--aq-card);
  box-shadow: var(--aq-shadow-sm);
}
.aq-faq-card__question {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px 30px;
  background: var(--aq-bg);
  border-bottom: 1px solid var(--aq-border);
}
.aq-faq-card__question i {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--aq-gold-light);
  color: var(--aq-gold);
  font-size: 18px;
}
.aq-faq-card__question h3 {
  margin: 3px 0 0;
  font-size: 22px;
}
.aq-faq-card__answer {
  padding: 26px 30px 30px;
  color: var(--aq-body);
}
.aq-faq-card__answer p + p { margin-top: 14px; }
.aq-faq-bordered {
  overflow: hidden;
  border: 2px solid rgba(197, 160, 89, 0.38);
  border-radius: 18px;
  background: rgba(250, 245, 235, 0.68);
}
.aq-faq-bordered h3 {
  padding: 24px 30px;
  background: var(--aq-ink);
  color: #FFFFFF;
  font-size: 23px;
}
.aq-faq-bordered > div {
  padding: 26px 30px;
  border-top: 1px dashed rgba(197, 160, 89, 0.42);
  color: var(--aq-body);
}
.aq-faq-card-accordion {
  background: var(--aq-card) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 42px rgba(31, 26, 23, 0.08);
}
.aq-faq-card-accordion summary {
  padding: 26px 30px;
}
.aq-faq-card-accordion p {
  background: var(--aq-card);
}
.aq-faq-page__note {
  margin-top: 36px;
}
.aq-faq-page__note .aq-btn {
  position: relative;
  margin-top: 22px;
}
.aq-faq-page__empty {
  padding: 30px 32px;
  border: 1px solid rgba(197, 160, 89, 0.34);
  border-radius: 14px;
  background: var(--aq-gold-light);
  color: var(--aq-body);
}
.aq-faq-page__empty strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--aq-serif);
  font-size: 22px;
  color: var(--aq-ink);
}
.aq-faq-page__entry {
  padding: 96px 0;
  background: var(--aq-bg);
  border-top: 1px solid var(--aq-border);
}

/* ============================================================
   CONTACT & MAP
   ============================================================ */
.aq-contact { padding: 112px 0; background: var(--aq-surface); }
.aq-contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.aq-contact__head {
  max-width: 760px;
  margin-bottom: 34px;
}
.aq-contact__head h2 { margin-bottom: 0; }
.aq-contact__copy h2 { margin-bottom: 20px; }
.aq-contact__copy > p { font-size: 18px; margin-bottom: 40px; color: var(--aq-body); }

.aq-contact__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.aq-contact__cards > div {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--aq-card);
  border: 1px solid var(--aq-border);
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: var(--aq-shadow-sm);
  min-height: 112px;
}
.aq-contact__cards i {
  width: 50px;
  height: 50px;
  background: var(--aq-gold-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--aq-gold);
  flex-shrink: 0;
}
.aq-contact__cards span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--aq-body);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.aq-contact__cards strong { font-size: 18px; color: var(--aq-ink); font-weight: 600; }

.aq-contact__main {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 28px;
  align-items: stretch;
}
.aq-contact__main .aq-contact-form-card {
  min-height: 620px;
}
.aq-contact__map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--aq-border);
  box-shadow: var(--aq-shadow-md);
  min-height: 620px;
  height: 100%;
}
.aq-contact__map img, .aq-contact__map iframe { width: 100%; height: 100%; object-fit: cover; display: block; }
.aq-contact__cards a {
  color: inherit;
  text-decoration: none;
}
.aq-contact__cards a:hover strong {
  color: var(--aq-gold-dark);
}
.aq-contact-page__map-empty {
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--aq-bg);
  color: var(--aq-gold);
  font-size: 56px;
}
.aq-contact-page__head {
  max-width: 760px;
  margin-bottom: 44px;
}
.aq-contact-page__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 14px;
  margin-bottom: 32px;
}
.aq-contact-page__cards > div {
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.72);
  height: 100%;
}
.aq-contact-page__cards i {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-size: 14px;
}
.aq-contact-page__cards span {
  margin-bottom: 2px;
  font-size: 10px;
  letter-spacing: 0.8px;
}
.aq-contact-page__cards strong {
  font-size: 13.5px;
  line-height: 1.4;
  font-weight: 600;
}
.aq-contact-page__main {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 28px;
  align-items: stretch;
}
.aq-contact-page__main .aq-contact__map {
  min-height: 640px;
}
.aq-contact-page__main .aq-contact-form-card {
  min-height: 640px;
}
.aq-contact-form-section {
  padding: 112px 0;
  background: var(--aq-card);
  border-top: 1px solid var(--aq-border);
  border-bottom: 1px solid var(--aq-border);
}
.aq-contact-form-section__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.aq-contact-form-card {
  padding: 34px;
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 12px;
  background: var(--aq-bg);
  box-shadow: var(--aq-shadow-sm);
}
.aq-contact-form-card__head {
  margin-bottom: 28px;
}
.aq-contact-form-card__head h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 40px);
}
.aq-contact-form-card__head p {
  color: var(--aq-body);
}
.aq-contact-form-card p {
  color: var(--aq-body);
}
.aq-contact-form-card input,
.aq-contact-form-card textarea,
.aq-contact-form-card select {
  width: 100%;
  border: 1px solid var(--aq-border);
  border-radius: 8px;
  background: #FFFFFF;
  color: var(--aq-ink);
}
.aq-contact-form-card input[type="submit"],
.aq-contact-form-card button[type="submit"] {
  width: auto;
  min-width: 160px;
  border-color: var(--aq-gold);
  background: var(--aq-gold);
  color: #FFFFFF;
  font-weight: 700;
  cursor: pointer;
}
.aq-contact-form-card input[type="submit"]:hover,
.aq-contact-form-card button[type="submit"]:hover {
  background: var(--aq-gold-dark);
  border-color: var(--aq-gold-dark);
}

/* ============================================================
   BRANCHES - Location Cards
   ============================================================ */
.aq-branches-page {
  padding: 112px 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(197, 160, 89, 0.11), transparent 28%),
    var(--aq-bg);
  border-bottom: 1px solid var(--aq-border);
}
.aq-branches-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.aq-branch-card {
  overflow: hidden;
  border: 1px solid var(--aq-border);
  border-radius: 8px;
  background: var(--aq-card);
  transition: border-color 0.2s ease;
}
.aq-branch-card:hover {
  border-color: rgba(197, 160, 89, 0.45);
}
.aq-branch-card__map {
  height: 180px;
  background: var(--aq-surface);
  border-bottom: 1px solid var(--aq-border);
}
.aq-branch-card__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.aq-branch-card__body {
  padding: 20px 22px 22px;
}
.aq-branch-card__body h3 {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}
.aq-branch-card__meta {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.aq-branch-card__meta li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--aq-body);
}
.aq-branch-card__meta i {
  width: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 13px;
  color: var(--aq-gold);
  text-align: center;
}
.aq-branch-card__meta a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.aq-branch-card__meta a:hover {
  color: var(--aq-gold-dark);
}
.aq-branch-card__actions {
  padding-top: 14px;
  border-top: 1px solid var(--aq-border);
}
.aq-branch-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--aq-gold-dark);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}
.aq-branch-card__link i {
  font-size: 11px;
  opacity: 0.85;
}
.aq-branch-card__link:hover {
  color: var(--aq-ink);
  gap: 8px;
}
.aq-branches-empty {
  max-width: 640px;
  margin: 0 auto;
  padding: 46px;
  border: 1px solid rgba(197, 160, 89, 0.34);
  border-radius: 14px;
  background: var(--aq-card);
  text-align: center;
  box-shadow: var(--aq-shadow-sm);
}
.aq-branches-empty i {
  margin-bottom: 20px;
  color: var(--aq-gold);
  font-size: 52px;
}
.aq-branches-empty h2 {
  margin-bottom: 12px;
}
.aq-branches-empty p {
  margin-bottom: 28px;
  color: var(--aq-body);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:1024px) {
  .aq-hero { grid-template-columns: 1fr; gap: 48px; padding: 48px 24px; min-height: auto; }
  .aq-hero__copy { order: 2; padding: 0; }
  .aq-hero__media { order: 1; max-width: 720px; width: 100%; margin: 0 auto; }
  .aq-page-hero__inner { flex-direction: column; align-items: flex-start; }
  .aq-page-hero__stats { width: 100%; max-width: none; }
  .aq-about__grid { grid-template-columns: 1fr; gap: 32px; }
  .aq-about-page__body {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .aq-about-page .aq-about__image {
    max-width: 100%;
    margin: 0;
    aspect-ratio: 3 / 2;
    max-height: none;
  }
  .aq-about__label { padding: 0; }
  .aq-about__image { aspect-ratio: 16/9; max-height: 440px; max-width: 720px; width: 100%; margin: 0 auto; }
  .aq-about__notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .aq-about-page .aq-about__notes {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .aq-about__notes article { grid-template-columns: 1fr; }
  .aq-about__notes article::before { display: none; }
  .aq-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .aq-gallery-card:nth-child(2) { transform: none; }
  .aq-gallery-card:nth-child(2):hover { transform: none; }
  .aq-why__grid, .aq-faq__grid, .aq-contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .aq-contact__main { grid-template-columns: 1fr; }
  .aq-contact__main .aq-contact-form-card { min-height: auto; }
  .aq-contact-page__cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .aq-contact-page__main { grid-template-columns: 1fr; }
  .aq-contact-page__main .aq-contact__map,
  .aq-contact-page__main .aq-contact-form-card { min-height: auto; }
  .aq-contact-form-section__grid { grid-template-columns: 1fr; gap: 36px; }
  .aq-branches-grid { grid-template-columns: 1fr; }
  .aq-faq__items--two { grid-template-columns: 1fr; }
  .aq-why__intro { position: static; padding: 0; }
  .aq-why__ledger article:nth-child(2n),
  .aq-why__ledger article:nth-child(2n):hover { transform: none; }
  .aq-why__ledger article:hover { transform: translateY(-4px); }
  .aq-review-grid { grid-template-columns: repeat(2, 1fr); }
  .aq-blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media(max-width:640px) {
  .aq-gallery-grid, .aq-review-grid { grid-template-columns: 1fr; }
  .aq-hero--slider {
    height: 500px;
    min-height: 500px;
  }
  .aq-hero__content-container {
    padding: 0 16px 108px;
  }
  .aq-hero__slide .aq-hero__copy .aq-kicker {
    font-size: 10px;
    letter-spacing: 1px;
    margin-bottom: 12px;
  }
  .aq-hero__slide .aq-hero__copy h1 {
    font-size: 26px;
  }
  .aq-hero__footer {
    padding: 14px 16px;
  }
  .aq-hero__stats { gap: 12px; }
  .aq-page-hero { min-height: 620px; }
  .aq-page-hero__inner { padding: 104px 24px 42px; }
  .aq-page-hero__copy { padding: 24px; }
  .aq-page-hero__stats { grid-template-columns: 1fr; }
  .aq-hero__media { padding: 14px; }
  .aq-hero__frame { aspect-ratio: 4/3; }
  .aq-hero__seal { width: 86px; height: 86px; border-width: 4px; top: 10px; right: 10px; }
  .aq-hero__seal span { font-size: 21px; }
  .aq-hero__seal small { font-size: 8px; }
  .aq-about { padding: 72px 0; }
  .aq-about__tags span { font-size: 11px; }
  .aq-about__image { aspect-ratio: 4/3; padding: 12px; }
  .aq-about-page .aq-about__image { aspect-ratio: 3 / 2; max-height: none; padding: 12px; }
  .aq-about-page .aq-about__image::before { inset: 16px; }
  .aq-about-page .aq-about__notes { display: flex; flex-direction: column; }
  .aq-about__image::before { inset: 24px; }
  .aq-about__stamp { position: relative; left: auto; right: auto; bottom: auto; margin: 12px 0 0; }
  .aq-about__notes { grid-template-columns: 1fr; }
  .aq-about__notes article { padding: 22px; }
  .aq-about-page__prose { padding: 24px; }
  .aq-why { padding: 72px 0; }
  .aq-why::before { inset: 16px; }
  .aq-why__ledger { grid-template-columns: 1fr; }
  .aq-why__note { padding: 22px; }
  .aq-why__note strong { font-size: 19px; }
  .aq-why__ledger article { min-height: auto; padding: 24px; }
  .aq-why__mark { margin-bottom: 24px; }
  .aq-why__mark span { font-size: 38px; }
  .aq-why__mark i { width: 52px; height: 52px; font-size: 20px; }
  .aq-blog-grid { grid-template-columns: 1fr; }
  .aq-blog-card__body { padding: 22px; }
  .aq-section-head--split { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 40px; }
  .aq-section-head--split > p { text-align: left; }
  .aq-contact__map { min-height: 360px; }
  .aq-contact__cards { grid-template-columns: 1fr; }
  .aq-contact__cards > div { padding: 18px; min-height: auto; }
  .aq-contact__main { gap: 20px; }
  .aq-contact-page__cards { grid-template-columns: 1fr; }
  .aq-contact-page__cards > div { padding: 16px; }
  .aq-contact-page__main { gap: 20px; }
  .aq-contact-form-section { padding: 72px 0; }
  .aq-contact-form-card { padding: 24px; }
  .aq-branches-page { padding: 72px 0; }
  .aq-branch-card__map { height: 160px; }
  .aq-branch-card__body { padding: 18px; }
  .aq-branch-card__body h3 { font-size: 18px; }
  .aq-branches-empty { padding: 32px 24px; }
  .aq-gallery { padding: 72px 0; }
  .aq-gallery-card { min-height: auto; }
}
