:root {
  --bg: #edf3ee;
  --bg-soft: #f6faf6;
  --bg-deep: #e6eee7;

  --text: #13212a;
  --text-soft: #53626d;
  --text-faint: #7b8a93;

  --brand: #2d6f9b;
  --brand-2: #4c89b0;
  --brand-soft: rgba(45, 111, 155, 0.14);

  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.34);
  --glass-strong: rgba(255, 255, 255, 0.54);
  --glass-border: rgba(255, 255, 255, 0.56);

  --border-soft: rgba(19, 33, 42, 0.08);
  --line: rgba(19, 33, 42, 0.08);

  --shadow-sm: 0 10px 24px rgba(26, 40, 48, 0.06);
  --shadow-md: 0 18px 40px rgba(26, 40, 48, 0.08);
  --shadow-lg: 0 28px 80px rgba(26, 40, 48, 0.10);

  --radius-sm: 16px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 40px;
  --radius-pill: 999px;

  --container: 1280px;

  --transition: 0.3s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behaviour: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(45, 111, 155, 0.13), transparent 18%),
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.74), transparent 16%),
    radial-gradient(circle at 50% 84%, rgba(167, 196, 181, 0.20), transparent 22%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition), transform var(--transition), background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

button {
  font: inherit;
}

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

.skip-link,
.sr-only {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 20px;
  top: 20px;
  z-index: 1000;
  background: var(--text);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 999px;
}

section {
  position: relative;
}

section:not(.hero-section)::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 92px 92px;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

section > .container {
  position: relative;
  z-index: 1;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 46px;
  text-align: centre;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
  font-weight: 700;
}

.section-heading h2 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  margin-bottom: 14px;
}

.section-intro {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.03rem;
  color: var(--text-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, rgba(45, 111, 155, 0.94), rgba(76, 137, 176, 0.88));
  box-shadow: 0 12px 28px rgba(45, 111, 155, 0.20);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(45, 111, 155, 0.24);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}

.button-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow-md);
}

.text-link {
  font-weight: 600;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.text-link::after {
  content: "→";
  transform: translateX(0);
  transition: transform var(--transition);
}

.text-link:hover {
  color: var(--text);
}

.text-link:hover::after {
  transform: translateX(4px);
}

/* =========================
   HEADER / NAV
   ========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 20px 0 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  border-radius: var(--radius-pill);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-md);
}

.brand img {
  height: 52px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  position: relative;
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--text);
  opacity: 0.88;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  opacity: 1;
  color: var(--brand);
}

.nav-menu a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-menu a:not(.nav-cta):hover::after,
.nav-menu a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(45, 111, 155, 0.92), rgba(76, 137, 176, 0.88));
  color: var(--white) !important;
  box-shadow: 0 12px 28px rgba(45, 111, 155, 0.18);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(45, 111, 155, 0.22);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  border-radius: 999px;
}

/* =========================
   HERO
   ========================= */

.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  padding: 12px 0 28px;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 92px 92px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.25), transparent 30%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 24px;
  padding: 18px 0 24px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  position: relative;
  padding-top: 0;
}

.hero-eyebrow {
  display: inline-block;
  padding: 10px 16px;
  margin-bottom: 14px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.34);
  border: 1px solid rgba(255,255,255,0.56);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(25, 43, 52, 0.07);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
}

.hero-copy h1 {
  margin-top: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.8rem, 12vw, 9.6rem);
  line-height: 0.88;
  letter-spacing: -0.045em;
  font-weight: 600;
  max-width: 8ch;
  position: relative;
  z-index: 2;
}

.hero-copy h1::after {
  content: "Whimsy";
  color: rgba(19, 33, 42, 0.18);
  position: absolute;
  left: 140px;
  top: 84px;
  filter: blur(3px);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.6rem, 11vw, 8.4rem);
  line-height: 1;
  z-index: -1;
}

.hero-intro {
  max-width: 430px;
  margin-top: 18px;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  max-width: 600px;
  margin-top: 22px;
}

.hero-points li {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.32);
  border: 1px solid rgba(255,255,255,0.56);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  font-size: 0.94rem;
  color: var(--text);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.hero-points li:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.52);
  box-shadow: var(--shadow-md);
}

