/*
 * Asel Apple-inspired preview.
 * Activated only by ?style=apple on the Russian home page.
 */

html.apple-preview {
  color-scheme: light;
  --ink: #1d1d1f;
  --ink-soft: #424245;
  --linen: #f5f5f7;
  --linen-warm: #eeeeef;
  --paper: #fbfbfd;
  --aqua: #009f99;
  --aqua-deep: #007d79;
  --aqua-pale: #e5f5f3;
  --silver: #a1a1a6;
  --silver-deep: #6e6e73;
  --amber: #009f99;
  --white: #ffffff;
  --line: rgba(29, 29, 31, 0.14);
  --line-light: rgba(29, 29, 31, 0.08);
  --font-system: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', 'Helvetica Neue', Inter, 'Segoe UI', sans-serif;
  --font-display: var(--font-system);
  --font-brand: var(--font-system);
  --font-body: var(--font-system);
  --font-mono: 'SF Mono', SFMono-Regular, ui-monospace, Menlo, Monaco, Consolas, 'Liberation Mono', monospace;
  --maxw: 1240px;
  --radius: 12px;
  --radius-md: 20px;
  --radius-card: 24px;
  --radius-lg: 32px;
  --radius-pill: 999px;
  --header-h: 64px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 16px 50px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 28px 90px rgba(0, 0, 0, 0.13);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

.apple-preview body {
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
}

.apple-preview h1,
.apple-preview h2,
.apple-preview h3,
.apple-preview h4 {
  font-family: var(--font-display);
  letter-spacing: -0.045em;
  font-feature-settings: 'kern' 1, 'liga' 1;
}

.apple-preview h2 {
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  line-height: .98;
  font-weight: 650;
}

.apple-preview h3 {
  font-weight: 620;
  letter-spacing: -0.035em;
}

.apple-preview p { color: var(--silver-deep); }

.apple-preview .container { padding-inline: clamp(20px, 4vw, 48px); }

.apple-preview .section {
  padding: clamp(88px, 10vw, 144px) 0;
  overflow: hidden;
}

.apple-preview .section + .section::before { display: none; }

.apple-preview .section-head {
  max-width: 920px;
  margin-bottom: clamp(44px, 6vw, 76px);
}

.apple-preview .section-head.center { margin-inline: auto; }

.apple-preview .section-head p {
  max-width: 680px;
  margin-top: 20px;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

.apple-preview .section-head.center p { margin-inline: auto; }

.apple-preview .eyebrow {
  margin-bottom: 18px;
  color: var(--aqua-deep);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

.apple-preview .eyebrow::after { display: none; }

/* Frosted light navigation */
.apple-preview .header,
.apple-preview .header.scrolled {
  height: var(--header-h);
  background: rgba(251, 251, 253, .78);
  border-bottom: 1px solid rgba(29, 29, 31, .08);
  box-shadow: none;
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
}

.apple-preview .header-inner { padding-inline: clamp(18px, 3.5vw, 44px); }

.apple-preview .logo,
.apple-preview .logo-name {
  color: var(--ink);
  font-family: var(--font-body);
}

.apple-preview .header .logo-mark img { content: url('/assets/img/logo-asel-profile.svg'); }

.apple-preview .logo-name {
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -.035em;
}

.apple-preview .logo-slogan {
  color: var(--aqua-deep);
  font-family: var(--font-body);
  font-size: .56rem;
  font-weight: 650;
  letter-spacing: .11em;
}

.apple-preview .nav { gap: clamp(18px, 2.2vw, 32px); }

.apple-preview .nav a {
  color: #515154;
  font-size: 13px;
  font-weight: 500;
}

.apple-preview .nav a:hover,
.apple-preview .nav a.active { color: var(--ink); }
.apple-preview .nav a::after { display: none; }
.apple-preview .phone-link { color: var(--ink); font-size: 13px; }

.apple-preview .language-switcher { border-color: rgba(29, 29, 31, .14); }
.apple-preview .language-switcher a { color: var(--silver-deep); }
.apple-preview .language-switcher a[aria-current="page"] {
  color: var(--white);
  background: var(--ink);
}

.apple-preview .burger span { background: var(--ink); }

.apple-preview .mobile-menu {
  background: rgba(251, 251, 253, .97);
  backdrop-filter: blur(24px);
}

.apple-preview .mobile-menu a {
  color: var(--ink);
  border-bottom-color: rgba(29, 29, 31, .1);
}

/* Controls */
.apple-preview .btn {
  min-height: 48px;
  padding: 12px 25px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.015em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}

.apple-preview .btn-primary {
  background: var(--aqua);
  color: var(--white);
  box-shadow: none;
}

.apple-preview .btn-primary:hover {
  background: #008f8a;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 159, 153, .2);
}

.apple-preview .header-quote {
  min-height: 42px;
  padding-inline: 17px;
  box-shadow: 0 6px 18px rgba(0, 126, 122, .16);
}

/* Georgian navigation needs a little more horizontal room than Latin labels. */
@media (max-width: 1320px) {
  html[lang^="ka"].apple-preview .header-inner { gap: 16px; }
  html[lang^="ka"].apple-preview .nav { gap: clamp(14px, 1.5vw, 20px); }
  html[lang^="ka"].apple-preview .phone-link { display: none; }
  html[lang^="ka"].apple-preview .header-quote { padding-inline: 15px; }
}

.apple-preview .header-quote-mobile { background: var(--aqua); color: var(--white); }
.apple-preview .header-phone-mobile { background: rgba(29, 29, 31, .06); color: var(--ink); }
.apple-preview .header-phone-mobile svg, .apple-preview .header-phone-mobile svg path { fill: var(--ink) !important; }
.apple-preview .header-phone-mobile:hover { background: rgba(29, 29, 31, .1); }
.apple-preview .header-quote-mobile:focus-visible, .apple-preview .header-phone-mobile:focus-visible { outline-color: var(--ink); }

.apple-preview .btn-outline {
  color: var(--ink);
  border: 1px solid rgba(29, 29, 31, .18);
}

.apple-preview .btn-outline::before { display: none; }
.apple-preview .btn-cta::after { font-family: var(--font-body); }

/* Keynote-like hero with an aluminium-profile frame */
.apple-preview .home-hero {
  min-height: auto;
  padding: calc(var(--header-h) + clamp(64px, 8vw, 112px)) 0 clamp(86px, 10vw, 140px);
  background: var(--linen);
}

.apple-preview .home-hero .hero-bg { display: none; }

.apple-preview .home-hero .hero-inner {
  min-height: 0;
  max-width: 1280px;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(52px, 7vw, 88px);
  text-align: center;
}

.apple-preview .home-hero .hero-content {
  max-width: 980px;
  margin-inline: auto;
}

.apple-preview .home-hero .hero-eyebrow {
  justify-content: center;
  margin-bottom: 22px;
  color: var(--aqua-deep);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -.01em;
  text-transform: none;
}

.apple-preview .home-hero .hero-eyebrow .dot { display: none; }

.apple-preview .home-hero h1 {
  max-width: 1050px;
  margin: 0 auto 28px;
  color: var(--ink);
  font-size: clamp(3.45rem, 8.2vw, 7.4rem);
  font-weight: 680;
  line-height: .91;
  letter-spacing: -.058em;
}

.apple-preview .home-hero h1 em {
  color: var(--aqua);
  font-family: var(--font-body);
  font-style: normal;
  font-weight: inherit;
}

.apple-preview .home-hero .hero-desc {
  max-width: 740px;
  margin: 0 auto 26px;
  color: var(--silver-deep);
  font-size: clamp(1.1rem, 2vw, 1.38rem);
  line-height: 1.48;
}

.apple-preview .home-hero .hero-promo-badge {
  width: min(100%, 440px);
  max-width: none;
  margin: 0 auto 30px;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(201, 154, 85, .34);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(32, 37, 43, .07);
  backdrop-filter: blur(12px);
}

.apple-preview .hero-promo-badge svg,
.apple-preview .cta-promo-tag svg {
  color: var(--amber);
  background: rgba(201, 154, 85, .12);
  border-color: rgba(201, 154, 85, .28);
}
.apple-preview .promo-kicker { color: var(--amber); }
.apple-preview .promo-offer { color: var(--ink); }
.apple-preview .promo-condition { color: var(--silver-deep); }

.apple-preview .home-hero .hero-actions {
  flex-direction: column;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.apple-preview .home-hero .hero-action-note {
  color: var(--silver-deep);
  font-size: 13px;
}

.apple-preview .home-hero .hero-action-note strong {
  color: var(--aqua-deep);
  font-weight: 700;
}

.apple-preview .home-hero .hero-visual {
  display: flex !important;
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  overflow: visible;
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
}

.apple-preview .home-hero .hero-visual::after { display: none; }

.apple-preview .home-hero .hero-frame {
  width: 100%;
  max-width: none;
}

.apple-preview .home-hero .hero-frame picture {
  aspect-ratio: 16 / 8.4;
  border: clamp(7px, 1vw, 12px) solid #292c30;
  border-radius: clamp(22px, 3vw, 38px);
  box-shadow: 0 34px 90px rgba(29, 29, 31, .18);
  background: #292c30;
}

.apple-preview .home-hero .hero-frame picture::after {
  background: linear-gradient(180deg, transparent 66%, rgba(10, 12, 14, .22));
}

.apple-preview .home-hero .hero-frame-tag {
  right: clamp(18px, 4vw, 52px);
  bottom: clamp(-20px, -1.5vw, -12px);
  padding: 13px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .14);
  backdrop-filter: blur(20px);
}

.apple-preview .home-hero .hero-frame-tag-num {
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 700;
}

.apple-preview .home-hero .hero-frame-tag-text {
  color: var(--silver-deep);
  font-family: var(--font-body);
}

/* Services become calm product families */
.apple-preview .home-services { background: var(--white); }

.apple-preview .services-list {
  gap: 18px;
}

.apple-preview .service-row {
  background: var(--linen);
  border: 0;
  border-radius: var(--radius-card);
  box-shadow: none;
}

.apple-preview .service-row:hover {
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.apple-preview .service-row-photo {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  padding: 0;
  background: #dce1e4;
}

.apple-preview .service-row-photo::before {
  content: '';
  position: absolute;
  z-index: 0;
  inset: -22px;
  background: var(--service-photo) center / cover no-repeat;
  filter: blur(20px);
  opacity: .42;
}

.apple-preview .service-row:nth-child(1) .service-row-photo { --service-photo: url('/assets/img/services/rst116-graphite-lift-slide-batumi.jpg'); }
.apple-preview .service-row:nth-child(2) .service-row-photo { --service-photo: url('/assets/img/works/work-1.jpg'); }
.apple-preview .service-row:nth-child(3) .service-row-photo { --service-photo: url('/assets/img/services/window-hardware-adjustment.jpg'); }

.apple-preview .service-row-photo picture,
.apple-preview .service-row-photo > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.apple-preview .service-row-photo img {
  object-fit: contain;
  transform: scale(.94);
}

.apple-preview .service-row:hover .service-row-photo img { transform: scale(.96); }
.apple-preview .service-row-body { padding: 30px; }

@media (max-width: 600px) {
  /* Preserve the full width of architectural photos on narrow screens. */
  .apple-preview .service-row-photo { aspect-ratio: 16 / 9; }
}

.apple-preview .service-row-body h3 {
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.apple-preview .service-row-body p {
  color: var(--silver-deep);
  font-size: 15px;
  line-height: 1.55;
}

.apple-preview .service-row-link {
  color: var(--aqua-deep);
  font-family: var(--font-body);
  font-size: 14px;
}

/* Systems: clean technical objects on a soft canvas */
.apple-preview .home-products { background: var(--linen); }

.apple-preview .product-grid { gap: 18px; }

.apple-preview .product-card {
  background: var(--white);
  border: 0;
  border-radius: var(--radius-card);
  box-shadow: none;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.apple-preview .product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.apple-preview .product-img {
  margin: 10px 10px 0;
  background: #f7f7f8;
  border-radius: var(--radius-md);
}

.apple-preview .product-body { padding: 30px; }
.apple-preview .product-body h3 { font-family: var(--font-body); }

.apple-preview .product-subtitle,
.apple-preview .product-spec dt {
  color: #86868b;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 650;
}

.apple-preview .product-price {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.45rem;
}

.apple-preview .product-specs {
  border-color: rgba(29, 29, 31, .1);
}

.apple-preview .product-spec dd { color: var(--ink); }

/* Climate story */
.apple-preview .home-climate { background: var(--white); }

.apple-preview .home-climate .split {
  gap: clamp(42px, 7vw, 96px);
}

.apple-preview .home-climate .split-img {
  border-radius: var(--radius-lg);
  box-shadow: none;
}

.apple-preview .home-climate .checklist { gap: 18px; }
.apple-preview .home-climate .checklist li { font-size: 16px; }

/* One dark, deliberately quiet sequence */
.apple-preview .home-process {
  background: var(--ink);
}

.apple-preview .home-process::before { display: none; }

.apple-preview .home-process .section-head { max-width: 860px; }
.apple-preview .home-process .eyebrow { color: #61d7d1; }

.apple-preview .steps-grid {
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.apple-preview .step-card {
  min-height: 250px;
  padding: 34px 24px 38px;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, .12);
  border-radius: 0;
}

.apple-preview .step-card:last-child { border-right: 0; }

.apple-preview .step-card:hover {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .12);
}

.apple-preview .step-num {
  color: #86868b;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .04em;
}

.apple-preview .step-body h3 {
  font-family: var(--font-body);
  font-size: 1.35rem;
}

.apple-preview .step-body p {
  color: #a1a1a6;
  font-size: 14px;
}

/* Company and map as two generous information surfaces */
.apple-preview .home-about { background: var(--linen); }

.apple-preview .home-about .grid-2 {
  gap: 18px;
  align-items: stretch;
}

.apple-preview .home-about .grid-2 > div {
  padding: clamp(30px, 5vw, 58px);
  background: var(--white);
  border-radius: var(--radius-lg);
}

.apple-preview .home-about h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.apple-preview .home-about .map-wrap {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.apple-preview .home-about iframe { filter: saturate(.72) contrast(.96); }

/* Testimonials read like editorial quotes, not sales cards */
.apple-preview .home-testimonials { background: var(--white); }

.apple-preview .home-testimonials .grid-3 { gap: 18px; }

.apple-preview .testimonial {
  padding: clamp(28px, 4vw, 44px);
  background: var(--linen);
  border: 0;
  border-radius: var(--radius-card);
}

.apple-preview .testimonial:hover {
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.apple-preview .testimonial .quote-mark {
  color: rgba(0, 159, 153, .22);
  font-family: var(--font-body);
  font-size: 3rem;
}

.apple-preview .testimonial p {
  color: var(--ink-soft);
  font-size: 16px;
}

.apple-preview .testimonial-author { border-top-color: rgba(29, 29, 31, .1); }

.apple-preview .testimonial-author .avatar {
  color: var(--aqua-deep);
  background: var(--white);
  font-family: var(--font-body);
}

/* Final invitation */
.apple-preview .home-cta {
  padding-top: 0;
  background: var(--white);
}

.apple-preview .home-cta::before { display: none; }

.apple-preview .cta-banner {
  padding: clamp(36px, 7vw, 78px);
  background: var(--ink);
  border-radius: var(--radius-lg);
}

.apple-preview .cta-banner::before { display: none; }

.apple-preview .cta-banner h2 {
  max-width: 720px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.apple-preview .cta-banner .btn-amber {
  color: var(--ink);
  background: var(--white);
}

.apple-preview .cta-banner .btn-amber:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
}

.apple-preview .cta-promo-tag {
  width: min(100%, 470px);
  background: rgba(255, 255, 255, .06);
  border-color: rgba(201, 154, 85, .38);
}
.apple-preview .cta-promo-tag .promo-offer { color: var(--white); }
.apple-preview .cta-promo-tag .promo-condition { color: #aeb6bc; }

.apple-preview .footer {
  background: var(--ink);
  color: #a1a1a6;
}

.apple-preview .footer .logo,
.apple-preview .footer .logo-name { color: var(--white); }

/* Consent and modal match the preview instead of breaking it */
.apple-preview .cookie-consent,
.apple-preview .modal-box {
  border: 1px solid rgba(29, 29, 31, .08);
  border-radius: var(--radius-card);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .18);
}

@media (max-width: 960px) {
  .apple-preview .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .apple-preview .step-card { border-bottom: 1px solid rgba(255, 255, 255, .12); }
  .apple-preview .step-card:nth-child(2n) { border-right: 0; }
  .apple-preview .step-card:last-child { border-bottom: 0; }
}

@media (max-width: 860px) {
  .apple-preview .home-hero .hero-inner { gap: 54px; }
  .apple-preview .home-hero .hero-visual { display: none !important; }
  .apple-preview .home-hero .hero-frame { max-width: none; }
  .apple-preview .home-hero .hero-frame picture { aspect-ratio: 4 / 3; }
  .apple-preview .home-climate .split-img { order: 2; }
}

@media (max-width: 640px) {
  .apple-preview body { font-size: 16px; }
  .apple-preview .section { padding: 76px 0; }
  .apple-preview h2 { font-size: clamp(2.35rem, 12vw, 3.45rem); }

  .apple-preview .home-hero {
    padding-top: calc(var(--header-h) + 54px);
    padding-bottom: 82px;
  }

  .apple-preview .home-hero h1 {
    font-size: clamp(3rem, 15vw, 4.45rem);
    line-height: .94;
  }

  /* Georgian words are materially longer: keep the hero statement whole on mobile. */
  html[lang^="ka"].apple-preview .home-hero h1 {
    font-size: clamp(2.15rem, 10vw, 2.6rem);
    letter-spacing: -.07em;
    line-height: .98;
  }

  .apple-preview .home-hero .hero-promo-badge {
    width: auto;
    border-radius: var(--radius-md);
  }

  .apple-preview .home-hero .hero-frame picture {
    border-width: 6px;
    border-radius: var(--radius-md);
  }

  .apple-preview .home-hero .hero-frame-tag {
    right: 10px;
    bottom: -16px;
  }

  .apple-preview .steps-grid { grid-template-columns: 1fr; }
  .apple-preview .step-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .apple-preview .home-about .grid-2 > div { border-radius: var(--radius-card); }
  .apple-preview .cta-banner { border-radius: var(--radius-card); text-align: left; align-items: stretch; }
  .apple-preview .cta-banner .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .apple-preview *,
  .apple-preview *::before,
  .apple-preview *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Alternate palette: graphite aluminium, cool white and the Batumi sea.
   Enabled only by ?style=marine; the original Apple preview remains intact. */
html.apple-preview.apple-marine {
  --ink: #20252b;
  --ink-soft: #3f474e;
  --linen: #f7f8fa;
  --linen-warm: #eef1f3;
  --paper: #ffffff;
  --aqua: #007e7a;
  --aqua-deep: #006a67;
  --aqua-pale: #e7f2f1;
  --silver: #99a1a8;
  --silver-deep: #68727b;
  --amber: #c99a55;
  --line: rgba(32, 37, 43, .14);
  --line-light: rgba(32, 37, 43, .08);
}

/* Site-wide marine layer: the internal pages follow the same calm light system
   as the home page, while dark sections remain deliberate contrast moments. */
.apple-preview body.marine-page {
  background: var(--paper);
}

.apple-preview body.marine-page .section {
  padding: clamp(68px, 8vw, 112px) 0;
}

.apple-preview body.marine-page h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.7rem);
  line-height: 1.02;
}

.apple-preview body.marine-page .section-head {
  max-width: 840px;
  margin-bottom: clamp(36px, 5vw, 60px);
}

.apple-preview .page-hero {
  padding: calc(var(--header-h) + clamp(58px, 8vw, 106px)) 0 clamp(58px, 7vw, 96px);
  color: var(--ink);
  background:
    radial-gradient(circle at 74% 20%, rgba(0, 126, 122, .13), transparent 30%),
    linear-gradient(140deg, #f7fafb 0%, var(--paper) 62%, #edf5f4 100%);
}

.apple-preview .page-hero::before {
  opacity: .5;
  background-image:
    linear-gradient(rgba(0, 126, 122, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 126, 122, .06) 1px, transparent 1px);
}

.apple-preview .page-hero .breadcrumb { color: var(--silver-deep); }
.apple-preview .page-hero h1 { color: var(--ink); font-size: clamp(2.7rem, 6vw, 5.2rem); letter-spacing: -.055em; }
.apple-preview .page-hero h1 em { color: var(--aqua); font-family: var(--font-body); font-style: normal; }
.apple-preview .page-hero p { color: var(--silver-deep); font-size: clamp(1.05rem, 1.6vw, 1.28rem); }

.apple-preview body.marine-page .product-card,
.apple-preview body.marine-page .blog-card,
.apple-preview body.marine-page .feature-card,
.apple-preview body.marine-page .service-item,
.apple-preview body.marine-page .testimonial {
  border-color: rgba(29, 29, 31, .08);
  border-radius: var(--radius-card);
}

.apple-preview body.marine-page .feature-card,
.apple-preview body.marine-page .service-item,
.apple-preview body.marine-page .testimonial {
  background: var(--white);
  box-shadow: none;
}

.apple-preview body.marine-page .feature-card:hover,
.apple-preview body.marine-page .service-item:hover,
.apple-preview body.marine-page .testimonial:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.apple-preview body.marine-page .gallery-item,
.apple-preview body.marine-page .map-wrap,
.apple-preview body.marine-page .lightbox img { border-radius: var(--radius-card); }

.apple-preview body.marine-page .faq-item { border-bottom-color: rgba(29, 29, 31, .12); }
.apple-preview body.marine-page .faq-q { font-family: var(--font-body); font-size: clamp(1rem, 1.5vw, 1.18rem); font-weight: 650; }

.apple-preview body.marine-page .cta-banner { border-radius: var(--radius-lg); }

@media (max-width: 640px) {
  .apple-preview body.marine-page .section { padding: 64px 0; }
  .apple-preview body.marine-page h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .apple-preview .page-hero { padding-top: calc(var(--header-h) + 48px); padding-bottom: 50px; }
  .apple-preview .page-hero h1 { font-size: clamp(2.45rem, 12vw, 3.6rem); }
  html[lang^="ka"].apple-preview .page-hero h1 { font-size: clamp(2.25rem, 10vw, 3rem); letter-spacing: -.065em; }
}

.apple-preview.apple-marine .header,
.apple-preview.apple-marine .header.scrolled {
  background: rgba(247, 248, 250, .82);
  border-bottom-color: rgba(32, 37, 43, .09);
}

.apple-preview.apple-marine .home-hero {
  background:
    radial-gradient(circle at 50% 24%, rgba(0, 126, 122, .09), transparent 34%),
    var(--linen);
}

.apple-preview.apple-marine .home-hero .hero-frame picture {
  border-color: #30353b;
  background: #30353b;
  box-shadow: 0 34px 90px rgba(32, 37, 43, .20);
}

.apple-preview.apple-marine .home-hero .hero-promo-badge {
  border-color: rgba(201, 154, 85, .32);
}

.apple-preview.apple-marine .home-products,
.apple-preview.apple-marine .home-about { background: #eef1f3; }

.apple-preview.apple-marine .product-img { background: #f4f6f7; }

/* Article photos always keep their original proportions. */
.apple-preview .article-body figure > img,
.apple-preview .article-body figure picture > img {
  display: block;
  width: 100%;
  height: auto !important;
  object-fit: contain;
}

.apple-preview.apple-marine .home-process,
.apple-preview.apple-marine .cta-banner,
.apple-preview.apple-marine .footer { background: var(--ink); }

.apple-preview.apple-marine .home-process .eyebrow { color: #79c9c5; }

.apple-preview.apple-marine .cta-promo-tag svg,
.apple-preview.apple-marine .testimonial .quote-mark { color: var(--amber); }

.apple-preview.apple-marine .btn-outline:hover {
  color: var(--aqua-deep);
  border-color: rgba(0, 126, 122, .45);
}
