/* =========================================================
   PRESSLY — PREMIUM GLOSSY LANDING PAGE
========================================================= */

:root {
  --navy: #102b3a;
  --navy-dark: #081923;
  --navy-soft: #193847;

  --gold: #c99a3c;
  --gold-light: #e6c779;

  --cream: #f7f4ee;
  --cream-2: #eeeae2;

  --white: #ffffff;
  --text: #18232a;
  --muted: #69747b;

  --border: rgba(16, 43, 58, 0.1);

  --shadow: 0 30px 80px rgba(10, 30, 40, 0.15);

  --radius: 30px;
}

/* =========================================================
   RESET
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: "DM Sans", sans-serif;

  background:
    radial-gradient(circle at 17% 25%, #fff 0, transparent 31%),
    radial-gradient(circle at 90% 20%, #183b4ba8 0, transparent 40%),
    linear-gradient(120deg, #f5f1e9, #dfe2dc 45%, #0e2938);

  color: var(--text);

  line-height: 1.6;

  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
}

::selection {
  background: var(--gold);
  color: white;
}

/* =========================================================
   NAVBAR
========================================================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;

  z-index: 1000;

  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease;
}

.navbar.scrolled {
  background: rgba(247, 244, 238, 0.82);

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  box-shadow: 0 10px 40px rgba(8, 25, 35, 0.08);
}

.nav-container {
  width: min(1200px, 92%);
  height: 86px;

  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================================================
   BRAND
========================================================= */

.brand {
  display: flex;
  align-items: center;
  gap: 7px;
}

.brand-logo {
  width: 62px;
  height: 54px;

  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;

  line-height: 1;
}

.brand-text span {
  font-family: "Playfair Display", serif;

  font-size: 25px;

  font-weight: 600;

  letter-spacing: 1px;

  color: var(--navy);
}

.brand-text small {
  font-size: 8px;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  color: var(--gold);

  margin-top: 5px;
}

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

.desktop-nav {
  display: flex;
  gap: 38px;
}

.desktop-nav a {
  position: relative;

  font-size: 14px;

  font-weight: 500;

  color: #34434b;

  transition: 0.3s;
}

.desktop-nav a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -7px;

  width: 0;
  height: 2px;

  background: var(--gold);

  transition: 0.3s;
}

.desktop-nav a:hover {
  color: var(--navy);
}

.desktop-nav a:hover::after {
  width: 100%;
}

/* =========================================================
   NAV BUTTON
========================================================= */

.nav-button {
  display: flex;

  align-items: center;
  gap: 10px;

  padding: 12px 21px;

  border: 1px solid rgba(16, 43, 58, 0.35);

  border-radius: 30px;

  font-size: 13px;

  font-weight: 600;

  transition: 0.3s;
}

.nav-button span {
  font-size: 16px;
}

.nav-button:hover {
  background: var(--navy);

  color: white;

  transform: translateY(-2px);
}

/* =========================================================
   MOBILE NAV
========================================================= */

.mobile-menu-button {
  display: none;

  background: none;

  border: none;

  font-size: 26px;

  color: var(--navy);

  cursor: pointer;
}

.mobile-menu {
  display: none;
}

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

.hero {
  position: relative;

  min-height: 100vh;

  padding-top: 120px;

  overflow: hidden;
}

.hero-container {
  width: min(1200px, 92%);

  min-height: 680px;

  margin: auto;

  display: grid;

  grid-template-columns: 0.92fr 1.08fr;

  align-items: center;

  gap: 40px;

  position: relative;

  z-index: 2;
}

/* =========================================================
   GLOW
========================================================= */

.hero-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(90px);

  pointer-events: none;
}

.glow-one {
  width: 500px;
  height: 500px;

  right: -150px;
  top: 50px;

  background: rgba(215, 188, 127, 0.22);
}

.glow-two {
  width: 400px;
  height: 400px;

  left: -200px;
  bottom: 100px;

  background: rgba(158, 199, 214, 0.25);
}

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

.hero-content {
  position: relative;

  z-index: 5;
}

