/* Zarif Duvaq — V1 editorial bridal studio */
:root {
  --paper: #fbf9f7;
  --paper-deep: #f3eeea;
  --white: #ffffff;
  --ink: #251c20;
  --ink-soft: #5f5258;
  --plum: #4a303a;
  --plum-deep: #342129;
  --rosewood: #a0717b;
  --dust: #d8c7c9;
  --line: rgba(74, 48, 58, 0.17);
  --line-light: rgba(255, 255, 255, 0.22);
  --shadow: 0 24px 80px rgba(52, 33, 41, 0.12);
  --display: "Italiana", Georgia, serif;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --page: min(1420px, calc(100vw - 80px));
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--dust); color: var(--plum-deep); }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--plum-deep);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 2px solid var(--rosewood);
  outline-offset: 4px;
}

.site-header {
  position: relative;
  z-index: 50;
  background: rgba(251, 249, 247, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-inner {
  width: var(--page);
  min-height: 92px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}
.brand {
  justify-self: start;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}
.brand-name {
  font-family: var(--display);
  font-size: 29px;
  line-height: 1;
  letter-spacing: -.02em;
}
.brand-sub {
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.site-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--plum);
  transition: right .25s var(--ease);
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after { right: 0; }
.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid var(--plum);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.header-cta:hover { background: var(--plum); color: var(--white); }
.menu-toggle { display: none; }

.hero {
  width: var(--page);
  min-height: calc(100svh - 92px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(500px, .78fr);
  gap: clamp(40px, 6vw, 110px);
  align-items: stretch;
  padding: 54px 0 70px;
}
.hero-copy {
  align-self: center;
  padding: 34px 0 20px;
}
.hero-script {
  margin: 0 0 17px;
  font-family: var(--display);
  font-size: clamp(24px, 2vw, 34px);
  color: var(--rosewood);
  font-style: italic;
}
.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(62px, 6.25vw, 106px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.045em;
}
.hero-lead {
  max-width: 620px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--plum); color: var(--white); }
.btn-primary:hover { background: var(--plum-deep); }
.btn-ghost { border-color: rgba(255,255,255,.45); color: var(--white); }
.btn-ghost:hover { background: var(--white); color: var(--plum-deep); }
.btn-light { background: var(--white); color: var(--plum-deep); }
.btn-light:hover { background: var(--paper-deep); }
.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}
.text-link span { transition: transform .25s var(--ease); }
.text-link:hover span { transform: translate(3px, 2px); }
.hero-meta {
  margin-top: 46px;
  padding-top: 21px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 34px;
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: .06em;
}
.hero-media {
  position: relative;
  margin: 0;
  min-height: 660px;
  overflow: hidden;
  background: #ded5d1;
  box-shadow: var(--shadow);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.22);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-media figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  padding: 7px 10px;
  background: rgba(251,249,247,.88);
  color: var(--plum-deep);
  font-size: 10px;
  letter-spacing: .04em;
  backdrop-filter: blur(8px);
}

.intro {
  padding: 120px max(40px, calc((100vw - var(--page)) / 2));
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.intro-kicker,
.section-heading > p,
.work-head > div > p,
.reviews-head > p,
.studio-copy > p,
.signature-copy > p {
  margin: 0;
  color: var(--rosewood);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.intro-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1.05fr .75fr;
  gap: clamp(60px, 10vw, 170px);
  align-items: start;
}
.intro h2,
.section-heading h2,
.work-head h2,
.reviews-head h2,
.studio h2,
.signature h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -.03em;
}
.intro h2 { font-size: clamp(48px, 5.1vw, 84px); line-height: 1.02; }
.intro-copy { max-width: 600px; padding-top: 10px; }
.intro-copy p { margin: 0; color: var(--ink-soft); font-size: 16px; line-height: 1.9; }
.intro-copy p + p { margin-top: 20px; }

