:root {
  --primary: #00bf62;
  --accent: #ff7a00;
  --bg: #f0f0f0;
  --secondary: #4e3928;
  --text: #221b14;
  --muted: #6b5f55;
  --card: #ffffff;
  --shadow: 0 14px 35px rgba(34, 27, 20, 0.12);
  --shadow-soft: 0 10px 20px rgba(34, 27, 20, 0.08);
  --ring: 0 0 0 4px rgba(217, 198, 176, 0.55);
  --radius: 18px;
  --radius-sm: 14px;
  --container: 1120px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    "Cairo",
    system-ui,
    -apple-system,
    "Segoe UI",
    Arial,
    sans-serif;
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  text-rendering: optimizeLegibility;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(217, 198, 176, 0.2),
      transparent 55%
    ),
    radial-gradient(circle at 85% 10%, rgba(78, 57, 40, 0.1), transparent 50%),
    radial-gradient(circle at 70% 92%, rgba(106, 84, 67, 0.1), transparent 55%);
  opacity: 0.75;
  transform: translateZ(0);
  animation: bgDrift 16s var(--ease) infinite alternate;
}

.logo {
  width: 70px;
  height: 70px;
}
@keyframes bgDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(0, -10px, 0) scale(1.02);
  }
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  inset-inline-start: 12px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--card);
  box-shadow: var(--shadow-soft);
  transform: translateY(-160%);
  transition: transform 0.25s var(--ease);
  z-index: 9999;
}
.skip-link:focus {
  transform: translateY(0);
  outline: none;
  box-shadow: var(--shadow-soft), var(--ring);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  border-bottom: 1px solid rgba(78, 57, 40, 0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
}
.brand-badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 10px 25px rgba(78, 57, 40, 0.25);
  position: relative;
  overflow: hidden;
  animation: badgeFloat 4.8s var(--ease) infinite;
}
.brand-badge:hover {
  animation-duration: 3.8s;
}
.brand-badge::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(217, 198, 176, 0.55),
    transparent 55%
  );
  transform: rotate(15deg);
}
@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-2px) rotate(-1deg);
  }
}
.brand-title {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-title strong {
  font-size: 16px;
  color: var(--primary);
}
.brand-title span {
  font-size: 12px;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(78, 57, 40, 0.1);
}
.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 14px;
  color: rgba(34, 27, 20, 0.9);
  transition:
    background 0.2s var(--ease),
    transform 0.2s var(--ease);
}


.nav-links a:hover {
  background: rgba(217, 198, 176, 0.45);
  transform: translateY(-1px);
}
.nav-links a[aria-current="page"] {
  background: rgba(78, 57, 40, 0.1);
  color: var(--primary);
  font-weight: 700;
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(78, 57, 40, 0.14);
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 22px rgba(78, 57, 40, 0.22);
  cursor: pointer;
  transition:
    transform 0.2s var(--ease),
    filter 0.2s var(--ease),
    background 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(
    110deg,
    transparent 35%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 65%
  );
  transform: translateX(-60%) rotate(8deg);
  opacity: 0;
  transition: opacity 0.2s var(--ease);
}
.btn:hover::before {
  opacity: 0.65;
  animation: shine 0.9s var(--ease) both;
}
@keyframes shine {
  from {
    transform: translateX(-60%) rotate(8deg);
  }
  to {
    transform: translateX(35%) rotate(8deg);
  }
}
.btn:hover {
  transform: translateY(-1px);
  filter: saturate(1.03);
  background: var(--accent);
}
.btn:active {
  transform: translateY(0);
}
.btn:focus {
  outline: none;
  box-shadow:
    0 12px 22px rgba(78, 57, 40, 0.22),
    var(--ring);
}
.btn--ghost {
  background: transparent;
  color: var(--primary);
  box-shadow: none;
}
.btn--ghost:hover {
  background: rgba(217, 198, 176, 0.45);
}
.btn--sm {
  padding: 10px 12px;
  font-size: 14px;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(78, 57, 40, 0.14);
  background: rgba(255, 255, 255, 0.65);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition:
    transform 0.2s var(--ease),
    background 0.2s var(--ease);
}
.icon-btn:hover {
  transform: translateY(-1px);
  background: rgba(217, 198, 176, 0.45);
}
.icon-btn:focus {
  outline: none;
  box-shadow: var(--ring);
}