.rating {
  display: flex;

  align-items: center;

  gap: 14px;

  margin-bottom: 24px;
}

.rating span {
  color: #e1a900;

  font-size: 21px;

  letter-spacing: 3px;
}

.rating small {
  font-size: 11px;

  text-transform: uppercase;

  letter-spacing: 1.5px;

  color: var(--muted);

  font-weight: 600;
}

.hero h1 {
  font-family: "Playfair Display", serif;

  font-size: clamp(55px, 6vw, 82px);

  font-weight: 500;

  line-height: 0.98;

  letter-spacing: -3px;

  color: var(--navy);

  max-width: 620px;
}

.hero h1 span {
  font-style: italic;

  color: var(--gold);
}

.hero-description {
  max-width: 520px;

  margin-top: 30px;

  font-size: 17px;

  line-height: 1.8;

  color: var(--muted);
}

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

.hero-actions {
  display: flex;

  gap: 14px;

  margin-top: 35px;
}

.primary-button,
.secondary-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  padding: 15px 25px;

  border-radius: 50px;

  font-size: 14px;

  font-weight: 600;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.primary-button {
  background: var(--navy);

  color: white;

  box-shadow: 0 15px 35px rgba(16, 43, 58, 0.22);
}

.primary-button:hover {
  transform: translateY(-4px);

  box-shadow: 0 22px 45px rgba(16, 43, 58, 0.3);
}

.primary-button span {
  color: var(--gold-light);

  font-size: 17px;
}

.secondary-button {
  border: 1px solid rgba(16, 43, 58, 0.25);

  color: var(--navy);

  background: rgba(255, 255, 255, 0.4);

  backdrop-filter: blur(10px);
}

.secondary-button:hover {
  background: var(--gold);

  border-color: var(--gold);

  color: var(--navy);

  transform: translateY(-4px);
}

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

.hero-trust {
  display: flex;

  align-items: center;

  gap: 22px;

  margin-top: 55px;
}

.trust-item {
  display: flex;

  flex-direction: column;
}

.trust-item strong {
  font-size: 12px;

  color: var(--navy);

  font-weight: 700;
}

.trust-item span {
  font-size: 10px;

  color: var(--muted);

  margin-top: 2px;
}

.trust-line {
  height: 30px;

  width: 1px;

  background: rgba(16, 43, 58, 0.16);
}

/* =========================================================
   HERO VISUAL — BEFORE / AFTER
========================================================= */

.hero-visual {
  width: 100%;
  min-width: 0;

  display: grid;

  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

  align-items: center;

  gap: 24px;

  padding: 20px 0;

  position: relative;
}

/* =========================================================
   BEFORE — WRINKLED SHIRT
========================================================= */

.before-image {
  position: relative;

  width: 100%;

  min-width: 0;

  height: 570px;

  display: flex;

  align-items: center;

  justify-content: center;
  overflow: visible;
}

