@font-face {
  font-family: "Dana Yad";
  src: url("assets/fonts/DanaYadAlefAlefAlef-Normal.woff") format("woff"),
       url("assets/fonts/DanaYadAlefAlefAlef-Normal.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Anka";
  src: url("assets/fonts/ankaclm-bold-webfont.woff") format("woff"),
       url("assets/fonts/ankaclm-bold-webfont.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gadi Almog";
  src: url("assets/fonts/gadi-almog-regular-aaa.woff") format("woff"),
       url("assets/fonts/gadi-almog-regular-aaa.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Miri";
  src: url("assets/fonts/miriwin-webfont.woff") format("woff"),
       url("assets/fonts/miriwin-webfont.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Ktav Yad";
  src: url("assets/fonts/KtavYadCLM-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Ploni Yad";
  src: url("assets/fonts/ploni-yad-ultrabold-aaa.woff2") format("woff2"),
       url("assets/fonts/ploni-yad-ultrabold-aaa.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --rose: #c98099;
  --rose-dark: #a85b76;
  --rose-deep: #a85b76;
  --footer-bg: #4a2333;
  --blush: #eae3d6;
  --cream: #eae3d6;
  --section-alt: #eee9e5;
  --text-dark: #3a2530;
  --text-body: #5c4550;
  --whatsapp: #25d366;
  --shadow: 0 10px 26px -14px rgba(92, 44, 61, 0.35);
  --radius: 14px;
  --font-serif: "Frank Ruhl Libre", "Heebo", serif;
  --font-hand: "Ploni Yad", "Frank Ruhl Libre", cursive;
}

/*
  Mobile-first: everything below is written for small screens by default.
  Two min-width breakpoints (700px tablet, 1024px desktop) layer on
  extra columns, larger type and more breathing room as space allows.
*/

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow,
.hero h1,
.hero-subtitle,
.hero .btn {
  animation: fade-up 0.6s ease both;
}

.hero h1 {
  animation-delay: 0.06s;
}

.hero-subtitle {
  animation-delay: 0.12s;
}

.hero .btn {
  animation-delay: 0.18s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-eyebrow,
  .hero h1,
  .hero-subtitle,
  .hero .btn {
    animation: none;
  }
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background-color: var(--cream);
  color: var(--text-body);
  font-family: "Varela Round", "Heebo", "Segoe UI", sans-serif;
  direction: rtl;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-hand);
  color: var(--text-dark);
  margin: 0;
  font-weight: 800;
}

p {
  margin: 0 0 1em;
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

button {
  -webkit-tap-highlight-color: transparent;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  padding: 11px 22px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  min-height: 40px;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--rose-dark);
  color: #fff;
  box-shadow: var(--shadow);
}

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

.btn-outline {
  background: transparent;
  color: var(--rose-dark);
  border-color: var(--rose);
}

.btn-outline:hover,
.btn-outline:active {
  background: var(--rose);
  color: #fff;
}

.service-card .btn-outline {
  background: var(--rose);
  color: #fff;
}

.service-card .btn-outline:hover,
.service-card .btn-outline:active {
  background: var(--rose-dark);
  color: #fff;
}

.btn-cream {
  background-color: var(--cream);
  color: var(--rose-dark);
}

.btn-cream:hover,
.btn-cream:active {
  background: #fff;
}

.btn-lg {
  width: 100%;
  padding: 13px 26px;
  font-size: 16px;
}

.btn-sm {
  padding: 8px 15px;
  font-size: 13px;
  min-height: 36px;
}

.btn-sm svg {
  width: 16px;
  height: 16px;
}

.header-cta span {
  display: inline;
}

.header-cta {
  width: auto;
  height: auto;
  padding: 7px 13px;
  gap: 5px;
  font-size: 12.5px;
  min-height: 0;
  border-radius: 999px;
}

.header-cta svg {
  width: 14px;
  height: 14px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--blush);
  color: var(--rose-dark);
  transition: background 0.15s ease, color 0.15s ease;
  flex: none;
  border: none;
  cursor: pointer;
}

.icon-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.icon-btn:hover,
.icon-btn:active {
  background: var(--rose);
  color: #fff;
}

/* Quick nav — quiet inline text links, mobile only */

.quick-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 6px;
  padding: 0 20px 6px;
}

.quick-nav a {
  color: var(--text-body);
  font-size: 13px;
  font-weight: 500;
  opacity: 0.6;
}

.quick-nav a:not(:last-child)::after {
  content: "·";
  margin-inline-start: 6px;
  color: var(--rose);
  opacity: 0.7;
}

.quick-nav a:hover {
  opacity: 1;
  color: var(--rose-dark);
}

/* Floating WhatsApp */

@keyframes wa-arrive {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.75);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.floating-whatsapp {
  position: fixed;
  z-index: 60;
  bottom: 18px;
  left: 18px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--rose-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px -6px rgba(92, 44, 61, 0.5);
  transition: transform 0.15s ease, background 0.15s ease;
  animation: wa-arrive 0.5s ease 0.4s both;
}

.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.floating-whatsapp:hover,
.floating-whatsapp:active {
  background: var(--rose-dark);
  transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
  .floating-whatsapp {
    animation: none;
  }
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 233, 237, 0.85);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 18px -10px rgba(92, 44, 61, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  padding-bottom: 8px;
}

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

.brand-logo {
  width: auto;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-hand);
  font-weight: 800;
  font-size: 16px;
  color: var(--text-dark);
}

.site-nav {
  display: none;
  gap: 18px;
  font-size: 15.5px;
  font-weight: 500;
}

.site-nav a {
  position: relative;
  padding-bottom: 3px;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--rose);
  transition: width 0.25s ease;
}

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

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

/* Hero */

.hero {
  padding: 48px 0 56px;
  text-align: center;
  background-color: var(--blush);
}

.hero-eyebrow {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--rose-dark);
  margin: 0 0 8px;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.0;
  letter-spacing: 0.004em;
  max-width: 680px;
  margin: 0 auto 6px;
}