.hamburger {
  display: none;
}
.hamburger .lines {
  width: 18px;
  height: 12px;
  position: relative;
}
.hamburger .lines span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
  transition:
    transform 0.25s var(--ease),
    top 0.25s var(--ease),
    opacity 0.2s var(--ease);
}
.hamburger .lines span:nth-child(1) {
  top: 0;
}
.hamburger .lines span:nth-child(2) {
  top: 5px;
}
.hamburger .lines span:nth-child(3) {
  top: 10px;
}

/* Mobile nav drawer */
.drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(34, 27, 20, 0.32);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease);
  z-index: 80;
}
.drawer[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}
.drawer-panel {
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: min(92vw, 420px);
  background: rgba(240, 240, 240, 0.96);
  backdrop-filter: blur(18px);
  border-inline-end: 1px solid rgba(78, 57, 40, 0.12);
  transform: translateX(-12px);
  animation: panelIn 0.35s var(--ease) both;
  padding: 18px 16px 14px;
}
@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.drawer-links {
  display: grid;
  gap: 8px;
}
.drawer-links a {
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(78, 57, 40, 0.1);
  transition:
    transform 0.2s var(--ease),
    background 0.2s var(--ease);
}
.drawer-links a:hover {
  transform: translateY(-1px);
  background: rgba(217, 198, 176, 0.45);
}
.drawer-cta {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

/* Hero */
/* ---------------------------------------------------------------------- */
.main-hero{
  position:relative;
  height:88vh;
  width:100%;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;

  background:
  radial-gradient(circle at 20% 30%, rgba(0,191,98,.35), transparent 40%),
  radial-gradient(circle at 80% 70%, rgba(255,122,0,.30), transparent 40%),
  radial-gradient(circle at 60% 10%, rgba(0,191,98,.20), transparent 30%),
  linear-gradient(135deg,#ffffff,#ececec);
}

/* bubble canvas */

#bubbles{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:1;
}

/* shine cleaning effect */

.main-hero::after{
  content:"";
  position:absolute;
  inset:-40%;
  background:
  linear-gradient(
  120deg,
  transparent 30%,
  rgba(255,255,255,.85) 50%,
  transparent 70%);
  transform:translateX(-60%) rotate(10deg);
  animation:shineMove 6s infinite;
  z-index:2;
}

.btn-hero{
  width: 200px;
}

@keyframes shineMove{
  0%{transform:translateX(-60%) rotate(10deg)}
  100%{transform:translateX(60%) rotate(10deg)}
}

/* hero content */

.hero-content-clean{
  margin-top: -150px;
  position:relative;
  z-index:3;
  max-width:700px;
}

.hero-content-clean h1{
  font-size:72px;
  font-weight:900;
  color:var(--primary);
  margin-bottom:15px;
}

.hero-content-clean p{
  font-size:20px;
  color:rgba(34,27,20,.85);
  margin-bottom:30px;
}

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

/* responsive */

@media (max-width:768px){

.hero-content-clean h1{
  font-size:42px;
}

.hero-content-clean p{
  font-size:16px;
}

}
/* ---------------------------------------------------------------------------- */
.hero {
  padding: 26px 0 18px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}
.hero-card {
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.85),
    rgba(255, 255, 255, 0.62)
  );
  border: 1px solid rgba(78, 57, 40, 0.1);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(217, 198, 176, 0.65),
      transparent 55%
    ),
    radial-gradient(
      circle at 85% 10%,
      rgba(106, 84, 67, 0.22),
      transparent 50%
    ),
    radial-gradient(circle at 70% 90%, rgba(78, 57, 40, 0.18), transparent 55%);
  transform: rotate(8deg);
}

.hero-content {
  position: relative;
  padding: 22px 18px 18px;
}