.before-image img {
  width: 125%;
  height: 125%;

  max-width: none;

  object-fit: contain;

  object-position: center;

  display: block;

  filter: drop-shadow(0 25px 35px rgba(16, 43, 58, 0.14));

  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

.before-image:hover img {
  transform: scale(1.025);

  filter: drop-shadow(0 30px 45px rgba(16, 43, 58, 0.18));
}

/* =========================================================
   AFTER — FOLDED SHIRTS
========================================================= */

.after-image {
  position: relative;

  width: 100%;
  height: 570px;

  min-width: 0;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  padding-top: 55px;
  flex-shrink: 0;

  background: transparent;
  overflow: visible;
}

.after-image img {
  width: 100%;

  height: auto;

  object-fit: contain;

  object-position: center;

  display: block;

  filter: drop-shadow(0 25px 40px rgba(16, 43, 58, 0.18));

  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

.after-image:hover img {
  transform: scale(1.025);

  filter: drop-shadow(0 30px 50px rgba(16, 43, 58, 0.22));
}

/* =========================================================
   BEFORE / AFTER LABEL
========================================================= */

.image-label {
  position: absolute;

  top: 5px;

  left: 50%;

  transform: translateX(-50%);

  padding: 10px 20px;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.9);

  backdrop-filter: blur(12px);

  -webkit-backdrop-filter: blur(12px);

  color: var(--muted);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 2px;

  white-space: nowrap;

  z-index: 5;

  box-shadow: 0 10px 30px rgba(16, 43, 58, 0.08);
}

/* AFTER LABEL */

.image-label.after-label {
  background: var(--navy);

  color: white;

  border: 1px solid rgba(255, 255, 255, 0.15);

  box-shadow: 0 10px 30px rgba(16, 43, 58, 0.18);
}

/* =========================================================
   AFTER TEXT
========================================================= */

.after-copy {
  width: 100%;

  margin-top: 34px;

  padding: 0 5px;

  text-align: center;

  position: relative;

  z-index: 10;

  flex-shrink: 0;
}

.after-copy h2 {
  margin: 0;

  font-family: "Playfair Display", serif;

  font-size: clamp(22px, 2.6vw, 34px);

  line-height: 1.15;

  font-weight: 600;

  letter-spacing: -0.8px;

  color: var(--navy);
  white-space: nowrap;
}

.after-copy h2 span {
  color: var(--gold);
  font-style: italic;

  font-weight: 600;
}

.after-copy p {
  margin: 12px 0 0;

  font-family: "DM Sans", sans-serif;

  font-size: 14px;

  line-height: 1.6;

  font-weight: 400;

  letter-spacing: 0.1px;

  color: var(--navy);
}

.after-copy p strong {
  font-weight: 700;

  color: var(--navy);
}

/* =========================================================
   DECORATIVE CIRCLE
========================================================= */

.visual-circle {
  position: absolute;

  width: 130px;
  height: 130px;

  border-radius: 50%;

  border: 1px solid rgba(201, 154, 60, 0.5);

  right: -30px;
  top: 30px;

  z-index: 1;

  pointer-events: none;
}

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

.hero-bottom {
  position: relative;

  background: linear-gradient(90deg, #081923, #102b3a, #081923);

  color: white;

  min-height: 82px;

  display: flex;

  align-items: center;

  z-index: 5;
}

.hero-bottom-inner {
  width: min(1200px, 92%);

  margin: auto;

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 30px;
}

.bottom-message {
  display: flex;

  align-items: center;

  gap: 12px;

  font-size: 13px;

  font-weight: 500;
}

.bottom-dot {
  width: 8px;
  height: 8px;

  background: var(--gold);

  border-radius: 50%;

  box-shadow: 0 0 0 6px rgba(201, 154, 60, 0.12);
}

.bottom-features {
  display: flex;

  gap: 15px;

  align-items: center;

  font-size: 10px;

  color: rgba(255, 255, 255, 0.7);

  text-transform: uppercase;

  letter-spacing: 1px;
}

.separator {
  color: var(--gold);
}

.bottom-button {
  padding: 12px 20px;

  border-radius: 30px;

  background: white;

  color: var(--navy);

  font-size: 12px;

  font-weight: 600;

  display: flex;

  align-items: center;

  gap: 8px;

  transition: 0.3s;
}

.bottom-button:hover {
  background: var(--gold-light);

  transform: translateY(-2px);
}

/* =========================================================
   GENERAL SECTION
========================================================= */

.section {
  padding: 120px 0;
}

.section-container {
  width: min(1100px, 90%);

  margin: auto;
}

.section-label {
  font-size: 10px;

  font-weight: 700;

  letter-spacing: 2px;

  color: var(--gold);

  text-transform: uppercase;

  margin-bottom: 18px;
}

/* =========================================================
   ABOUT
========================================================= */

.about-section {
  background:
    radial-gradient(
      circle at 80% 30%,
      rgba(201, 154, 60, 0.07),
      transparent 25%
    ),
    var(--cream);
}

.about-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 100px;

  align-items: start;
}

.about-grid h2,
.services-heading h2,
.process-header h2 {
  font-family: "Playfair Display", serif;

  font-size: clamp(40px, 5vw, 62px);

  line-height: 1.05;

  font-weight: 500;

  letter-spacing: -2px;

  color: var(--navy);
}

.about-grid h2 em,
.services-heading h2 em,
.process-header h2 em {
  color: var(--gold);

  font-style: italic;
}

.about-copy {
  padding-top: 8px;
}

.about-copy p {
  color: var(--muted);

  font-size: 16px;

  line-height: 1.9;

  margin-bottom: 25px;
}

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

.services-section {
  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(201, 154, 60, 0.08),
      transparent 25%
    ),
    #eef1ee;
}