.hero h1 .line {
  display: block;
}

.hero h1 .line-1 {
  font-size: 56px;
  line-height: 1;
}


.hero-subtitle {
  color: var(--text-body);
  font-size: 16px;
  margin: 0 auto 20px;
  max-width: 480px;
}

.hero-subtitle strong {
  color: var(--rose-dark);
}

/* Philosophy */

.philosophy {
  background-color: var(--section-alt);
  padding: 46px 0;
  text-align: center;
}

.philosophy-divider {
  width: 22px;
  height: 22px;
  margin: 0 auto 22px;
  color: var(--rose);
}

.heart-icon {
  width: 22px;
  height: 22px;
  margin: 0 auto 14px;
  color: var(--rose);
}

.heart-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.heart-icon--white {
  color: #fff;
}

.heart-icon-inline {
  display: inline-block;
  width: 0.72em;
  height: 0.72em;
  color: var(--rose);
  vertical-align: middle;
  margin-bottom: 0.15em;
  margin-inline-start: 0.15em;
}

.heart-icon-inline svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.footer-credit .heart-icon-inline {
  margin-bottom: 0;
  vertical-align: -0.05em;
}

.about-signature .heart-icon-inline {
  margin-bottom: 0;
  vertical-align: -0.05em;
}

.philosophy-divider svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.philosophy-lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.7;
  color: var(--rose-deep);
  max-width: 660px;
  margin: 0 auto;
}

/* About */

.about {
  background-color: var(--blush);
  padding: 34px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.about-media {
  width: 230px;
  height: 230px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text h2 {
  font-size: 27px;
  margin-bottom: 16px;
  text-align: center;
}

.about-text p {
  font-size: 16px;
}

.pull-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--rose-deep);
  border-inline-start: 2px solid var(--rose);
  padding-inline-start: 16px;
  margin: 22px 0;
  line-height: 1.6;
}

.about-signature {
  font-family: var(--font-hand);
  font-weight: 800;
  font-size: 22px;
  color: var(--rose-dark);
  text-align: center;
  margin-top: 22px;
}

.family-photo {
  margin-top: 30px;
  text-align: center;
}

.family-photo img {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 5px solid #fff;
}

.family-caption {
  font-size: 14.5px;
  color: var(--rose-dark);
  margin: 12px 0 0;
}

/* Services */

.services {
  background-color: var(--section-alt);
  padding: 52px 0;
}

/* Gallery */

.gallery {
  background-color: var(--cream);
  padding: 52px 0;
}

.gallery-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 4px 0 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-grid::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 auto;
  width: 70vw;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: none;
  padding: 0;
  cursor: pointer;
  background: none;
  transition: transform 0.2s;
}

.gallery-item:focus-visible {
  outline: 2px solid var(--rose-dark);
  outline-offset: 2px;
}

