:root {
  --bg: #fff6df;
  --bg-strong: #fff0ca;
  --surface: rgba(255, 252, 246, 0.76);
  --surface-strong: rgba(255, 250, 242, 0.92);
  --surface-soft: rgba(255, 255, 255, 0.58);
  --stroke: rgba(126, 93, 40, 0.14);
  --text: #261a14;
  --muted: #68584e;
  --accent: #ff6b3d;
  --accent-warm: #ffbe3d;
  --accent-green: #6abf69;
  --accent-blue: #7cccfb;
  --shadow: 0 30px 60px rgba(121, 82, 26, 0.14);
  --shadow-soft: 0 18px 38px rgba(121, 82, 26, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 190, 61, 0.32), transparent 28%),
    radial-gradient(circle at top right, rgba(124, 204, 251, 0.26), transparent 26%),
    linear-gradient(180deg, #fff8e8 0%, #fff2d8 44%, #fff7eb 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 107, 61, 0.08) 0 0.3rem, transparent 0.36rem),
    radial-gradient(circle at 80% 30%, rgba(106, 191, 105, 0.08) 0 0.36rem, transparent 0.42rem),
    radial-gradient(circle at 25% 80%, rgba(124, 204, 251, 0.08) 0 0.28rem, transparent 0.34rem),
    radial-gradient(circle at 72% 74%, rgba(255, 190, 61, 0.08) 0 0.32rem, transparent 0.38rem);
  background-size: 22rem 22rem;
  opacity: 0.9;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(255, 247, 233, 0.72);
  border-bottom: 1px solid rgba(126, 93, 40, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 16px 28px rgba(118, 80, 28, 0.16);
}

.brand span {
  display: grid;
  gap: 4px;
}

.brand strong {
  font-size: 1rem;
  line-height: 1;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  overflow: clip;
  padding: clamp(48px, 7vw, 88px) 0 32px;
}

.hero-glow {
  position: absolute;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(3rem);
  opacity: 0.7;
  pointer-events: none;
}

.hero-glow-left {
  top: 2rem;
  left: -10rem;
  background: rgba(255, 107, 61, 0.26);
}

.hero-glow-right {
  top: 6rem;
  right: -8rem;
  background: rgba(124, 204, 251, 0.22);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.about-copy h2,
.cta-card h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(3.05rem, 7.4vw, 5.9rem);
  line-height: 0.94;
  max-width: 11ch;
}

.lead,
.section-heading p,
.feature-card p,
.shot-card p,
.about-copy p,
.about-panel-copy p,
.cta-card p,
.stat-card span {
  line-height: 1.75;
  color: var(--muted);
}

.lead {
  margin: 1.5rem 0 0;
  max-width: 38rem;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(121, 82, 26, 0.16);
}

.button-primary {
  color: #fffaf2;
  background: linear-gradient(135deg, #ff6238 0%, #ff8f42 52%, #ffc13d 100%);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(126, 93, 40, 0.09);
}

.button-dark {
  color: #fff8ef;
  background: rgba(38, 26, 20, 0.88);
}

.button-light {
  background: rgba(255, 250, 242, 0.62);
}

.hero-points {
  display: grid;
  gap: 14px;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 600;
}

.hero-points li::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-warm) 100%);
  box-shadow: 0 0 0 6px rgba(255, 107, 61, 0.12);
}

.hero-stage {
  position: relative;
  min-height: 40rem;
}

.hero-orb,
.hero-phone,
.hero-badge {
  position: absolute;
  animation: drift 10s ease-in-out infinite;
}

.hero-orb {
  border-radius: 50%;
  opacity: 0.78;
  mix-blend-mode: multiply;
}

.hero-orb-one {
  top: 2rem;
  right: 4rem;
  width: 14rem;
  height: 14rem;
  background: rgba(255, 107, 61, 0.22);
}

.hero-orb-two {
  bottom: 3rem;
  left: 2rem;
  width: 12rem;
  height: 12rem;
  animation-duration: 12s;
  background: rgba(106, 191, 105, 0.2);
}