.hero-visual {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(255,255,255,0.72), rgba(255,255,255,0.18) 42%, transparent 72%);
  filter: blur(8px);
  z-index: 1;
}

.hero-glass-card {
  position: absolute;
  width: 430px;
  height: 520px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.30), rgba(255,255,255,0.14));
  border: 1px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 28px 80px rgba(31, 50, 60, 0.10);
  transform: rotate(-8deg);
  z-index: 2;
}

.hero-floral-image,
.hero-model {
  position: relative;
  z-index: 3;
  width: min(540px, 100%);
  filter: drop-shadow(0 28px 40px rgba(22, 33, 39, 0.14));
  animation: floaty 6s ease-in-out infinite;
}

.hero-model {
  height: 520px;
  display: block;
  background: transparent;
  --poster-color: transparent;
}

.hero-feature-box {
  position: absolute;
  right: -10px;
  bottom: 60px;
  z-index: 4;
  width: 360px;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255,255,255,0.42);
  border: 1px solid rgba(255,255,255,0.62);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(25, 40, 48, 0.12);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.hero-feature-box:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.54);
  box-shadow: var(--shadow-lg);
}

.feature-label {
  margin-bottom: 8px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
  font-weight: 700;
}

.hero-feature-box h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px;
}

.hero-feature-box p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 14px;
}

/* decorative stars */
.hero-star {
  position: absolute;
  z-index: 1;
  font-size: 1.15rem;
  line-height: 1;
  color: rgba(19, 33, 42, 0.9);
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  pointer-events: none;
  user-select: none;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
}

.hero-star-1 {
  top: 116px;
  left: 9%;
}

.hero-star-2 {
  top: 245px;
  left: 34%;
  font-size: 0.95rem;
}

.hero-star-3 {
  right: 12%;
  top: 190px;
  font-size: 1rem;
}

.hero-star-4 {
  right: 8%;
  bottom: 130px;
  font-size: 1.1rem;
}

@keyframes floaty {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* =========================
   TRUST
   ========================= */

.trust-section {
  padding: 12px 0 0;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  align-items: stretch;
}

.trust-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 74px;
  padding: 18px 16px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  line-height: 1.35;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.trust-list li:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow-md);
}

/* =========================
   INTRO / SEO / GENERIC 2 COL
   ========================= */

.intro-section,
.services-preview-section,
.why-section,
.process-section,
.portfolio-preview-section,
.testimonials-section,
.seo-content-section,
.faq-section,
.final-cta-section {
  padding: 110px 0;
}

.two-column-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.two-column-content > div {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.50);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}

.two-column-content > div:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow-md);
}

.two-column-content p:last-child {
  margin-bottom: 0;
}

/* =========================
   SERVICES
   ========================= */

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 30px;
  border-radius: var(--radius-lg);
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
}

.service-card p {
  margin-bottom: 18px;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}

/* =========================
   WHY
   ========================= */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feature-item {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.feature-item h3 {
  margin-bottom: 12px;
}

/* =========================
   PROCESS
   ========================= */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.process-step {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(45, 111, 155, 0.12), rgba(255, 255, 255, 0.56));
  border: 1px solid rgba(255, 255, 255, 0.56);
  color: var(--brand);
  font-weight: 700;
}

/* =========================
   PORTFOLIO
   ========================= */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.portfolio-card img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.portfolio-card:hover img {
  transform: scale(1.04);
}

.portfolio-card h3,
.portfolio-card p {
  padding-left: 24px;
  padding-right: 24px;
}

.portfolio-card h3 {
  padding-top: 20px;
  margin-bottom: 10px;
}

.portfolio-card p {
  padding-bottom: 24px;
}

.section-cta {
  margin-top: 34px;
  text-align: centre;
}

/* =========================
   TESTIMONIALS
   ========================= */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.testimonial-rating {
  margin-bottom: 16px;
  color: var(--brand);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.testimonial-author {
  margin-bottom: 0;
  font-weight: 700;
  color: var(--text);
}

/* =========================
   FAQ
   ========================= */

.faq-list {
  display: grid;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  padding: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 600;
  color: var(--text);
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--brand);
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
  padding: 0 24px 24px;
  margin: 0;
}

/* =========================
   FINAL CTA
   ========================= */

