:root {
  --ink: #151417;
  --ink-soft: #3e3a41;
  --paper: #fffaf6;
  --white: #ffffff;
  --rose: #d63c7c;
  --rose-dark: #9f2558;
  --gold: #d8a94c;
  --jade: #167c73;
  --charcoal: #111114;
  --line: rgba(21, 20, 23, 0.13);
  --shadow: 0 22px 55px rgba(17, 17, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 246, 0.92);
  border-bottom: 1px solid rgba(21, 20, 23, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-logo {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 52px;
  aspect-ratio: 1799 / 3103;
  padding: 5px;
  background: var(--white);
  border: 1px solid rgba(21, 20, 23, 0.12);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--gold);
}

.brand-logo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 15px;
  line-height: 1.1;
}

.brand-copy small {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover {
  color: var(--rose-dark);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  min-width: 116px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--jade);
}

.btn {
  padding: 14px 22px;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--rose);
  box-shadow: 0 15px 30px rgba(214, 60, 124, 0.28);
}

.btn-primary:hover {
  background: var(--rose-dark);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.hero {
  position: relative;
  min-height: clamp(470px, 74svh, 660px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -2;
  background: url("./assets/hero-rizos.png") center right / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(17, 17, 20, 0.88) 0%, rgba(17, 17, 20, 0.72) 38%, rgba(17, 17, 20, 0.18) 78%),
    linear-gradient(0deg, rgba(17, 17, 20, 0.28), rgba(17, 17, 20, 0.04));
}

.hero-content {
  width: min(680px, 100%);
  padding: clamp(44px, 6vw, 76px) clamp(20px, 6vw, 72px);
}

.eyebrow,
.section-kicker,
.card-tag {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 12ch;
  margin: 12px 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(44px, 8vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 2vw, 20px);
}

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

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink);
  color: var(--white);
}

.quick-strip article {
  min-height: 96px;
  padding: 22px clamp(18px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(214, 60, 124, 0.13), rgba(22, 124, 115, 0.1)),
    #1d1b20;
}

.quick-strip strong {
  display: block;
  font-size: 20px;
  line-height: 1.2;
}

.quick-strip span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.section {
  padding: clamp(58px, 8vw, 96px) clamp(20px, 6vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: var(--white);
}

.intro h2,
.section-heading h2,
.appointment-copy h2,
.team-copy h2 {
  margin: 9px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

.intro p:last-child,
.section-heading p,
.appointment-copy p,
.team-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin-bottom: 14px;
}

.section-heading.compact {
  max-width: 660px;
}

.services {
  background:
    linear-gradient(180deg, rgba(216, 169, 76, 0.16), rgba(216, 169, 76, 0)),
    var(--paper);
}

.service-grid,
.location-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.location-card,
.faq-grid article,
.request-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(17, 17, 20, 0.06);
}

.service-card {
  min-height: 265px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.service-card h3,
.location-card h3,
.faq-grid h3 {
  margin: 12px 0 10px;
  font-size: 22px;
  line-height: 1.15;
}

.service-card p,
.location-card p,
.faq-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.service-card strong {
  margin-top: auto;
  padding-top: 20px;
  color: var(--rose-dark);
  font-size: 24px;
  line-height: 1.15;
}

.service-card.highlighted {
  border-color: rgba(214, 60, 124, 0.32);
  box-shadow: 0 22px 50px rgba(214, 60, 124, 0.13);
}

.service-card.premium {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(214, 60, 124, 0.22), rgba(216, 169, 76, 0.18)),
    var(--charcoal);
}

.service-card.premium p {
  color: rgba(255, 255, 255, 0.76);
}

.service-card.premium strong {
  color: var(--gold);
}

.results {
  background: var(--white);
}

.results-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(360px, 1.15fr);
  gap: 18px;
  align-items: stretch;
}

.result-feature,
.result-card {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(17, 17, 20, 0.12);
}

.result-feature {
  min-height: 560px;
}

