:root {
  --ink: #241915;
  --soft-ink: #4b342d;
  --muted: #846f66;
  --cream: #ead7c8;
  --paper: #fff4f7;
  --rose: #efb6cb;
  --mauve: #b9748d;
  --wood: #b99678;
  --cappuccino: #c5a58a;
  --line: rgba(23, 16, 15, 0.12);
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(55, 31, 24, 0.17);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(239, 182, 203, 0.34), transparent 30%),
    radial-gradient(circle at 88% 4%, rgba(197, 165, 138, 0.32), transparent 26%),
    linear-gradient(180deg, #fff4f7 0%, #ead7c8 58%, #e7c1d0 100%);
  font-family: Arial, "Helvetica Neue", sans-serif;
}

body.is-rtl {
  direction: rtl;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(23, 16, 15, 0.08);
  background: rgba(255, 244, 247, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 2vw, 34px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.language-switcher {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
}

.language-switcher button {
  width: 40px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.language-switcher button.active {
  color: var(--white);
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: center;
  min-height: calc(100vh - 75px);
  padding: clamp(38px, 6vw, 82px) clamp(18px, 5vw, 78px) clamp(56px, 7vw, 96px);
}

.hero-copy-block {
  max-width: 710px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--mauve);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.95;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(42px, 6.2vw, 82px);
  font-weight: 700;
}

h2 {
  font-size: clamp(30px, 4.1vw, 52px);
}

h3 {
  font-size: 24px;
}

.hero-copy,
.text-panel p,
.method p,
.pricing-intro p,
.contact p,
address span,
.reviews p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
}

.primary-btn {
  color: var(--white);
  background: var(--soft-ink);
  box-shadow: 0 18px 38px rgba(23, 16, 15, 0.18);
}

.secondary-btn {
  border: 1px solid var(--line);
  background: rgba(255, 244, 247, 0.74);
}

.hero-gallery {
  position: relative;
  min-height: 640px;
}

.hero-main-img {
  width: 72%;
  height: 610px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-float-img {
  position: absolute;
  right: 0;
  bottom: 20px;
  width: 45%;
  height: 430px;
  object-fit: cover;
  border: 12px solid var(--paper);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

body.is-rtl .hero-float-img {
  right: auto;
  left: 0;
}

.hero-badge {
  position: absolute;
  right: 5%;
  top: 34px;
  display: grid;
  gap: 4px;
  width: 170px;
  min-height: 170px;
  place-content: center;
  padding: 22px;
  border-radius: 50%;
  color: var(--white);
  text-align: center;
  background: rgba(75, 52, 45, 0.9);
  box-shadow: var(--shadow);
}

body.is-rtl .hero-badge {
  right: auto;
  left: 5%;
}

.hero-badge strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1;
}

.hero-badge span {
  font-size: 13px;
  font-weight: 800;
}

.studio-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 244, 247, 0.62);
}

.studio-strip div {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  min-height: 112px;
  border-right: 1px solid var(--line);
}

.studio-strip div:last-child {
  border-right: 0;
}

.studio-strip span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.studio-strip strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.1vw, 44px);
}

.experience,
.pricing,
.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  padding: clamp(62px, 8vw, 116px) clamp(18px, 5vw, 78px);
}

.image-panel img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.text-panel {
  max-width: 690px;
}

.method {
  padding: clamp(62px, 8vw, 116px) clamp(18px, 5vw, 78px);
  background: #33231f;
  color: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(32px, 5vw, 62px);
}

.method .eyebrow {
  color: #efbfd1;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.method-grid article {
  min-height: 350px;
  padding: clamp(30px, 4vw, 48px);
  background: #3b2823;
}

.method-grid span {
  color: var(--rose);
  font-weight: 900;
}

.method-grid h3 {
  margin-top: 84px;
}

.method-grid p {
  color: rgba(255, 255, 255, 0.68);
}

.reviews {
  padding: clamp(62px, 8vw, 112px) clamp(18px, 5vw, 78px);
  background:
    linear-gradient(180deg, rgba(255, 244, 247, 0.72), rgba(234, 215, 200, 0.82)),
    var(--cream);
}

.section-heading.light {
  color: var(--ink);
}

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

.review-grid article {
  display: grid;
  align-content: space-between;
  min-height: 310px;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 244, 247, 0.78);
  box-shadow: 0 18px 42px rgba(55, 31, 24, 0.08);
}

.stars {
  color: var(--mauve);
  font-size: 14px;
  letter-spacing: 0.18em;
}

.review-grid p {
  margin: 30px 0;
}

.review-grid strong {
  color: var(--soft-ink);
  font-size: 14px;
}

.pricing {
  background:
    linear-gradient(135deg, rgba(239, 182, 203, 0.36), transparent 34%),
    linear-gradient(225deg, rgba(197, 165, 138, 0.32), transparent 38%),
    var(--paper);
}

.pricing-intro {
  max-width: 620px;
}

.price-stage {
  display: grid;
  gap: 14px;
}

.price-stage article {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  min-height: 104px;
  padding: 22px clamp(20px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 244, 247, 0.8);
  box-shadow: 0 14px 34px rgba(55, 31, 24, 0.07);
}

.price-stage .selected {
  color: var(--white);
  background: var(--mauve);
  transform: translateX(-18px);
}

body.is-rtl .price-stage .selected {
  transform: translateX(18px);
}

.price-stage span {
  font-size: 17px;
  font-weight: 900;
}

.price-stage del {
  color: var(--muted);
  font-weight: 900;
}

.price-stage .selected del {
  color: rgba(255, 255, 255, 0.65);
}

.price-stage strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 3.2vw, 42px);
}

.contact {
  align-items: start;
  background: #33231f;
  color: var(--white);
}

.contact .eyebrow,
.contact p {
  color: #efbfd1;
}

address {
  display: grid;
  gap: 16px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-style: normal;
}

address strong {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

address span {
  color: rgba(255, 255, 255, 0.74);
}

address a {
  width: fit-content;
  padding: 13px 20px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-weight: 900;
}

address .phone-link {
  color: var(--white);
  background: #25d366;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 78px);
  color: rgba(255, 255, 255, 0.55);
  background: #241915;
}

footer span:first-child {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .experience,
  .pricing,
  .contact,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-gallery {
    min-height: 560px;
  }

  .method-grid,
  .review-grid,
  .studio-strip {
    grid-template-columns: 1fr;
  }

  .studio-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .studio-strip div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 38px;
  }

  .hero-gallery {
    min-height: auto;
  }

  .hero-main-img,
  .image-panel img {
    width: 100%;
    height: 440px;
  }

  .hero-float-img {
    position: relative;
    right: auto;
    bottom: auto;
    width: 72%;
    height: 320px;
    margin: -90px 0 0 auto;
  }

  body.is-rtl .hero-float-img {
    left: auto;
    margin: -90px auto 0 0;
  }

  .hero-badge {
    top: 18px;
    width: 136px;
    min-height: 136px;
  }

  .hero-actions,
  footer {
    flex-direction: column;
  }

  .price-stage article {
    grid-template-columns: 1fr;
  }

  .price-stage .selected {
    transform: none;
  }

  body.is-rtl .price-stage .selected {
    transform: none;
  }
}