.services {
  width: var(--page);
  margin: 0 auto;
  padding: 128px 0 136px;
}
.section-heading {
  display: grid;
  grid-template-columns: .52fr 1fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 62px;
}
.section-heading h2 { font-size: clamp(48px, 4.8vw, 78px); line-height: 1.02; }
.service-list { border-top: 1px solid var(--line); }
.service-item {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: clamp(50px, 8vw, 150px);
  align-items: start;
  padding: 34px 0 38px;
  border-bottom: 1px solid var(--line);
}
.service-name {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  gap: 20px;
  align-items: baseline;
}
.service-name h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 400;
  line-height: 1.1;
}
.service-name span {
  color: var(--rosewood);
  font-size: 10px;
  letter-spacing: .07em;
  white-space: nowrap;
}
.service-item > p {
  max-width: 670px;
  margin: 4px 0 0;
  color: var(--ink-soft);
  line-height: 1.85;
}

.signature {
  background: var(--plum-deep);
  color: var(--white);
  min-height: 650px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
}
.signature-visual {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-right: 1px solid var(--line-light);
  background:
    radial-gradient(circle at 35% 35%, rgba(160,113,123,.2), transparent 35%),
    linear-gradient(135deg, #4f333d, #2e1d24 74%);
}
.signature-mark {
  font-family: var(--display);
  font-size: clamp(120px, 16vw, 260px);
  letter-spacing: -.12em;
  color: rgba(255,255,255,.88);
  transform: translateX(-.06em);
}
.signature-line {
  position: absolute;
  width: 1px;
  height: 72%;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.42), transparent);
  transform: rotate(28deg);
}
.signature-copy {
  padding: 110px clamp(50px, 7vw, 130px);
  align-self: center;
}
.signature-copy > p { color: #d8adb5; }
.signature h2 { margin-top: 28px; font-size: clamp(48px, 4.4vw, 74px); line-height: 1.04; }
.signature-points {
  margin-top: 54px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-light);
}
.signature-points > div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 26px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line-light);
}
.signature-points strong { font-size: 13px; font-weight: 600; }
.signature-points span { color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.7; }

.work {
  width: var(--page);
  margin: 0 auto;
  padding: 132px 0;
}
.work-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 58px;
}
.work-head h2 { margin-top: 16px; font-size: clamp(54px, 5.2vw, 84px); line-height: .98; }
.work-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, .55fr);
  min-height: 650px;
  background: var(--plum);
  color: var(--white);
}
.work-photo { margin: 0; overflow: hidden; min-height: 650px; }
.work-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.work-note {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 54px;
  border-left: 1px solid var(--line-light);
}
.work-number {
  margin-bottom: auto;
  font-family: var(--display);
  font-size: 24px;
  color: #e6ccd0;
}
.work-note p { margin: 0 0 28px; color: rgba(255,255,255,.75); line-height: 1.8; }