.services-heading {
  display: flex;

  justify-content: space-between;

  align-items: end;

  gap: 50px;

  margin-bottom: 55px;
}

.services-heading > p {
  max-width: 360px;

  color: var(--muted);

  font-size: 15px;

  line-height: 1.8;
}

/* =========================================================
   SERVICE GRID
========================================================= */

.service-grid {
  display: grid;

  grid-template-columns:
    1.2fr
    0.8fr
    0.8fr;

  grid-template-rows:
    auto
    auto;

  gap: 18px;
}

/* =========================================================
   PREMIUM SERVICE CARD
========================================================= */

.service-card {
  position: relative;

  overflow: hidden;

  min-height: 270px;

  padding: 34px;

  background:
    radial-gradient(
      circle at 100% 100%,
      rgba(201, 154, 60, 0.13),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.97),
      rgba(241, 243, 240, 0.88)
    );

  border: 1px solid rgba(16, 43, 58, 0.08);

  border-radius: 25px;

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.service-card::before {
  content: "";

  position: absolute;

  width: 280px;
  height: 280px;

  right: -150px;
  bottom: -160px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(201, 154, 60, 0.2), transparent 68%);

  filter: blur(8px);

  transition: transform 0.6s ease;
}

.service-card::after {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 45%;

  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.45),
    transparent 55%
  );

  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);

  border-color: rgba(201, 154, 60, 0.22);

  box-shadow:
    0 25px 60px rgba(16, 43, 58, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.service-card:hover::before {
  transform: scale(1.4);
}

/* =========================================================
   LARGE CARD
========================================================= */

.large-card {
  grid-row: span 2;

  background:
    radial-gradient(
      circle at 85% 90%,
      rgba(201, 154, 60, 0.15),
      transparent 32%
    ),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 241, 238, 0.9));

  color: var(--text);
}

.large-card h3 {
  color: var(--navy);
}

.large-card p {
  color: var(--muted);

  opacity: 1;
}

.wide-card {
  grid-column: span 2;
}

.service-number {
  position: absolute;

  top: 25px;
  right: 28px;

  font-size: 11px;

  color: var(--gold);

  letter-spacing: 1px;

  z-index: 4;
}

.service-icon {
  width: 55px;
  height: 55px;

  border-radius: 16px;

  background: linear-gradient(
    145deg,
    rgba(201, 154, 60, 0.15),
    rgba(201, 154, 60, 0.06)
  );

  color: var(--gold);

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 25px;

  margin-bottom: 45px;

  border: 1px solid rgba(201, 154, 60, 0.08);

  position: relative;

  z-index: 3;
}

.service-card h3 {
  font-family: "Playfair Display", serif;

  font-size: 28px;

  line-height: 1.1;

  color: var(--navy);

  margin-bottom: 15px;

  max-width: 300px;

  position: relative;

  z-index: 3;
}

.service-card p {
  color: var(--muted);

  font-size: 13px;

  line-height: 1.8;

  max-width: 340px;

  position: relative;

  z-index: 3;
}

.card-arrow {
  position: absolute;

  bottom: 28px;
  right: 28px;

  width: 35px;
  height: 35px;

  border: 1px solid rgba(16, 43, 58, 0.15);

  border-radius: 50%;

  display: flex;

  align-items: center;
  justify-content: center;

  color: var(--navy);

  transition: 0.3s;

  z-index: 4;
}

.service-card:hover .card-arrow {
  background: var(--gold);

  border-color: var(--gold);

  transform: rotate(8deg);
}

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

