:root {
  --ink: #1c1714;
  --ink-soft: #3d342e;
  --muted: #6f645c;
  --paper: #f3eee8;
  --paper-deep: #e7dfd5;
  --champagne: #c9a87c;
  --champagne-deep: #a88455;
  --cocoa: #6e4a38;
  --line: rgba(28, 23, 20, 0.12);
  --white: #fffaf6;
  --shadow: 0 24px 60px rgba(28, 23, 20, 0.18);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --max: 1120px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(201, 168, 124, 0.22), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(110, 74, 56, 0.12), transparent 50%),
    linear-gradient(180deg, #f7f3ee 0%, var(--paper) 40%, #ebe4db 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header-h);
  backdrop-filter: blur(14px);
  background: rgba(243, 238, 232, 0.72);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(243, 238, 232, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(28, 23, 20, 0.06);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
}

.logo-name {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 560;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.logo-name span {
  color: var(--cocoa);
}

.logo-sub {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-desktop {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 1.6rem;
}

.nav-desktop a {
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--ink);
}

.nav-desktop a.btn,
.nav-desktop a.btn-primary,
.nav-desktop a.btn-accent {
  color: var(--white);
}

.nav-desktop a.btn-primary:hover,
.nav-desktop a.btn-accent:hover {
  color: var(--white);
  background: var(--cocoa);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
}

.menu-toggle .icon-close {
  display: none;
}

.site-header.nav-open .menu-toggle .icon-open {
  display: none;
}

.site-header.nav-open .menu-toggle .icon-close {
  display: block;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.5rem 1.25rem 1.25rem;
  background: rgba(243, 238, 232, 0.98);
  border-bottom: 1px solid var(--line);
}

.site-header.nav-open .nav-mobile {
  display: flex;
}

.nav-mobile a {
  padding: 0.85rem 0.4rem;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
}

.nav-mobile a:last-child {
  border-bottom: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  font-weight: 550;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition:
    transform 0.25s var(--ease),
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary,
.btn-accent,
a.btn-primary,
a.btn-accent {
  background: linear-gradient(180deg, #3a322c 0%, var(--ink) 52%, #14110f 100%);
  color: var(--white);
  border-color: rgba(255, 250, 246, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 246, 0.22),
    inset 0 -2px 3px rgba(0, 0, 0, 0.35),
    0 6px 14px rgba(0, 0, 0, 0.28);
}

.btn-primary:hover,
.btn-accent:hover,
a.btn-primary:hover,
a.btn-accent:hover {
  background: linear-gradient(180deg, #4a3f37 0%, var(--cocoa) 55%, #2a221c 100%);
  color: var(--white);
  border-color: rgba(255, 250, 246, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 246, 0.28),
    inset 0 -2px 3px rgba(0, 0, 0, 0.3),
    0 10px 22px rgba(0, 0, 0, 0.34);
}

.btn-primary:active,
.btn-accent:active,
a.btn-primary:active,
a.btn-accent:active {
  transform: translateY(1px);
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.4),
    0 2px 6px rgba(0, 0, 0, 0.22);
}

.btn-outline {
  border: 1px solid rgba(255, 250, 246, 0.75);
  color: var(--white);
  background: linear-gradient(180deg, rgba(255, 250, 246, 0.16) 0%, rgba(28, 23, 20, 0.28) 100%);
  backdrop-filter: blur(8px);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 246, 0.28),
    inset 0 -2px 3px rgba(0, 0, 0, 0.22),
    0 6px 14px rgba(0, 0, 0, 0.22);
}

.btn-outline:hover {
  background: linear-gradient(180deg, rgba(255, 250, 246, 0.24) 0%, rgba(28, 23, 20, 0.35) 100%);
  border-color: rgba(255, 250, 246, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 246, 0.35),
    inset 0 -2px 3px rgba(0, 0, 0, 0.2),
    0 10px 22px rgba(0, 0, 0, 0.28);
}

.btn-outline:active {
  transform: translateY(1px);
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.18);
}

.btn-outline-dark {
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn-outline-dark:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-lg {
  min-height: 54px;
  padding-inline: 1.6rem;
  font-size: 1.02rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: hero-drift 18s var(--ease) infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 14, 12, 0.78) 0%, rgba(18, 14, 12, 0.45) 48%, rgba(18, 14, 12, 0.28) 100%),
    linear-gradient(180deg, rgba(18, 14, 12, 0.2) 0%, rgba(18, 14, 12, 0.55) 70%, rgba(18, 14, 12, 0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 3.5rem) 0 4.5rem;
  max-width: 40rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  font-weight: 520;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
  animation: rise 900ms var(--ease) both;
}

.hero-brand em {
  font-style: italic;
  font-weight: 450;
  color: var(--champagne);
}

.hero h1 {
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  max-width: 22ch;
  animation: rise 900ms var(--ease) 120ms both;
}

.hero-lead {
  margin: 0 0 1.8rem;
  color: rgba(255, 250, 246, 0.84);
  font-size: 1.05rem;
  max-width: 34ch;
  animation: rise 900ms var(--ease) 220ms both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise 900ms var(--ease) 320ms both;
}

.hero-actions .btn-accent,
.hero-actions .btn-outline {
  border: 1.5px solid rgba(255, 250, 246, 0.85);
}

/* Sections */
main > section {
  padding: 5.5rem 0;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne-deep);
  font-weight: 600;
}

.section-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 520;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 38rem;
}