.hero-phone,
.hero-badge {
  padding: 14px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-phone img,
.hero-badge img {
  width: 100%;
  border-radius: 24px;
}

.hero-phone-main {
  top: 3rem;
  right: 16%;
  width: min(20rem, 58%);
  transform: rotate(-4deg);
}

.hero-phone-top {
  top: 5.5rem;
  left: 0;
  width: min(13rem, 38%);
  transform: rotate(-11deg);
  animation-duration: 11s;
}

.hero-phone-bottom {
  right: 0;
  bottom: 0.4rem;
  width: min(13.5rem, 40%);
  transform: rotate(8deg);
  animation-duration: 12.5s;
}

.hero-badge {
  left: 18%;
  bottom: 4rem;
  width: 6.9rem;
  transform: rotate(-8deg);
  animation-duration: 9s;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 0.5rem;
}

.stat-card,
.feature-card,
.shot-card,
.about-copy,
.about-panel {
  border: 1px solid var(--stroke);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.stat-card {
  border-radius: 26px;
  padding: 24px;
}

.stat-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.section-block {
  padding: clamp(58px, 8vw, 92px) 0 0;
}

.section-heading {
  max-width: 45rem;
  margin-bottom: 28px;
}

.section-heading h2,
.about-copy h2,
.cta-card h2 {
  font-size: clamp(2.2rem, 4.6vw, 3.7rem);
  line-height: 1.02;
}

.section-heading p {
  margin: 1rem 0 0;
}

.feature-grid,
.gallery-grid {
  display: grid;
  gap: 20px;
}

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

.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 26px;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-warm), var(--accent-green), var(--accent-blue));
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0.46rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-card h3 {
  margin: 1rem 0 0.8rem;
  font-size: 1.3rem;
  line-height: 1.2;
}

.gallery-section {
  position: relative;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.shot-card {
  border-radius: 34px;
  padding: 18px 18px 22px;
}

.shot-frame {
  padding: 12px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 243, 217, 0.86)),
    linear-gradient(135deg, rgba(255, 107, 61, 0.12), rgba(124, 204, 251, 0.12));
}

.shot-frame img {
  border-radius: 22px;
  box-shadow: 0 14px 26px rgba(121, 82, 26, 0.12);
}

.shot-card figcaption {
  padding: 16px 2px 0;
}

.shot-card strong {
  display: block;
  font-size: 1.15rem;
}

.shot-card p {
  margin: 0.65rem 0 0;
}

.tilt-left {
  --reveal-transform: rotate(-3deg);
  transform: rotate(-3deg);
}

.tilt-center {
  --reveal-transform: translateY(1.4rem);
  transform: translateY(1.4rem);
}

.tilt-right {
  --reveal-transform: rotate(3deg);
  transform: rotate(3deg);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(19rem, 0.9fr);
  gap: 20px;
  align-items: stretch;
}

.about-copy,
.about-panel {
  border-radius: 34px;
  padding: clamp(26px, 4vw, 40px);
}

.about-copy p {
  margin: 1rem 0 0;
}

.about-list {
  display: grid;
  gap: 14px;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.about-list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--text);
  line-height: 1.65;
  font-weight: 600;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-warm) 100%);
}

.about-panel {
  position: relative;
  display: grid;
  justify-items: start;
  gap: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(124, 204, 251, 0.28), transparent 32%),
    radial-gradient(circle at bottom left, rgba(255, 190, 61, 0.26), transparent 36%),
    rgba(255, 249, 239, 0.82);
}

.about-panel img {
  width: min(15rem, 62%);
  border-radius: 30px;
  box-shadow: 0 18px 34px rgba(121, 82, 26, 0.16);
}

.about-panel-copy {
  max-width: 22rem;
}

.about-panel-copy strong {
  display: block;
  margin-top: 0.8rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.about-panel-copy p:last-child {
  margin-top: 0.85rem;
}

.cta-section {
  padding-bottom: clamp(58px, 8vw, 92px);
}

.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  padding: clamp(28px, 5vw, 52px);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.32), transparent 26%),
    linear-gradient(135deg, rgba(255, 107, 61, 0.96), rgba(255, 143, 66, 0.94) 50%, rgba(255, 190, 61, 0.92));
  box-shadow: 0 28px 56px rgba(168, 96, 16, 0.24);
}

.cta-card::after {
  content: "";
  position: absolute;
  inset: auto -4rem -7rem auto;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.cta-card .eyebrow,
.cta-card p,
.cta-card h2 {
  position: relative;
  z-index: 1;
}

.cta-card .eyebrow {
  color: rgba(38, 26, 20, 0.7);
}

.cta-card p {
  max-width: 46rem;
  color: rgba(38, 26, 20, 0.8);
}

.site-footer {
  padding: 0 0 36px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 20px;
  padding-top: 8px;
  color: rgba(38, 26, 20, 0.7);
  font-size: 0.92rem;
}

.footer-content p {
  margin: 0;
}

.footer-link {
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.footer-link:hover,
.footer-link:focus-visible {
  text-decoration: underline;
}

.js [data-reveal] {
  opacity: 0;
  transform: var(--reveal-transform, translate3d(0, 0, 0)) translateY(22px) scale(0.985);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.2, 0.8, 0.18, 1);
  transition-delay: var(--delay, 0s);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: var(--reveal-transform, translate3d(0, 0, 0)) translateY(0) scale(1);
}

@keyframes drift {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -10px;
  }
}

.policy-page .site-header {
  background: rgba(255, 249, 238, 0.8);
}