.process-section {
  background: var(--cream);
}

.process-header {
  text-align: center;

  margin-bottom: 70px;
}

.process-header .section-label {
  margin-bottom: 20px;
}

.process-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
}

.process-step {
  position: relative;

  padding: 10px 15px;
}

.process-top {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 30px;
}

.process-top > span {
  width: 35px;
  height: 35px;

  border-radius: 50%;

  background: var(--navy);

  color: white;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 11px;

  font-weight: 700;
}

.process-line {
  height: 1px;

  flex: 1;

  background: rgba(16, 43, 58, 0.15);
}

.process-icon {
  font-size: 35px;

  margin-bottom: 18px;
}

.process-step h3 {
  font-family: "Playfair Display", serif;

  font-size: 25px;

  color: var(--navy);

  margin-bottom: 10px;
}

.process-step p {
  color: var(--muted);

  font-size: 13px;

  line-height: 1.7;
}

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

.cta-section {
  position: relative;

  overflow: hidden;

  padding: 120px 20px;

  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(201, 154, 60, 0.16),
      transparent 30%
    ),
    linear-gradient(135deg, #0b202b, #132f3d);

  text-align: center;

  color: white;
}

.cta-glow {
  position: absolute;

  width: 500px;
  height: 500px;

  right: -200px;
  top: -250px;

  border-radius: 50%;

  background: rgba(201, 154, 60, 0.1);

  filter: blur(80px);
}

.cta-content {
  position: relative;

  z-index: 2;
}

.section-label.light {
  color: var(--gold-light);
}

.cta-content h2 {
  font-family: "Playfair Display", serif;

  font-size: clamp(45px, 6vw, 72px);

  line-height: 1.05;

  font-weight: 500;

  letter-spacing: -2px;

  margin-bottom: 20px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.65);

  font-size: 16px;

  margin-bottom: 35px;
}

.cta-buttons {
  display: flex;

  justify-content: center;

  gap: 12px;
}

.cta-primary,
.cta-whatsapp {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 15px 25px;

  border-radius: 50px;

  font-size: 14px;

  font-weight: 600;

  transition: 0.3s;
}

.cta-primary {
  background: var(--gold);

  color: var(--navy);
}

.cta-primary:hover {
  background: var(--gold-light);

  transform: translateY(-4px);

  box-shadow: 0 15px 35px rgba(201, 154, 60, 0.25);
}

.cta-whatsapp {
  border: 1px solid rgba(255, 255, 255, 0.25);

  color: white;
}

.cta-whatsapp:hover {
  background: white;

  color: var(--navy);
}

.phone-link {
  display: inline-block;

  margin-top: 28px;

  color: rgba(255, 255, 255, 0.7);

  font-size: 14px;

  letter-spacing: 1px;
}

.phone-link:hover {
  color: var(--gold-light);
}

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

footer {
  background: #071923;

  color: white;

  padding: 35px 0 20px;
}

.footer-container {
  width: min(1100px, 90%);

  margin: auto;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;
}

.footer-brand {
  display: flex;

  align-items: center;

  gap: 8px;
}

.footer-brand img {
  width: 55px;
  height: 45px;

  object-fit: contain;
}

.footer-brand div {
  display: flex;

  flex-direction: column;
}

.footer-brand strong {
  font-family: "Playfair Display", serif;

  font-size: 20px;

  letter-spacing: 1px;
}

.footer-brand span {
  font-size: 8px;

  text-transform: uppercase;

  letter-spacing: 1px;

  color: var(--gold);
}

.footer-center {
  display: flex;

  align-items: center;

  gap: 12px;

  font-size: 11px;

  color: rgba(255, 255, 255, 0.5);
}

.footer-center a:hover {
  color: var(--gold);
}

.footer-right a {
  font-size: 12px;

  color: var(--gold-light);
}

.footer-bottom {
  width: min(1100px, 90%);

  margin: 30px auto 0;

  padding-top: 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  color: rgba(255, 255, 255, 0.35);

  font-size: 10px;

  text-align: center;
}