.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.split-media {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 280px;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.service-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.service-row {
  display: grid;
  gap: 0.35rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.service-row:last-child {
  border-bottom: 1px solid var(--line);
}

.service-row h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 520;
}

.service-row p {
  margin: 0;
  color: var(--muted);
}

.offer-section {
  padding-block: clamp(3rem, 7vw, 5rem);
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

.offer-intro {
  max-width: 38rem;
  margin-bottom: 2rem;
}

.service-offer-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.service-offer-card {
  display: grid;
  gap: 0.9rem;
  min-width: 0;
}

.service-offer-media {
  aspect-ratio: 4 / 3;
  border-radius: 1.25rem;
  overflow: hidden;
  background: linear-gradient(145deg, #3a2c24, #1c1714);
}

.service-offer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.service-offer-card:hover .service-offer-media img {
  transform: scale(1.03);
}

.service-offer-body {
  display: grid;
  gap: 0.35rem;
}

.service-offer-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.service-offer-top h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 520;
  line-height: 1.15;
}

.service-offer-price {
  margin: 0;
  flex-shrink: 0;
  font-weight: 600;
  color: var(--cocoa);
  white-space: nowrap;
}

.service-offer-meta,
.service-offer-desc,
.service-offer-empty {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.service-menu-item {
  align-items: center !important;
}

.service-menu-item-main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.service-menu-item-main img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  object-fit: cover;
  flex-shrink: 0;
  background: #2a211c;
}

.service-menu-item-main > div {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.service-menu-name {
  font-weight: 550;
  color: var(--ink);
}

.service-menu-meta {
  font-size: 0.85rem;
  color: var(--muted);
}

.service-menu-price {
  font-weight: 600;
  color: var(--cocoa) !important;
}

.visit-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #2a211c 0%, #3d2b22 45%, #6e4a38 100%);
  color: var(--white);
}

.visit-band::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% 40%;
  height: 80%;
  background: radial-gradient(circle, rgba(201, 168, 124, 0.28), transparent 65%);
  pointer-events: none;
}

.visit-band .container {
  position: relative;
  display: grid;
  gap: 2rem;
}

.visit-band .section-kicker {
  color: var(--champagne);
}

.visit-band .section-copy {
  color: rgba(255, 250, 246, 0.78);
}

.visit-details {
  display: grid;
  gap: 1.25rem;
}

.visit-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 520;
  margin-bottom: 0.25rem;
}

.visit-item p,
.visit-item a {
  margin: 0;
  color: rgba(255, 250, 246, 0.8);
}

.visit-item a:hover {
  color: var(--champagne);
}

.note {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 250, 246, 0.18);
  color: rgba(255, 250, 246, 0.7);
  font-size: 0.95rem;
}

/* Page hero (inner) */
.page-hero {
  padding: calc(var(--header-h) + 3.5rem) 0 2.5rem;
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 520;
  letter-spacing: -0.03em;
  line-height: 1;
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
  font-size: 1.08rem;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

.service-panel {
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
}

.service-panel:last-child {
  border-bottom: 1px solid var(--line);
}

.service-panel h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 520;
}

.service-panel p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.service-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.service-panel li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px dashed rgba(28, 23, 20, 0.1);
  color: var(--ink-soft);
}

.service-panel li:last-child {
  border-bottom: 0;
}

.service-panel li span:last-child {
  color: var(--muted);
  white-space: nowrap;
}

.contact-layout {
  display: grid;
  gap: 2rem;
}

.contact-block h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 520;
}

.contact-block p,
.contact-block a {
  margin: 0 0 0.55rem;
  color: var(--muted);
}