.reviews {
  padding: 125px max(40px, calc((100vw - var(--page)) / 2)) 135px;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.reviews-head {
  display: grid;
  grid-template-columns: .45fr 1.15fr auto;
  gap: 46px;
  align-items: end;
}
.reviews-head h2 { font-size: clamp(48px, 4.5vw, 74px); line-height: 1.03; }
.rating { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; font-size: 11px; color: var(--ink-soft); }
.stars { color: var(--rosewood); letter-spacing: .16em; font-size: 13px; }
.review-list {
  margin-top: 68px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.review-list blockquote {
  margin: 0;
  min-height: 290px;
  padding: 38px 42px 34px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.review-list blockquote + blockquote { border-left: 1px solid var(--line); padding-left: 42px; }
.review-list p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 2.3vw, 38px);
  line-height: 1.22;
}
.review-list footer { font-size: 12px; font-weight: 600; }
.review-list footer span { margin-left: 8px; color: var(--ink-soft); font-weight: 400; }

.studio {
  width: var(--page);
  margin: 0 auto;
  padding: 130px 0;
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: clamp(60px, 9vw, 150px);
  align-items: stretch;
}
.studio h2 { margin-top: 20px; font-size: clamp(54px, 5.4vw, 88px); line-height: 1; }
.studio-lead { max-width: 650px; margin: 30px 0 0; color: var(--ink-soft); font-size: 16px; line-height: 1.9; }
.contact-lines { margin-top: 50px; border-top: 1px solid var(--line); }
.contact-lines a {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
  transition: color .2s ease;
}
.contact-lines a:hover { color: var(--rosewood); }
.contact-lines span { font-size: 11px; color: var(--ink-soft); }
.contact-lines strong { font-size: 13px; font-weight: 600; line-height: 1.6; }
.studio-panel {
  min-height: 520px;
  padding: clamp(42px, 5vw, 74px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  background: var(--plum-deep);
  color: var(--white);
}
.studio-panel > p { margin: 0 auto auto 0; color: #dfbdc3; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.studio-panel h3 { margin: 0 0 32px; font-family: var(--display); font-size: clamp(42px, 4vw, 62px); font-weight: 400; line-height: 1.05; }
.studio-panel small { margin-top: 16px; color: rgba(255,255,255,.56); font-size: 10px; }

.site-footer {
  padding: 70px max(40px, calc((100vw - var(--page)) / 2)) 36px;
  background: #20171b;
  color: var(--white);
  text-align: center;
}
.footer-brand { display: block; font-family: var(--display); font-size: clamp(48px, 5vw, 78px); line-height: 1; }
.site-footer > p { margin: 14px 0 0; color: rgba(255,255,255,.55); font-size: 11px; letter-spacing: .07em; }
.footer-links { display: flex; justify-content: center; gap: 30px; margin-top: 38px; }
.footer-links a { font-size: 12px; border-bottom: 1px solid rgba(255,255,255,.28); padding-bottom: 3px; }
.site-footer > small { display: block; margin-top: 52px; color: rgba(255,255,255,.35); font-size: 10px; }

.mobile-whatsapp { display: none; }

@media (max-width: 1180px) {
  :root { --page: min(100% - 52px, 1180px); }
  .header-inner { grid-template-columns: 1fr auto; }
  .site-nav { display: none; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(400px, .8fr); gap: 48px; }
  .hero h1 { font-size: clamp(58px, 7vw, 82px); }
  .reviews-head { grid-template-columns: .4fr 1.3fr; }
  .rating { grid-column: 2; align-items: flex-start; margin-top: -16px; }
}

@media (max-width: 900px) {
  :root { --page: calc(100% - 40px); }
  .header-inner { min-height: 78px; grid-template-columns: 1fr auto; }
  .header-cta { display: none; }
  .brand-name { font-size: 25px; }
  .brand-sub { font-size: 8px; }
  .menu-toggle {
    justify-self: end;
    display: inline-flex;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
  }
  .menu-toggle span { width: 25px; height: 1px; background: var(--ink); transition: transform .25s var(--ease); }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 78px 0 0;
    z-index: 40;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 34px 20px 90px;
    background: var(--paper);
    transform: translateX(102%);
    transition: transform .32s var(--ease);
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav a { width: 100%; padding: 18px 0; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 35px; color: var(--ink); }
  .site-nav a::after { display: none; }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 54px 0 65px;
  }
  .hero-copy { padding: 0; }
  .hero-script { font-size: 24px; }
  .hero h1 { font-size: clamp(56px, 14vw, 90px); line-height: .96; }
  .hero-lead { max-width: 680px; }
  .hero-media { min-height: 660px; max-height: 82svh; }
  .hero-meta { margin-top: 34px; }

  .intro { padding-top: 95px; padding-bottom: 100px; }
  .intro-grid { grid-template-columns: 1fr; gap: 42px; }
  .intro h2 { font-size: clamp(46px, 9vw, 70px); }

  .services { padding: 100px 0 110px; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .service-item { grid-template-columns: 1fr; gap: 22px; }

  .signature { grid-template-columns: 1fr; }
  .signature-visual { min-height: 400px; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .signature-copy { padding: 80px 40px 90px; }

  .work { padding: 100px 0; }
  .work-head { align-items: flex-start; flex-direction: column; }
  .work-stage { grid-template-columns: 1fr; }
  .work-photo { min-height: 600px; }
  .work-note { min-height: 310px; border-left: 0; border-top: 1px solid var(--line-light); }

  .reviews { padding-top: 100px; padding-bottom: 110px; }
  .reviews-head { grid-template-columns: 1fr; gap: 18px; }
  .rating { grid-column: auto; margin-top: 8px; }
  .review-list { grid-template-columns: 1fr; }
  .review-list blockquote { min-height: 230px; padding: 34px 0; }
  .review-list blockquote + blockquote { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }

  .studio { grid-template-columns: 1fr; padding: 100px 0 120px; }
  .studio-panel { min-height: 430px; }
}

@media (max-width: 600px) {
  :root { --page: calc(100% - 32px); }
  body { font-size: 15px; padding-bottom: 72px; }
  .site-header { position: sticky; top: 0; }
  .header-inner { min-height: 72px; }
  .site-nav { inset: 72px 0 0; padding-left: 16px; padding-right: 16px; }

  .hero { padding: 42px 0 52px; gap: 30px; }
  .hero-script { margin-bottom: 12px; font-size: 21px; }
  .hero h1 { font-size: clamp(48px, 15.3vw, 72px); letter-spacing: -.05em; }
  .hero-lead { margin-top: 25px; font-size: 15px; line-height: 1.78; }
  .hero-actions { margin-top: 27px; display: grid; align-items: start; gap: 19px; }
  .btn { width: 100%; min-height: 54px; }
  .text-link { width: max-content; }
  .hero-meta { flex-direction: column; gap: 5px; margin-top: 28px; padding-top: 17px; }
  .hero-media { min-height: 500px; height: 66svh; }
  .hero-media figcaption { right: 12px; bottom: 12px; }

  .intro { padding: 78px 16px 84px; }
  .intro-kicker,
  .section-heading > p,
  .work-head > div > p,
  .reviews-head > p,
  .studio-copy > p,
  .signature-copy > p { font-size: 10px; }
  .intro-grid { margin-top: 22px; gap: 30px; }
  .intro h2 { font-size: 45px; }
  .intro-copy p { font-size: 14px; line-height: 1.85; }

  .services { padding: 80px 0 90px; }
  .section-heading { margin-bottom: 40px; }
  .section-heading h2 { font-size: 47px; }
  .service-item { padding: 28px 0 30px; }
  .service-name { grid-template-columns: 1fr; gap: 7px; }
  .service-name h3 { font-size: 35px; }
  .service-name span { white-space: normal; }
  .service-item > p { font-size: 14px; }

  .signature-visual { min-height: 300px; }
  .signature-mark { font-size: 128px; }
  .signature-copy { padding: 64px 24px 72px; }
  .signature h2 { margin-top: 18px; font-size: 45px; }
  .signature-points { margin-top: 38px; }
  .signature-points > div { grid-template-columns: 1fr; gap: 6px; padding: 17px 0; }

  .work { padding: 82px 0; }
  .work-head { margin-bottom: 38px; }
  .work-head h2 { font-size: 51px; }
  .work-photo { min-height: 460px; }
  .work-note { padding: 32px 24px; min-height: 270px; }
  .work-note .btn { width: auto; }

  .reviews { padding: 82px 16px 90px; }
  .reviews-head h2 { font-size: 44px; }
  .review-list { margin-top: 46px; }
  .review-list blockquote { min-height: 210px; }
  .review-list p { font-size: 30px; }

  .studio { padding: 82px 0 95px; gap: 55px; }
  .studio h2 { font-size: 52px; }
  .studio-lead { font-size: 14px; }
  .contact-lines { margin-top: 36px; }
  .contact-lines a { grid-template-columns: 78px 1fr; gap: 18px; padding: 18px 0; }
  .studio-panel { min-height: 390px; padding: 34px 26px; }
  .studio-panel h3 { font-size: 43px; }

  .site-footer { padding: 58px 16px 28px; }
  .footer-brand { font-size: 55px; }
  .footer-links { gap: 18px; flex-wrap: wrap; }

  .mobile-whatsapp {
    position: fixed;
    z-index: 60;
    left: 12px;
    right: 12px;
    bottom: max(10px, env(safe-area-inset-bottom));
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: var(--plum-deep);
    color: var(--white);
    box-shadow: 0 14px 35px rgba(32, 23, 27, .26);
    font-size: 13px;
    font-weight: 600;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