.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(217, 198, 176, 0.45);
  border: 1px solid rgba(78, 57, 40, 0.1);
  color: var(--primary);
  font-weight: 800;
  font-size: 13px;
}
.hero h1 {
  margin: 12px 0 10px;
  font-size: 28px;
  line-height: 1.2;
  color: var(--primary);
}
.hero p {
  margin: 0 0 14px;
  color: rgba(34, 27, 20, 0.85);
  font-size: 15px;
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.hero-actions .btn {
  min-width: 180px;
}
.quick-contacts {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(78, 57, 40, 0.1);
  transition: transform 0.2s var(--ease);
}
.pill:hover {
  transform: translateY(-1px);
}

.hero-side {
  display: grid;
  gap: 12px;
}
.stat-card {
  padding: 16px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(78, 57, 40, 0.1);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.stat-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 160px;
  background: radial-gradient(
    circle at 50% 20%,
    rgba(217, 198, 176, 0.55),
    transparent 65%
  );
  transform: rotate(-8deg);
}
.stat-card .row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  position: relative;
}
.stat-card strong {
  font-size: 18px;
  color: var(--primary);
}
.stat-card span {
  font-size: 13px;
  color: var(--muted);
}
.stat-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  position: relative;
}
.stat-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(34, 27, 20, 0.88);
  font-size: 14px;
}
.check {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(217, 198, 176, 0.55);
  color: var(--primary);
  flex: 0 0 auto;
}

/* Sections */
.section {
  padding: 28px 0;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.section h2 {
  margin: 0;
  font-size: 20px;
  color: var(--primary);
  line-height: 1.3;
}
.section .lead {
  margin: 0;
  color: rgba(34, 27, 20, 0.78);
  font-size: 14px;
  line-height: 1.8;
}
.grid {
  display: grid;
  gap: 12px;
}
.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(78, 57, 40, 0.1);
  box-shadow: var(--shadow-soft);
  padding: 16px;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s var(--ease);
  position: relative;
  overflow: hidden;
  
}
.card::after {
  content: "";
  position: absolute;
  inset: auto -30% -55% -30%;
  height: 180px;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(217, 198, 176, 0.55),
    transparent 60%
  );
  transform: rotate(10deg);
  opacity: 0.75;
}
.card > * {
  position: relative;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.88);
}
.card h3 {
  margin: 0 0 6px;
  color: var(--primary);
  font-size: 16px;
}
.card p {
  margin: 0;
  color: rgba(34, 27, 20, 0.78);
  font-size: 14px;
  line-height: 1.85;
}
.card .meta {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 12px;
}

.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.feature .badge {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: rgba(217, 198, 176, 0.55);
  border: 1px solid rgba(78, 57, 40, 0.1);
  display: grid;
  place-items: center;
  color: var(--primary);
  flex: 0 0 auto;
  box-shadow: 0 10px 20px rgba(34, 27, 20, 0.08);
}
.feature h3 {
  margin: 0 0 4px;
  font-size: 15px;
}
.feature p {
  margin: 0;
  font-size: 14px;
  color: rgba(34, 27, 20, 0.78);
  line-height: 1.85;
}

/* Steps */
.steps {
  counter-reset: step;
  display: grid;
  gap: 10px;
}
.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(78, 57, 40, 0.1);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s var(--ease);
}
.step:hover {
  transform: translateY(-2px);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  flex: 0 0 auto;
  box-shadow: 0 12px 22px rgba(78, 57, 40, 0.22);
}
.step h3 {
  margin: 0 0 4px;
  font-size: 15px;
  color: var(--primary);
}
.step p {
  margin: 0;
  font-size: 14px;
  color: rgba(34, 27, 20, 0.78);
  line-height: 1.85;
}

.kol{
  margin-top: 12px;
}