.policy-main {
  padding-bottom: 56px;
}

.policy-hero {
  position: relative;
  overflow: clip;
  padding: clamp(42px, 7vw, 82px) 0 16px;
}

.policy-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: 20px;
  align-items: center;
}

.policy-hero-copy h1,
.policy-section h2,
.policy-section h3,
.policy-contact-card h4 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.03em;
}

.policy-hero-copy h1 {
  font-size: clamp(2.9rem, 6.4vw, 5rem);
  line-height: 0.95;
  max-width: 11ch;
}

.policy-hero-card,
.policy-sidebar,
.policy-article,
.policy-contact-card {
  border: 1px solid var(--stroke);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.policy-hero-card {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 4vw, 32px);
  border-radius: 34px;
}

.policy-hero-card img {
  width: min(12rem, 48%);
  border-radius: 28px;
  box-shadow: 0 18px 34px rgba(121, 82, 26, 0.14);
}

.policy-hero-card-copy strong {
  display: block;
  margin-top: 0.8rem;
  font-size: 1.18rem;
}

.policy-content {
  padding-top: 28px;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(14rem, 18rem) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.policy-sidebar {
  position: sticky;
  top: 96px;
  border-radius: 30px;
  padding: 22px;
}

.policy-sidebar nav {
  display: grid;
  gap: 10px;
  margin-top: 1rem;
}

.policy-sidebar a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  padding: 0.8rem 0.95rem;
  border-radius: 16px;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.policy-sidebar a:hover,
.policy-sidebar a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-1px);
}

.policy-article {
  border-radius: 34px;
  padding: clamp(26px, 4vw, 40px);
}

.policy-section + .policy-section {
  margin-top: 2.2rem;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(126, 93, 40, 0.12);
}

.policy-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
}

.policy-section h3 {
  margin-top: 1.8rem;
  font-size: 1.45rem;
  line-height: 1.1;
}

.policy-section p,
.policy-list,
.policy-contact-card p {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.policy-article a,
.policy-contact-card a {
  color: #a5481f;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
  word-break: break-word;
}

.policy-list {
  padding-left: 1.3rem;
}

.policy-list li + li {
  margin-top: 0.7rem;
}

.policy-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 1.4rem;
}

.policy-contact-card {
  border-radius: 24px;
  padding: 20px;
}

.policy-contact-card h4 {
  font-size: 1.25rem;
  line-height: 1.1;
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .feature-grid,
  .gallery-grid,
  .stat-strip,
  .policy-hero-grid,
  .policy-layout,
  .policy-contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 34rem;
    max-width: 34rem;
    margin: 0 auto;
  }

  .hero-phone-main {
    right: 18%;
  }

  .hero-phone-top {
    left: 2%;
  }

  .about-panel {
    min-height: 24rem;
  }

  .policy-sidebar {
    position: static;
  }

  .tilt-left,
  .tilt-center,
  .tilt-right {
    transform: none;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(40rem, calc(100% - 28px));
  }

  .nav {
    padding: 12px 0;
  }

  .nav-links {
    display: none;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .hero {
    padding-top: 36px;
  }

  .policy-hero {
    padding-top: 36px;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .policy-hero-copy h1 {
    max-width: none;
  }

  .hero-stage {
    min-height: 27rem;
  }

  .hero-phone-main {
    top: 1.8rem;
    right: 18%;
    width: min(15rem, 55%);
  }

  .hero-phone-top {
    top: 2.6rem;
    left: 0;
    width: min(9rem, 33%);
  }

  .hero-phone-bottom {
    width: min(9.4rem, 34%);
  }

  .hero-badge {
    left: 16%;
    bottom: 3rem;
    width: 5.2rem;
  }

  .hero-orb-one {
    width: 10rem;
    height: 10rem;
  }

  .hero-orb-two {
    width: 8rem;
    height: 8rem;
  }

  .feature-card,
  .shot-card,
  .about-copy,
  .about-panel,
  .cta-card,
  .stat-card {
    border-radius: 26px;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }
}

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

  .hero-orb,
  .hero-phone,
  .hero-badge {
    animation: none;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: var(--reveal-transform, translate3d(0, 0, 0));
    transition: none;
  }
}

@media (max-width: 460px) {
  body::before {
    background-size: 16rem 16rem;
  }

  .hero-stage {
    min-height: 23rem;
  }

  .hero-phone,
  .hero-badge {
    padding: 10px;
    border-radius: 24px;
  }

  .hero-phone img,
  .hero-badge img {
    border-radius: 16px;
  }

  .hero-phone-main {
    width: min(12.8rem, 54%);
  }

  .hero-phone-top {
    width: min(7.8rem, 31%);
  }

  .hero-phone-bottom {
    width: min(8rem, 32%);
  }

  .hero-badge {
    width: 4.5rem;
  }
}