.result-feature img,
.result-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-feature::after,
.result-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(17, 17, 20, 0.82), rgba(17, 17, 20, 0));
  pointer-events: none;
}

.result-feature div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  color: var(--white);
}

.result-feature span,
.result-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.result-feature h3 {
  max-width: 14ch;
  margin: 8px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: 0;
}

.result-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.result-card {
  min-height: 270px;
  aspect-ratio: 1 / 1;
}

.result-card span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
}

.appointment {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 520px);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(214, 60, 124, 0.18), rgba(22, 124, 115, 0.2)),
    var(--charcoal);
}

.appointment-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.86);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(216, 169, 76, 0.18);
}

.request-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  color: var(--ink);
}

.request-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 900;
}

.request-form input,
.request-form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fffdfb;
  border: 1px solid rgba(21, 20, 23, 0.18);
  border-radius: 8px;
  outline: none;
}

.request-form input:focus,
.request-form select:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(214, 60, 124, 0.12);
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.team-call {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(216, 169, 76, 0.18), rgba(214, 60, 124, 0.08)),
    #fff7f2;
}

.team-photo {
  overflow: hidden;
  min-height: 520px;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.team-copy {
  max-width: 620px;
}

.team-copy h2 {
  margin-bottom: 18px;
}

.team-copy p {
  margin-bottom: 26px;
}

.locations {
  background: var(--white);
}

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

.location-card {
  padding: 26px;
}

.location-card h3 {
  color: var(--rose-dark);
}

.location-card strong {
  display: block;
  margin-top: 18px;
  color: var(--jade);
}

.schedule-note {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-weight: 800;
}

.faq {
  background: #f7efe7;
}

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

.faq-grid article {
  padding: 22px;
}

.faq-grid h3 {
  font-size: 18px;
}

.site-footer {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(214, 60, 124, 0.12), rgba(22, 124, 115, 0.14)),
    var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(160px, 0.75fr));
  gap: clamp(24px, 5vw, 54px);
  padding: clamp(42px, 7vw, 72px) clamp(20px, 6vw, 72px);
}

.footer-brand {
  max-width: 430px;
}

.footer-logo {
  display: inline-grid;
  width: 128px;
  aspect-ratio: 1799 / 3103;
  padding: 10px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 8px 8px 0 rgba(216, 169, 76, 0.9);
}

.footer-logo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.footer-brand p,
.footer-column p,
.footer-column span {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-column h2 {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold);
}

.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 10px;
  padding: 12px 16px;
  color: var(--ink) !important;
  background: var(--gold);
  border-radius: 8px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(20px, 6vw, 72px);
  color: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: var(--jade);
  border-radius: 50%;
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 1000;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .brand {
    min-width: 0;
  }

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

  .intro,
  .appointment,
  .results-layout,
  .team-call {
    grid-template-columns: 1fr;
  }

  .result-feature {
    min-height: 480px;
  }

  .team-photo {
    min-height: 460px;
  }

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

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
    gap: 12px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-logo {
    width: 42px;
    padding: 4px;
  }

  .header-cta {
    min-width: 96px;
    padding-inline: 14px;
  }

  .hero {
    min-height: clamp(500px, 76svh, 620px);
  }

  .hero-bg {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(17, 17, 20, 0.92) 0%, rgba(17, 17, 20, 0.78) 56%, rgba(17, 17, 20, 0.34) 100%),
      linear-gradient(0deg, rgba(17, 17, 20, 0.26), rgba(17, 17, 20, 0.08));
  }

  .hero h1 {
    max-width: 11ch;
  }

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

  .btn {
    width: 100%;
  }

  .quick-strip,
  .service-grid,
  .location-grid,
  .faq-grid,
  .result-gallery {
    grid-template-columns: 1fr;
  }

  .result-feature,
  .team-photo {
    min-height: 420px;
  }

  .service-card {
    min-height: 230px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding-top: 38px;
    padding-bottom: 34px;
  }

  .footer-logo {
    width: 108px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-button {
    width: 100%;
  }
}