/* Before / After */
.ba-grid {
  display: grid;
  gap: 12px;
}
.ba-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(78, 57, 40, 0.1);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-soft);
}
.ba-visual {
  height: 180px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ba-visual .half {
  position: relative;
  overflow: hidden;
}
.ba-visual .half::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(78, 57, 40, 0.18),
    rgba(217, 198, 176, 0.65)
  );
  filter: contrast(1.05);
}
.ba-visual .half.after::before {
  background: linear-gradient(
    135deg,
    rgba(217, 198, 176, 0.55),
    rgba(78, 57, 40, 0.18)
  );
}
.ba-visual .label {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(78, 57, 40, 0.12);
  color: var(--primary);
  font-weight: 900;
  font-size: 12px;
}
.ba-body {
  padding: 12px 14px;
}
.ba-body h3 {
  margin: 0 0 4px;
  color: var(--primary);
  font-size: 15px;
}
.ba-body p {
  margin: 0;
  color: rgba(34, 27, 20, 0.78);
  font-size: 14px;
  line-height: 1.85;
}

/* Testimonials */
.stars {
  letter-spacing: 1px;
  color: var(--primary);
  font-weight: 900;
}
.quote {
  margin-top: 10px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(78, 57, 40, 0.1);
  box-shadow: var(--shadow-soft);
}
.quote p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(34, 27, 20, 0.82);
}
.quote .by {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

/* CTA band */
.cta-band {
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(
    135deg,
    rgba(78, 57, 40, 0.92),
    rgba(106, 84, 67, 0.92)
  );
  color: #fff;
  border: 1px solid rgba(78, 57, 40, 0.12);
  overflow: hidden;
  position: relative;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at 20% 30%,
    rgba(217, 198, 176, 0.35),
    transparent 55%
  );
  transform: rotate(12deg);
}
.cta-band .inner {
  position: relative;
  padding: 18px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cta-band h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
}
.cta-band p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.8;
}
.cta-band .actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cta-band .btn {
  background: #fff;
  color: var(--primary);
  border-color: rgba(255, 255, 255, 0.25);
}
.cta-band .btn:hover {
  background: var(--accent);
  color: var(--primary);
}

/* Forms */
.form {
  display: grid;
  gap: 10px;
}
.field {
  display: grid;
  gap: 6px;
}
.field label {
  font-size: 13px;
  color: rgba(34, 27, 20, 0.78);
  font-weight: 700;
}
.input,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(78, 57, 40, 0.14);
  outline: none;
  transition:
    box-shadow 0.2s var(--ease),
    background 0.2s var(--ease),
    transform 0.2s var(--ease);
}
textarea {
  min-height: 120px;
  resize: vertical;
}
.input:focus,
textarea:focus {
  box-shadow: var(--ring);
  background: #fff;
}
.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
.form-result {
  display: none;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(217, 198, 176, 0.45);
  border: 1px solid rgba(78, 57, 40, 0.14);
  color: var(--primary);
  font-weight: 800;
}
.form-result.show {
  display: block;
}

/* Footer */
.site-footer {
  padding: 22px 0;
  border-top: 1px solid rgba(78, 57, 40, 0.1);
}
.footer-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}
.footer-grid h4 {
  margin: 0 0 8px;
  color: var(--primary);
}
.footer-grid p {
  margin: 0;
  color: rgba(34, 27, 20, 0.78);
  line-height: 1.85;
  font-size: 14px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-links a {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(78, 57, 40, 0.1);
  transition:
    transform 0.2s var(--ease),
    background 0.2s var(--ease);
  font-size: 13px;
}
.footer-links a:hover {
  transform: translateY(-1px);
  background: rgba(217, 198, 176, 0.45);
}
.copyright {
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 {
  transition-delay: 0.08s;
}
.reveal.delay-2 {
  transition-delay: 0.14s;
}
.reveal.delay-3 {
  transition-delay: 0.2s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  body::before {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Responsive */
@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: inline-grid;
  }
  .drawer {
    display: block;
  }
  .hero h1 {
    font-size: 26px;
  }
  .grid.cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .grid.cols-2 {
    grid-template-columns: 1fr;
  }
  .grid.cols-3 {
    grid-template-columns: 1fr;
  }
  .hero-actions .btn {
    min-width: auto;
    width: 100%;
  }
  .cta-band .actions {
    width: 100%;
  }
  .cta-band .actions .btn {
    width: 100%;
  }
}