/* =========================================================
   WHATSAPP
========================================================= */

.floating-whatsapp {
  position: fixed;

  right: 25px;
  bottom: 25px;

  width: 58px;
  height: 58px;

  border-radius: 50%;

  background: #25d366;

  color: white;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 29px;

  z-index: 999;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);

  transition: 0.3s;

  animation: whatsappPulse 3s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.12);

  animation: none;
}

@keyframes whatsappPulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(37, 211, 102, 0.35),
      0 15px 35px rgba(0, 0, 0, 0.2);
  }

  70% {
    box-shadow:
      0 0 0 14px rgba(37, 211, 102, 0),
      0 15px 35px rgba(0, 0, 0, 0.2);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(37, 211, 102, 0),
      0 15px 35px rgba(0, 0, 0, 0.2);
  }
}

/* =========================================================
   SCROLL REVEAL
========================================================= */

.section,
.cta-section {
  opacity: 0;

  transform: translateY(35px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.section.visible,
.cta-section.visible {
  opacity: 1;

  transform: translateY(0);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {
  .desktop-nav {
    gap: 20px;
  }

  .hero-container {
    grid-template-columns: 1fr;

    text-align: center;

    padding-top: 40px;

    gap: 30px;
  }

  .hero-content {
    display: flex;

    flex-direction: column;

    align-items: center;
  }

  .hero h1 {
    max-width: 750px;
  }

  .hero-description {
    max-width: 650px;
  }

  .hero-trust {
    justify-content: center;
  }

  /* IMAGE AREA TABLET */

  .hero-visual {
    width: 100%;

    height: 620px;

    grid-template-columns: 1.15fr 0.85fr;

    gap: 15px;

    padding: 10px 0;
  }

  .before-image {
    height: 570px;
  }

  .before-image img {
    width: 125%;
    height: 125%;
  }

  .after-image {
    height: 570px;
  }

  .after-image img {
    width: 112%;
    height: 112%;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .large-card {
    grid-row: span 1;
  }

  .wide-card {
    grid-column: span 2;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;

    row-gap: 50px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {
  .nav-container {
    height: 75px;
  }

  .desktop-nav,
  .nav-button {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

  .mobile-menu {
    position: absolute;

    left: 5%;

    width: 90%;

    top: 72px;

    padding: 20px;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.94);

    backdrop-filter: blur(20px);

    box-shadow: 0 20px 50px rgba(8, 25, 35, 0.12);

    display: none;

    flex-direction: column;

    gap: 5px;
  }

  .mobile-menu.open {
    display: flex;
  }

  .mobile-menu a {
    padding: 14px;

    border-radius: 12px;

    font-size: 14px;

    font-weight: 600;
  }

  .mobile-menu a:hover {
    background: var(--cream);

    color: var(--gold);
  }

  .brand-logo {
    width: 52px;
    height: 48px;
  }

  .brand-text span {
    font-size: 21px;
  }

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

  .hero {
    padding-top: 100px;
  }

  .hero-container {
    width: 92%;

    min-height: auto;

    padding-bottom: 45px;
  }

  .rating {
    margin-bottom: 18px;
  }

  .rating span {
    font-size: 17px;
  }

  .rating small {
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 60px);

    letter-spacing: -2px;
  }

  .hero-description {
    font-size: 15px;

    margin-top: 23px;
  }

  .hero-actions {
    flex-direction: column;

    width: 100%;

    max-width: 320px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-trust {
    gap: 12px;

    margin-top: 35px;
  }

  .trust-item strong {
    font-size: 10px;
  }

  .trust-item span {
    font-size: 8px;
  }

  /* =========================================================
   MOBILE HERO IMAGES
========================================================= */

  .hero-visual {
    width: 100%;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: flex-start;

    gap: 30px;

    min-height: auto;
    height: auto;

    padding: 25px 0 50px;
  }

  /* =========================================================
   BEFORE — WRINKLED SHIRT
========================================================= */

  .before-image {
    position: relative;

    width: 100%;
    height: 390px;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
    padding: 0;
    overflow: visible;
  }

  .before-image img {
    width: 100%;
    height: 100%;

    max-width: none;
    max-height: none;

    object-fit: contain;
    object-position: center;

    display: block;
    transform: none;

    filter: drop-shadow(0 25px 35px rgba(16, 43, 58, 0.14));
  }

  .before-image:hover img {
    transform: scale(1.015);
  }

  /* =========================================================
   AFTER — FOLDED SHIRTS + MESSAGE
========================================================= */

  .after-image {
    position: relative;

    width: 92%;

    height: auto;
    min-height: 0;

    padding-top: 55px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: flex-start;

    flex-shrink: 0;

    background: transparent;

    overflow: visible;
  }

  /* =========================================================
   FOLDED SHIRT IMAGE
========================================================= */

  .after-image img {
    width: 100%;

    height: auto;

    max-height: none;

    object-fit: contain;

    display: block;

    flex-shrink: 0;

    filter: drop-shadow(0 25px 40px rgba(16, 43, 58, 0.16));

    transition: transform 0.4s ease;
  }

  .after-image:hover img {
    transform: scale(1.02);
  }

  /* =========================================================
   AFTER LABEL
========================================================= */

  .image-label {
    position: absolute;

    top: 5px;
    left: 50%;

    transform: translateX(-50%);

    padding: 9px 17px;

    font-size: 9px;

    letter-spacing: 1.8px;

    z-index: 10;

    white-space: nowrap;
  }

  /* =========================================================
   FRESH. NEAT. PERFECT.
========================================================= */

  .after-copy {
    width: 100%;

    margin-top: 28px;

    padding: 0 5px;

    text-align: center;

    position: relative;

    z-index: 10;

    flex-shrink: 0;
  }

  .after-copy h2 {
    margin: 0;

    font-family: "Playfair Display", serif;

    font-size: clamp(25px, 7vw, 32px);

    line-height: 1.15;

    font-weight: 600;

    letter-spacing: -0.6px;

    color: var(--navy);

    white-space: nowrap;
  }

  .after-copy h2 span {
    color: var(--gold);

    font-style: italic;

    font-weight: 600;
  }

  .after-copy p {
    margin: 10px 0 0;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;

    line-height: 1.6;

    font-weight: 400;

    color: var(--muted);
  }

  .after-copy p strong {
    color: var(--navy);

    font-weight: 700;
  }

  /* =========================================================
   DECORATIVE CIRCLE
========================================================= */

  .visual-circle {
    display: none;
  }

  /* =======================================================
     MOBILE LABEL
  ======================================================= */

  .image-label {
    top: 5px;

    padding: 9px 16px;

    font-size: 9px;

    letter-spacing: 1.8px;

    z-index: 10;
  }

  /* =======================================================
     FLOATING CARDS MOBILE
  ======================================================= */

  .floating-card {
    padding: 10px 12px;

    border-radius: 14px;
  }

  .floating-card-top {
    left: -5px;

    top: 45px;
  }

  .floating-card-bottom {
    right: -5px;

    bottom: 30px;
  }

  .floating-card strong {
    font-size: 9px;
  }

  .floating-card span {
    font-size: 8px;
  }

  .mini-icon {
    width: 30px;
    height: 30px;

    font-size: 14px;
  }

  .visual-circle {
    display: none;
  }

  /* =======================================================
     BOTTOM
  ======================================================= */

  .hero-bottom {
    min-height: auto;

    padding: 20px 0;
  }

  .hero-bottom-inner {
    flex-direction: column;

    gap: 16px;

    text-align: center;
  }

  .bottom-features {
    display: none;
  }

  .bottom-button {
    width: 100%;

    justify-content: center;
  }

  /* =======================================================
     SECTIONS
  ======================================================= */

  .section {
    padding: 80px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .about-grid h2,
  .services-heading h2,
  .process-header h2 {
    font-size: 43px;

    letter-spacing: -1.5px;
  }

  .services-heading {
    flex-direction: column;

    align-items: flex-start;

    gap: 20px;
  }

  /* =======================================================
     SERVICE CARDS
  ======================================================= */

  .service-grid {
    grid-template-columns: 1fr;

    gap: 15px;
  }

  .large-card,
  .wide-card {
    grid-column: auto;

    grid-row: auto;
  }

  .service-card {
    min-height: 260px;

    padding: 28px;
  }

  .service-icon {
    margin-bottom: 35px;
  }

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

  .process-header {
    text-align: left;

    margin-bottom: 50px;
  }

  .process-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .process-line {
    display: none;
  }

  .process-top {
    margin-bottom: 18px;
  }

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

  .cta-section {
    padding: 90px 20px;
  }

  .cta-content h2 {
    font-size: 46px;

    letter-spacing: -1px;
  }

  .cta-buttons {
    flex-direction: column;

    max-width: 300px;

    margin: auto;
  }

  .cta-primary,
  .cta-whatsapp {
    justify-content: center;
  }

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

  .footer-container {
    flex-direction: column;

    text-align: center;
  }

  .footer-center {
    flex-direction: column;

    gap: 5px;
  }

  /* =======================================================
     WHATSAPP
  ======================================================= */

  .floating-whatsapp {
    width: 53px;
    height: 53px;

    right: 17px;
    bottom: 17px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {
  .hero h1 {
    font-size: 40px;
  }

  .hero-trust {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
  }

  .trust-line {
    display: none;
  }

  /* =======================================================
     SMALL MOBILE HERO IMAGES
  ======================================================= */

  .hero-visual {
    gap: 25px;

    padding-top: 20px;

    padding-bottom: 40px;
  }

  /* BEFORE */

  .before-image {
    width: 100%;
    padding: 0 8px;
    height: 350px;
  }

  .before-image img {
    width: 112%;

    height: 112%;

    max-width: none;

    object-fit: contain;
  }

  /* AFTER */

  .after-image {
    width: 100%;

    height: auto;

    min-height: 0;

    padding-top: 50px;

    overflow: visible;
  }

  .after-image img {
    width: 100%;

    height: auto;

    max-height: none;

    object-fit: contain;
  }

  /* AFTER LABEL */

  .image-label {
    top: 5px;

    padding: 8px 15px;

    font-size: 8px;

    letter-spacing: 1.7px;
  }

  /* MESSAGE */

  .after-copy {
    width: 100%;

    margin-top: 22px;

    padding: 0 5px;

    text-align: center;
  }

  .after-copy h2 {
    font-size: 22px;

    line-height: 1.15;

    letter-spacing: -0.5px;

    white-space: nowrap;
  }

  .after-copy p {
    font-size: 12px;

    margin-top: 8px;
  }

  .about-grid h2,
  .services-heading h2,
  .process-header h2 {
    font-size: 38px;
  }

  .cta-content h2 {
    font-size: 40px;
  }
}

/* =========================================================
   MOBILE — PREMIUM BACKGROUND TUNING
========================================================= */

@media (max-width: 700px) {
  body {
    background:
      radial-gradient(
        circle at 15% 8%,
        rgba(255, 255, 255, 0.95) 0,
        rgba(255, 255, 255, 0) 32%
      ),
      radial-gradient(
        circle at 100% 25%,
        rgba(201, 154, 60, 0.1) 0,
        rgba(201, 154, 60, 0) 35%
      ),
      radial-gradient(
        circle at 100% 75%,
        rgba(16, 43, 58, 0.16) 0,
        rgba(16, 43, 58, 0) 45%
      ),
      linear-gradient(145deg, #f7f4ee 0%, #e8e9e3 48%, #cbd5d3 100%);

    background-attachment: fixed;
  }

  .hero {
    background: transparent;
  }
}

/* =========================================================
   IMAGE SHINE EFFECT
========================================================= */

.image-shine {
  position: absolute;

  top: -100%;
  left: -100%;

  width: 35%;
  height: 250%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.22),
    transparent
  );

  transform: rotate(20deg);

  animation: shine 8s infinite;

  z-index: 8;

  pointer-events: none;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  45%,
  100% {
    left: 160%;
  }
}