@media (hover: hover) {
  .gallery-item:hover {
    transform: scale(1.03);
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Lightbox */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(30, 12, 20, 0.92);
  align-items: center;
  justify-content: center;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-img {
  max-width: min(90vw, 640px);
  max-height: 82vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev {
  right: 14px;
}

.lightbox-next {
  left: 14px;
}

@media (min-width: 700px) {
  .lightbox-prev {
    right: 28px;
  }

  .lightbox-next {
    left: 28px;
  }
}

.section-title {
  text-align: center;
  font-size: 27px;
  margin-bottom: 8px;
}

.services .section-title {
  font-size: 32px;
}

.section-subtitle {
  text-align: center;
  font-size: 15.5px;
  color: var(--text-body);
  max-width: 540px;
  margin: 0 auto 32px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}

.service-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--rose);
}

.service-card h3 {
  font-size: 21px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15.5px;
  margin-bottom: 12px;
}

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

.service-note {
  font-size: 14.5px;
  padding-inline-start: 12px;
  border-inline-start: 2px solid var(--blush);
  margin-bottom: 16px;
}

.service-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Testimonials */

.testimonials {
  background: var(--rose-dark);
  padding: 46px 0;
  text-align: center;
  transition: background 0.3s ease;
}

.testimonials.is-light {
  background: #f7e9ed;
}

.testimonials.is-light .testimonials-title,
.testimonials.is-light .testimonial-quote-mark,
.testimonials.is-light .testimonial-text {
  color: var(--text-dark);
}

.testimonials.is-light .testimonial-attr {
  color: var(--rose-dark);
  opacity: 1;
}

.testimonials.is-light .testimonial-dot {
  background: var(--rose-dark);
}

.testimonials-title {
  color: #fff;
  font-size: 24px;
  margin-bottom: 6px;
}

.testimonial-quote-mark {
  font-family: var(--font-serif);
  font-size: 60px;
  line-height: 1;
  color: #fff;
  opacity: 0.45;
  margin-bottom: 2px;
}

.testimonial-track {
  max-width: 640px;
  margin: 0 auto;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.is-active {
  display: block;
  animation: testimonialFade 0.4s ease;
}

@keyframes testimonialFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.75;
  color: #fff;
  margin: 0 0 14px;
}

.testimonial-attr {
  font-size: 14px;
  color: #f7ece9;
  font-weight: 600;
  margin: 0;
  opacity: 0.9;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #fff;
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.testimonial-dot.is-active {
  opacity: 1;
  transform: scale(1.3);
}

.testimonial-dot:hover {
  opacity: 0.7;
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-slide.is-active {
    animation: none;
  }
}

/* Follow / Instagram */

.follow {
  padding: 42px 0;
  text-align: center;
  background-color: var(--blush);
}

.follow-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.follow-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  color: var(--rose-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.follow-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.follow-text h2 {
  font-size: 22px;
  margin-bottom: 6px;
}

.follow-text p {
  font-size: 15.5px;
  margin-bottom: 0;
}

/* CTA band */

.cta-band {
  background: var(--rose-deep);
  color: #fff;
  text-align: center;
  padding: 46px 0;
}

.cta-band h2 {
  color: #fff;
  font-size: 25px;
  margin-bottom: 10px;
}

.cta-band p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 22px;
}

/* Footer */

.site-footer {
  background: var(--footer-bg);
  color: #f3dde3;
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  width: 160px;
  height: auto;
  object-fit: contain;
  margin: 0 auto 12px;
}

.footer-name {
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
  font-size: 15px;
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: #f3dde3;
  margin-bottom: 16px;
}

.footer-instagram svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.footer-instagram:hover {
  opacity: 0.85;
}

.footer-copyright {
  font-size: 12.5px;
  opacity: 0.75;
  margin-bottom: 0;
}

.footer-copyright a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-copyright a:hover {
  opacity: 0.8;
}

.footer-credit {
  font-size: 12px;
  opacity: 0.6;
  margin: 8px 0 0;
}

.footer-credit a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===== Tablet (>=700px) ===== */

@media (min-width: 700px) {
  .container {
    padding-left: 28px;
    padding-right: 28px;
  }

  .site-nav {
    display: flex;
  }

  .brand-name {
    display: block;
  }

  .quick-nav {
    display: none;
  }

  html {
    scroll-padding-top: 96px;
  }

  .header-cta {
    padding: 11px 18px;
    font-size: 15px;
  }

  .hero {
    padding: 68px 0 72px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .btn-lg {
    width: auto;
  }

  .philosophy {
    padding: 60px 0;
  }

  .philosophy-lead {
    font-size: 21px;
  }

  .about {
    padding: 72px 0;
  }

  .about-text h2 {
    text-align: start;
    font-size: 30px;
  }

  .section-title {
    font-size: 30px;
  }

  .services {
    padding: 72px 0;
  }

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

  .gallery {
    padding: 72px 0;
  }

  .gallery-grid {
    gap: 16px;
  }

  .gallery-item {
    width: 260px;
    max-width: none;
  }

  .cta-band {
    padding: 60px 0;
  }

  .cta-band h2 {
    font-size: 28px;
  }

  .testimonials {
    padding: 60px 0;
  }

  .testimonial-quote-mark {
    font-size: 72px;
  }

  .testimonial-text {
    font-size: 20px;
  }

  .follow {
    padding: 52px 0;
  }

  .follow-inner {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .follow-text {
    text-align: start;
  }
}

/* ===== Desktop (>=1024px) ===== */

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 62px;
  }

  .about-inner {
    grid-template-columns: 200px 1fr;
    gap: 52px;
  }

  .family-photo {
    grid-column: 1 / -1;
  }

  .about-media {
    position: sticky;
    top: 100px;
    width: 200px;
    height: 200px;
    margin: 0;
  }

  .about-text h2 {
    font-size: 33px;
  }

  .about-text p {
    font-size: 16.5px;
  }

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

  .cta-band h2 {
    font-size: 31px;
  }

  .floating-whatsapp {
    bottom: 24px;
    left: 24px;
    width: 56px;
    height: 56px;
  }

  .floating-whatsapp svg {
    width: 26px;
    height: 26px;
  }
}