.final-cta-box {
  padding: 48px;
  border-radius: var(--radius-xl);
  text-align: centre;
  max-width: 980px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.final-cta-box h2 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  margin-bottom: 16px;
}

.final-cta-box p {
  max-width: 690px;
  margin: 0 auto 24px;
  font-size: 1.02rem;
}

/* =========================
   FOOTER
   ========================= */

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 22px;
}

.footer-grid > div {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 16px;
}

.footer-grid h3 {
  margin-bottom: 16px;
  font-size: 1.12rem;
}

.footer-grid ul {
  display: grid;
  gap: 10px;
}

.footer-grid a:hover {
  color: var(--brand);
}

.footer-bottom {
  margin-top: 22px;
  text-align: centre;
  color: var(--text-faint);
  font-size: 0.9rem;
}

/* =========================
   ANIMATION
   ========================= */

@keyframes floaty {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* =========================
   RESPONSIVE
   ========================= */

.hero-model {
  width: min(300px, 86%);
  height: 300px;
  display: block;
  position: relative;
  z-index: 3;
}
@media (max-width: 1180px) {
  .hero-grid,
  .feature-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-cards,
  .portfolio-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-copy h1::after {
    left: 80px;
    top: 95px;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .two-column-content,
  .feature-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 620px;
    margin-top: 14px;
  }

 .hero-copy h1 {
    font-size: 4.8rem;
    max-width: 100%;
  }

  .hero-copy h1::after {
    display: none;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero-glass-card {
    width: 86%;
    height: 420px;
  }

  .hero-feature-box {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -24px;
  }

  .trust-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* General spacing */
  .container {
    width: min(calc(100% - 24px), 100%);
  }

  .intro-section,
  .services-preview-section,
  .why-section,
  .process-section,
  .portfolio-preview-section,
  .testimonials-section,
  .seo-content-section,
  .faq-section,
  .final-cta-section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 28px;
    text-align: left;
  }

  .section-heading h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
    line-height: 0.98;
  }

  .section-intro {
    margin: 0;
    max-width: 100%;
  }
}

  @media (max-width: 980px) {
  /* Mobile nav */
  .site-header {
    padding-top: 10px;
  }

  .site-nav {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    min-height: 58px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.58);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 14px 34px rgba(26, 40, 48, 0.08);
  }

  .brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    min-width: 200px;
    max-width: 185px;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
  }

  .brand img {
    display: block;
    width: auto;
    height: 42px;
    max-width: 100%;
    object-fit: contain;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-self: end;
    width: 42px;
    height: 42px;
    padding: 0;
    margin: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 24px rgba(26, 40, 48, 0.08);
    cursor: pointer;
    position: relative;
    z-index: 3;
    transition:
      transform 0.18s ease,
      background-color 0.2s ease,
      border-color 0.2s ease,
      box-shadow 0.2s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-toggle:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.64);
  }

  .nav-toggle:active {
    transform: scale(0.97);
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    margin: 2.2px 0;
    background: var(--text);
    border-radius: 999px;
    transform-origin: center;
    transition:
      transform 0.22s ease,
      opacity 0.18s ease,
      background-color 0.22s ease;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(6.4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-6.4px) rotate(-45deg);
  }

  .nav-menu {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;

    margin-top: 0;
    padding: 0;
    border-radius: 20px;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition:
      max-height 0.3s ease,
      opacity 0.22s ease,
      transform 0.22s ease,
      padding 0.22s ease,
      margin-top 0.22s ease,
      background-color 0.22s ease,
      border-color 0.22s ease,
      box-shadow 0.22s ease;
  }

  .nav-menu.is-open {
    gap: 8px;
    margin-top: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.64);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 18px 36px rgba(26, 40, 48, 0.08);

    max-height: 420px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: flex;
    align-items: center;
    min-height: 48px;
    width: 100%;
    padding: 0 14px;
    border-radius: 14px;
    opacity: 1;
    font-size: 0.98rem;
    font-weight: 500;
  }

  .nav-menu a:not(.nav-cta) {
    background: rgba(255, 255, 255, 0.28);
  }

  .nav-menu a:not(.nav-cta):hover,
  .nav-menu a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.72);
    color: var(--brand);
  }

  .nav-menu a:not(.nav-cta)::after {
    display: none;
  }

  .nav-menu .brand,
  .nav-menu img {
    display: none !important;
  }

  .nav-cta {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    margin-top: 4px;
    padding: 0 16px;
  }

  /* Hero mobile */
  .hero-section {
    padding: 16px 0 28px;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 22px;
    padding: 26px 0 10px;
  }

  .hero-copy {
    padding-top: 6px;
  }

  .hero-copy h1 {
    font-size: clamp(3.4rem, 15vw, 5.2rem);
    max-width: 100%;
  }

  .hero-copy h1::after {
    display: none;
  }

  .hero-intro {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.7;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-points {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 100%;
  }

  .hero-points li {
    text-align: center;
  }

  .hero-visual {
    position: relative;
    min-height: 520px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
  }

  .hero-visual::before {
    width: 300px;
    height: 300px;
  }

  .hero-glass-card {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 84%;
    height: 300px;
    border-radius: 28px;
    transform: translate(-50%, -50%) rotate(-6deg);
    z-index: 1;
  }

  .hero-model {
    display: block;
    position: relative;
    z-index: 2;
    width: min(320px, 88%);
    height: 320px;
    max-width: 100%;
    overflow: visible;
  }

  .hero-feature-box {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 360px;
    margin: 18px auto 0;
    padding: 18px;
    z-index: 3;
  }

  .hero-star {
    font-size: 14px;
  }

  .hero-star-1 {
    top: 92px;
    left: 6%;
  }

  .hero-star-2 {
    top: 210px;
    left: auto;
    right: 14%;
  }

  .hero-star-3 {
    top: auto;
    bottom: 180px;
    right: 8%;
  }

  .hero-star-4 {
    bottom: 88px;
    right: auto;
    left: 10%;
  }

  /* Trust */
  .trust-section {
    padding-top: 8px;
  }

  .trust-list {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .trust-list li {
    min-height: 62px;
    padding: 14px 12px;
    font-size: 0.9rem;
  }

  /* Cards and content */
  .service-cards,
  .portfolio-grid,
  .testimonial-grid,
  .feature-grid,
  .process-grid,
  .two-column-content,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card,
  .feature-item,
  .process-step,
  .portfolio-card,
  .testimonial-card,
  .two-column-content > div,
  .footer-grid > div,
  .final-cta-box {
    padding: 20px;
  }

  .portfolio-card img {
    aspect-ratio: 4 / 3;
  }

  .portfolio-card h3,
  .portfolio-card p {
    padding-left: 20px;
    padding-right: 20px;
  }

  .portfolio-card h3 {
    padding-top: 18px;
  }

  .portfolio-card p {
    padding-bottom: 20px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }

  /* FAQ */
  .faq-item summary {
    padding: 18px 18px;
    padding-right: 48px;
    line-height: 1.45;
  }

  .faq-item summary::after {
    right: 18px;
  }

  .faq-item p {
    padding: 0 18px 18px;
  }

  /* Final CTA */
  .final-cta-box {
    text-align: left;
    padding: 24px 20px;
    border-radius: 28px;
  }

  .final-cta-box h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
    margin-bottom: 12px;
  }

  .final-cta-box p {
    max-width: 100%;
    margin: 0 0 20px;
  }

  /* Footer */
  .footer-bottom {
    margin-top: 18px;
    text-align: left;
    font-size: 0.86rem;
  }
}

@media (max-width: 768px) {
  .hero-visual {
    min-height: 420px;
  }

  .hero-glass-card {
    width: 84%;
    height: 300px;
  }

  .hero-model {
    width: min(300px, 86%);
    height: 300px;
  }
}

@media (max-width: 560px) {
  .trust-list {
    grid-template-columns: 1fr;
  }

  .brand {
    max-width: 170px;
    min-width: 0;
  }

  .brand img {
    height: 34px;
  }

  .hero-visual {
    min-height: 380px;
  }

  .hero-glass-card {
    height: 260px;
  }

  .hero-model {
    width: min(260px, 82%);
    height: 260px;
  }

  .hero-copy h1 {
    font-size: clamp(3.9rem, 15vw, 5.8rem);
    line-height: 0.9;
    max-width: 100%;
  }

  .hero-copy h1::after {
    left: 52px;
    top: 52px;
    font-size: clamp(3.2rem, 13vw, 4.8rem);
  }

  .hero-star {
    font-size: 0.95rem;
  }
}