.contact-block a {
  color: var(--cocoa);
  font-weight: 550;
}

.contact-block a:hover {
  color: var(--ink);
}

.contact-block a.btn,
.contact-block a.btn-primary,
.contact-block a.btn-accent {
  color: var(--white);
}

.contact-block a.btn-primary:hover,
.contact-block a.btn-accent:hover {
  color: var(--white);
  background: var(--cocoa);
}

.map-frame {
  border: 0;
  width: 100%;
  min-height: 320px;
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
  background: var(--paper-deep);
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: end;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 520;
}

.footer-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-meta a:hover {
  color: var(--ink);
}

/* Motion helpers */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media img,
  .reveal,
  .hero-brand,
  .hero h1,
  .hero-lead,
  .hero-actions {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle,
  .nav-mobile {
    display: none !important;
  }

  .split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }

  .split.reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .split.reverse .split-media {
    order: 2;
  }

  .visit-band .container {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .service-panel {
    border-top: 0;
    border-bottom: 0;
    padding: 0;
  }

  .services-grid {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 2rem 0;
  }

  .service-offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
  }

  .contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .apps-grid {
    gap: 4rem;
  }

  .app-card {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 2.5rem;
  }

  .app-card-flip {
    direction: rtl;
  }

  .app-card-flip > * {
    direction: ltr;
  }

  .app-card-media {
    min-height: 420px;
  }

  .app-card-media .iphone-frame {
    --iphone-w: 210px;
  }

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

  .feature-phone {
    --iphone-w: 110px;
  }
}

/* Apps showcase + iPhone frames */
.apps-section {
  padding: 5.5rem 0 4rem;
  background:
    radial-gradient(800px 400px at 90% 10%, rgba(201, 168, 124, 0.16), transparent 55%),
    linear-gradient(180deg, #f7f3ee 0%, #efe8df 100%);
}

.apps-intro {
  max-width: 36rem;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.apps-grid {
  display: grid;
  gap: 2.5rem;
}

.app-card {
  display: grid;
  gap: 1.75rem;
}

.app-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 1.5rem 1rem;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.app-card-media-dark {
  background: transparent;
}

.app-card-body h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 520;
  letter-spacing: -0.02em;
}

.app-card-body > p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.app-tag {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cocoa);
}

.app-points {
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.app-points li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.app-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--champagne-deep);
}

.features-section {
  padding: 4.5rem 0 5rem;
  background: var(--white);
}

.feature-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}

.feature-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem 1.15rem;
  padding: 1.15rem 1.2rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: rgba(255, 250, 246, 0.7);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(28, 23, 20, 0.08);
}

.feature-phone {
  --iphone-w: 92px;
  margin: 0;
  background: transparent;
}

.feature-phone .iphone-bezel {
  padding: 0.28rem;
  border-radius: 1.15rem;
  transform: rotateY(-10deg) rotateX(4deg);
}

.feature-phone.iphone-tilt-right .iphone-bezel {
  transform: rotateY(10deg) rotateX(4deg);
}

.feature-phone:hover .iphone-bezel {
  transform: rotateY(-4deg) rotateX(2deg);
}

.feature-phone.iphone-tilt-right:hover .iphone-bezel {
  transform: rotateY(4deg) rotateX(2deg);
}

.feature-phone .iphone-screen {
  border-radius: 0.95rem;
}

.feature-card-copy h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 520;
}

.feature-card-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.iphone-frame {
  --iphone-w: 170px;
  width: var(--iphone-w);
  margin: 0 auto;
  perspective: 1200px;
}

.iphone-bezel {
  position: relative;
  padding: 0.4rem;
  border-radius: 1.85rem;
  background: linear-gradient(155deg, #3a3a3e 0%, #111114 40%, #2c2c30 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 22px 44px rgba(10, 8, 20, 0.35);
  transform: rotateY(-14deg) rotateX(5deg);
  transition: transform 0.45s var(--ease);
}

.iphone-tilt-right .iphone-bezel {
  transform: rotateY(14deg) rotateX(5deg);
}

.iphone-frame:hover .iphone-bezel {
  transform: rotateY(-6deg) rotateX(2deg);
}

.iphone-tilt-right:hover .iphone-bezel {
  transform: rotateY(6deg) rotateX(2deg);
}

.iphone-screen {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.45rem;
  background: #000;
}

@media (max-width: 767px) {
  .app-card-media .iphone-frame {
    --iphone-w: 150px;
  }

  .feature-phone {
    --iphone-w: 78px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (min-width: 1100px) {
  .service-offer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
