:root {
  --bg: #f6f1eb;
  --bg-2: #efe7de;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.88);
  --surface-dark: #181512;
  --text: #1d1713;
  --text-soft: #6a615b;
  --text-fade: #9d9188;
  --line: rgba(73, 54, 41, 0.12);
  --line-strong: rgba(73, 54, 41, 0.2);
  --shadow-sm: 0 10px 30px rgba(28, 19, 12, 0.06);
  --shadow-md: 0 20px 60px rgba(28, 19, 12, 0.1);
  --shadow-lg: 0 32px 80px rgba(28, 19, 12, 0.15);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 38px;
  --radius-xl: 48px;
  --max-width: 1240px;
  --container-padding: 24px;
  --header-height: 92px;
  --accent: #1c1511;
  --accent-2: #34261e;
  --accent-soft: #ede3d8;
  --gold: #b08a67;
  --success: #25d366;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Heebo", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(176, 138, 103, 0.14), transparent 25%),
    radial-gradient(circle at bottom left, rgba(52, 38, 30, 0.08), transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, #f8f5f1 45%, #f3ede7 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow-x: clip;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.bg-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.blur-1 {
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: rgba(176, 138, 103, 0.2);
}

.blur-2 {
  left: -120px;
  bottom: 10%;
  width: 300px;
  height: 300px;
  background: rgba(91, 70, 55, 0.12);
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.018) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.34), transparent 70%);
}

.container {
  width: min(100% - (var(--container-padding) * 2), var(--max-width));
  margin-inline: auto;
}

.section-spacing {
  padding: 110px 0;
}

/* header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  backdrop-filter: blur(18px);
  background: rgba(248, 244, 239, 0.72);
  border-bottom: 1px solid transparent;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(248, 244, 239, 0.9);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.header-container {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.12));
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-title {
  font-weight: 900;
  font-size: 1.02rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.brand-subtitle {
  margin-top: 4px;
  color: var(--text-fade);
  font-size: 0.84rem;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.main-nav a {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: var(--text-soft);
  font-weight: 700;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  background: rgba(28, 21, 17, 0.08);
  color: var(--text);
}

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

.header-social {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.78);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-social:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.88);
}

.header-social img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.header-cta {
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(28, 21, 17, 0.22);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: var(--accent-2);
  box-shadow: 0 22px 40px rgba(28, 21, 17, 0.28);
}

.header-cta img {
  width: 18px;
  height: 18px;
}

.mobile-menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: var(--shadow-sm);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(248, 244, 239, 0.98);
  backdrop-filter: blur(14px);
}

.mobile-nav {
  width: min(100% - 48px, var(--max-width));
  margin-inline: auto;
  padding: 18px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-nav a {
  min-height: 56px;
  border-radius: 18px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.84);
  font-weight: 800;
  color: var(--text);
}

.mobile-nav .mobile-whatsapp-link {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}

/* hero */

.hero-section {
  position: relative;
  padding: 70px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
}
.hero-content {
  order: 2;
}

.hero-visual {
  order: 1;
}
.hero-content {
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: var(--shadow-sm);
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-title {
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  font-weight: 900;
  max-width: 700px;
}

.hero-title span {
  display: inline-block;
  color: var(--gold);
}

.hero-description {
  margin: 24px 0 0;
  max-width: 620px;
  color: var(--text-soft);
  font-size: 1.13rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-btn,
.secondary-btn,
.gallery-link-btn,
.contact-main-btn {
  min-height: 58px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.primary-btn,
.contact-main-btn {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 36px rgba(28, 21, 17, 0.22);
}

.primary-btn:hover,
.contact-main-btn:hover {
  transform: translateY(-2px);
  background: var(--accent-2);
  box-shadow: 0 24px 44px rgba(28, 21, 17, 0.28);
}

.primary-btn img,
.contact-main-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.secondary-btn,
.gallery-link-btn {
  background: rgba(255,255,255,0.7);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.84);
  box-shadow: var(--shadow-sm);
}

.secondary-btn:hover,
.gallery-link-btn:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.92);
}

.hero-highlights {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.highlight-card {
  min-height: 130px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(255,255,255,0.74);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.highlight-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.highlight-card span {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.hero-visual {
  position: relative;
}

.hero-frame {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.58) 100%);
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.46), transparent 48%),
    radial-gradient(circle at top left, rgba(176, 138, 103, 0.18), transparent 30%);
  pointer-events: none;
}

.hero-frame-top {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-chip {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(28, 21, 17, 0.08);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-logo-wrap {
  position: relative;
  z-index: 1;
  min-height: 360px;
  margin-top: 18px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top, rgba(176, 138, 103, 0.16), transparent 40%),
    linear-gradient(180deg, rgba(255,255,255,0.84) 0%, rgba(241,233,224,0.72) 100%);
  border: 1px solid rgba(255,255,255,0.78);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-logo-wrap::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 26px;
  border: 1px solid rgba(28, 21, 17, 0.06);
  pointer-events: none;
}

.hero-logo {
  position: relative;
  z-index: 1;
  max-width: 74%;
  max-height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(28, 21, 17, 0.16));
}

.hero-info-grid {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-info-card {
  min-height: 88px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(255,255,255,0.78);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.hero-info-card-wide {
  grid-column: 1 / -1;
}

.hero-info-label {
  color: var(--text-fade);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-info-card strong,
.hero-info-card a {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
}

.floating-note {
  position: absolute;
  z-index: 2;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.86);
  box-shadow: var(--shadow-md);
  font-weight: 800;
  color: var(--text);
  backdrop-filter: blur(12px);
}

.floating-note-top {
  top: 24px;
  left: -22px;
}

.floating-note-bottom {
  right: -20px;
  bottom: 92px;
}

/* strip */

.trust-strip {
  padding: 0 0 20px;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-item {
  min-height: 70px;
  padding: 0 18px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(255,255,255,0.78);
  box-shadow: var(--shadow-sm);
  font-weight: 800;
  color: var(--text-soft);
}

/* shared */

.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.84rem;
}

.section-heading,
.section-copy {
  max-width: 740px;
}

.section-heading h2,
.section-copy h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-heading p,
.section-copy p {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.85;
}

.section-heading-left {
  max-width: 620px;
}

/* about */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.info-card {
  position: relative;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,0.64);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176, 138, 103, 0.16), transparent 70%);
  pointer-events: none;
}

.info-card-number {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 900;
}

.info-card h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.1;
}

.info-card p {
  margin: 12px 0 0;
  color: var(--text-soft);
  line-height: 1.8;
}

/* experience */

.experience-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.experience-card {
  min-height: 250px;
  padding: 24px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.58) 100%);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-sm);
}

.experience-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: rgba(28, 21, 17, 0.08);
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 900;
}

.experience-card h3 {
  margin: 0;
  font-size: 1.24rem;
}

.experience-card p {
  margin: 12px 0 0;
  color: var(--text-soft);
  line-height: 1.8;
}

/* gallery preview */

.gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 240px 240px;
  gap: 16px;
}

.preview-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(176, 138, 103, 0.22), rgba(28, 21, 17, 0.12)),
    linear-gradient(180deg, rgba(255,255,255,0.86), rgba(241,233,224,0.72));
  border: 1px solid rgba(255,255,255,0.78);
  box-shadow: var(--shadow-sm);
  min-height: 240px;
}

.preview-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.52);
  pointer-events: none;
}

.preview-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.2), transparent 30%),
    linear-gradient(180deg, transparent 0%, rgba(18, 14, 11, 0.3) 100%);
  pointer-events: none;
}

.preview-large {
  grid-row: 1 / span 2;
}

.preview-overlay {
  position: absolute;
  inset-inline: 18px;
  bottom: 18px;
  z-index: 1;
  min-height: 62px;
  padding: 0 16px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(255,255,255,0.82);
  backdrop-filter: blur(10px);
  font-weight: 800;
}

/* contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: stretch;
}

.contact-panel {
  display: grid;
  gap: 14px;
}

.contact-row {
  min-height: 94px;
  padding: 18px 20px;
  border-radius: 26px;
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-row:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.88);
}

.contact-label {
  color: var(--text-fade);
  font-weight: 700;
  font-size: 0.84rem;
}

.contact-row strong {
  font-size: 1.04rem;
}

/* footer */

.site-footer {
  padding: 26px 0 30px;
  border-top: 1px solid rgba(73, 54, 41, 0.08);
}

.footer-container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  font-size: 1rem;
}

.footer-brand span {
  display: block;
  margin-top: 4px;
  color: var(--text-fade);
  font-size: 0.88rem;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.footer-socials a {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.64);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-sm);
}

.footer-socials img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-credit {
  font-weight: 800;
  color: var(--text-soft);
  text-align: left;
}

/* floating whatsapp */

.floating-whatsapp {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 1000;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 24px 44px rgba(37, 211, 102, 0.34);
}

.floating-whatsapp img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* reveal */

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

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

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

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

/* responsive */

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

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .header-social {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: none;
  }

  .hero-visual {
    max-width: 760px;
  }

  .hero-highlights,
  .experience-grid,
  .trust-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 280px 220px 220px;
  }

  .preview-large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .footer-container {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-credit {
    text-align: center;
  }
}

@media (max-width: 720px) {
  :root {
    --container-padding: 18px;
    --header-height: 82px;
  }

  .section-spacing {
    padding: 84px 0;
  }

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

  .brand-title {
    font-size: 0.96rem;
  }

  .brand-subtitle {
    font-size: 0.78rem;
  }

  .header-cta {
    display: none;
  }

  .hero-section {
    padding: 42px 0 70px;
  }

  .hero-title {
    font-size: 2.75rem;
    line-height: 0.98;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.82;
  }

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

  .primary-btn,
  .secondary-btn,
  .gallery-link-btn,
  .contact-main-btn {
    width: 100%;
  }

  .hero-highlights,
  .experience-grid,
  .trust-strip-inner,
  .hero-info-grid {
    grid-template-columns: 1fr;
  }

  .hero-logo-wrap {
    min-height: 300px;
  }

  .floating-note {
    display: none;
  }

  .section-heading h2,
  .section-copy h2 {
    font-size: 2.1rem;
    line-height: 1.04;
  }

  .gallery-head {
    flex-direction: column;
    align-items: stretch;
  }

  .gallery-preview-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .preview-card,
  .preview-large {
    min-height: 220px;
  }

  .footer-socials {
    flex-wrap: wrap;
  }

  .floating-whatsapp {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    left: 14px;
    bottom: 14px;
  }

  .floating-whatsapp img {
    width: 25px;
    height: 25px;
  }
}

/* ===== PATCH BASED ON CURRENT HTML ===== */

/* header layout */
.site-header {
  direction: rtl;
}

.header-container {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

/* brand on the left */
.brand {
  justify-self: start;
  direction: ltr;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-text {
  direction: rtl;
  text-align: right;
}

/* nav center */
.main-nav {
  justify-self: center;
}

/* actions right */
.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* buttons cleanup */
.header-cta,
.primary-btn,
.contact-main-btn {
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #1f1612;
  color: #fff;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 16px 36px rgba(31, 22, 18, 0.22);
}

.header-cta img,
.primary-btn img,
.contact-main-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex: 0 0 18px;
  display: block;
}

.header-cta span,
.primary-btn span,
.contact-main-btn span {
  display: inline-block;
  line-height: 1;
}

/* hero polish */
.hero-frame {
  position: relative;
  padding: 22px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.58));
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: 0 30px 70px rgba(28, 19, 12, 0.14);
  overflow: hidden;
}

.hero-frame-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

.hero-chip {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 21, 17, 0.08);
  color: #2d241f;
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
}

.hero-logo-wrap {
  margin-top: 18px;
  min-height: 300px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(241,233,224,0.74));
  overflow: hidden;
}

.hero-logo {
  max-width: 72%;
  max-height: 210px;
  object-fit: contain;
}

.hero-info-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hero-info-card {
  min-height: 92px;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(255,255,255,0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  overflow: hidden;
}

.hero-info-card-wide {
  grid-column: 1 / -1;
}

.hero-info-label {
  color: #9a8e84;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-info-card strong,
.hero-info-card a {
  font-size: 1.05rem;
  font-weight: 900;
  color: #1d1713;
  word-break: break-word;
}

/* gallery preview */
.gallery-preview {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 34px;
  overflow: hidden;
  background: #f3efe9;
  padding: 12px;
  box-shadow:
    0 25px 70px rgba(0,0,0,0.12),
    inset 0 2px 0 rgba(255,255,255,0.7);
}

.gallery-preview::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.5);
  pointer-events: none;
}

#rotatingPreview {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  transition:
    opacity .6s ease,
    transform 1.5s ease;
  position: relative;
  z-index: 1;
}

#rotatingPreview.is-switching {
  opacity: 0;
  transform: scale(1.05);
}

/* contact polish */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 36px;
  align-items: center;
}

.contact-copy {
  max-width: 560px;
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.contact-copy p {
  margin-top: 18px;
  font-size: 1.06rem;
  line-height: 1.9;
  color: #5f5751;
}

.contact-actions {
  margin-top: 28px;
}

.contact-main-btn {
  min-width: 246px;
}

.contact-panel {
  display: grid;
  gap: 16px;
}

.contact-row {
  min-height: 92px;
  padding: 18px 22px;
  border-radius: 26px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.84);
  box-shadow: 0 14px 36px rgba(28, 19, 12, 0.07);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}

.contact-label {
  color: #a0958d;
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-row strong {
  font-size: 1.04rem;
  font-weight: 900;
  color: #201915;
  word-break: break-word;
}

/* hide floating notes */
.floating-note,
.floating-note-top,
.floating-note-bottom {
  display: none !important;
}

/* tablet/mobile */
@media (max-width: 1120px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-copy,
  .hero-content {
    max-width: none;
  }

  .contact-grid {
    gap: 22px;
  }

  .hero-info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .header-container {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand {
    justify-self: start;
  }

  .header-actions {
    justify-self: end;
  }
}

@media (max-width: 720px) {
  .hero-frame {
    padding: 18px;
    border-radius: 28px;
  }

  .hero-frame-top {
    justify-content: flex-start;
  }

  .hero-chip {
    font-size: 0.84rem;
    min-height: 36px;
    padding: 0 14px;
  }

  .hero-logo-wrap {
    min-height: 220px;
    border-radius: 22px;
  }

  .hero-logo {
    max-width: 78%;
    max-height: 170px;
  }

  .hero-info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-info-card,
  .hero-info-card-wide {
    grid-column: auto;
  }

  .contact-copy {
    text-align: right;
  }

  .contact-copy h2 {
    font-size: 2.2rem;
  }

  .contact-copy p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .contact-main-btn {
    width: 100%;
    min-width: 0;
  }

  .contact-row {
    min-height: 84px;
    padding: 16px 18px;
    border-radius: 22px;
  }

  .gallery-preview {
    min-height: 300px;
  }
}
.gallery-preview {
  width: 100%;
  height: 420px; /* גובה קבוע */
  overflow: hidden;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2eee8;
}

.gallery-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ממלא בלי שחור בצדדים */
  border-radius: 24px;
  transition: transform 0.6s ease;
}
/* ===== MOBILE FIRST TOP FIX ===== */

.header-left {
  display: none;
}

.desktop-only {
  display: flex;
}

.mobile-brand-intro {
  display: none;
}

@media (max-width: 720px) {
  .site-header {
    min-height: auto;
    padding: 12px 0;
  }

  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .main-nav,
  .desktop-only {
    display: none !important;
  }

  .header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    flex: 0 0 48px;
  }

  .header-cta {
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .brand {
    flex: 0 0 auto;
    max-width: 120px;
    direction: rtl;
    justify-self: unset;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand-text {
    display: none;
  }

  .mobile-brand-intro {
    display: block;
    padding: 14px 0 6px;
  }

  .mobile-brand-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow: 0 18px 38px rgba(28, 19, 12, 0.08);
  }

  .mobile-brand-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    flex: 0 0 72px;
    border-radius: 18px;
  }

  .mobile-brand-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .mobile-brand-copy h1 {
    margin: 0;
    font-size: 1.18rem;
    line-height: 1.05;
    font-weight: 900;
    color: #1d1713;
  }

  .mobile-brand-copy p {
    margin: 0;
    font-size: 0.92rem;
    color: #6a615b;
    line-height: 1.4;
    font-weight: 700;
  }

  .mobile-brand-copy span {
    font-size: 0.82rem;
    color: #b08a67;
    font-weight: 800;
    line-height: 1.4;
  }

  .hero-section {
    padding-top: 16px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .hero-visual {
    order: 1;
  }

  .hero-content {
    order: 2;
  }

  .hero-badge {
    margin-bottom: 14px;
    font-size: 0.82rem;
    min-height: 40px;
    padding: 0 14px;
  }

  .hero-title {
    font-size: 2.45rem;
    line-height: 0.95;
    margin-bottom: 6px;
  }

  .hero-description {
    margin-top: 14px;
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
  }

  .highlight-card {
    min-height: 0;
    padding: 16px;
    border-radius: 18px;
  }

  .hero-frame {
    padding: 16px;
    border-radius: 26px;
  }

  .hero-frame-top {
    justify-content: flex-start;
    gap: 8px;
  }

  .hero-chip {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.8rem;
  }

  .hero-logo-wrap {
    min-height: 200px;
    border-radius: 20px;
  }

  .hero-logo {
    max-width: 70%;
    max-height: 150px;
  }

  .hero-info-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-info-card,
  .hero-info-card-wide {
    min-height: 78px;
    padding: 14px 15px;
    border-radius: 18px;
    grid-column: auto;
  }
}
.footer-brand {
  order: 3;
}

.footer-socials {
  order: 2;
}

.footer-credit {
  order: 1;
  text-align: right;
}

.footer-container {
  grid-template-columns: auto 1fr auto;
  align-items: center;
}.hero-share-bar{
display:flex;
align-items:center;
justify-content:space-between;
gap:12px;
margin-bottom:18px;
padding:12px 16px;
border-radius:16px;
background:rgba(255,255,255,0.55);
backdrop-filter:blur(10px);
}

.hero-share-text strong{
display:block;
font-size:14px;
font-weight:700;
}

.hero-share-text span{
font-size:12px;
opacity:.7;
}

.share-btn{
border:none;
background:#7d4cff;
color:white;
padding:10px 14px;
border-radius:12px;
font-weight:600;
cursor:pointer;
transition:.2s;
}

.share-btn:hover{
transform:scale(1.05);
}/* MOBILE FOOTER FIX */

@media (max-width: 768px){

.footer-container{
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
gap:20px;
text-align:center;
padding:30px 20px;
}

.footer-brand{
flex-direction:column;
align-items:center;
gap:10px;
text-align:center;
}

.footer-brand img{
width:48px;
height:48px;
}

.footer-socials{
display:flex;
justify-content:center;
gap:14px;
}

.footer-socials a{
width:44px;
height:44px;
display:flex;
align-items:center;
justify-content:center;
border-radius:12px;
}

.footer-credit{
order:3;
font-size:13px;
opacity:.7;
}

}/* MOBILE FOOTER FIX */

@media (max-width: 768px){

.footer-container{
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
gap:20px;
text-align:center;
padding:30px 20px;
}

.footer-brand{
flex-direction:column;
align-items:center;
gap:10px;
text-align:center;
}

.footer-brand img{
width:48px;
height:48px;
}

.footer-socials{
display:flex;
justify-content:center;
gap:14px;
}

.footer-socials a{
width:44px;
height:44px;
display:flex;
align-items:center;
justify-content:center;
border-radius:12px;
}

.footer-credit{
order:3;
font-size:13px;
opacity:.7;
}

}@media (max-width: 768px) {
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    direction: ltr; /* מסדר את הצדדים פיזית */
  }

  .header-left {
    order: 1; /* שמאל */
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .brand {
    order: 2; /* ימין */
    direction: rtl;
    margin-left: auto;
  }

  .brand-text {
    text-align: right;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }
}/* ===== MOBILE MENU REAL LEFT DRAWER FIX ===== */
@media (max-width: 768px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .header-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    direction: ltr;
  }

  .header-left {
    order: 1;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .brand {
    order: 2;
    margin-left: auto;
    direction: rtl;
  }

  .brand-text {
    display: none;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 94px;
    left: 12px;
    right: auto;
    width: min(320px, calc(100vw - 24px));
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    background: rgba(248, 244, 239, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
    z-index: 1200;
    padding: 12px;
  }

  .mobile-nav {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .mobile-nav a {
    min-height: 58px;
    border-radius: 18px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.88);
    font-weight: 800;
  }

  .mobile-nav .mobile-whatsapp-link {
    justify-content: center;
    background: #1f1612;
    color: #fff;
    border-color: transparent;
  }

  .mobile-brand-intro {
    display: none !important;
  }

  .hero-share-wrap,
  .hero-share-bar {
    margin-top: 14px;
  }
}/* ===== REAL MOBILE HEADER / LEFT DRAWER ===== */

.header-left {
  position: relative;
}

.mobile-cta {
  display: none;
}

@media (max-width: 768px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 2000;
  }

  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    direction: ltr;
    gap: 10px;
    min-height: 78px;
  }

  .header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    order: 1;
    flex: 0 0 auto;
    position: relative;
  }

  .brand {
    order: 2;
    direction: rtl;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .brand-text {
    display: none;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .main-nav,
  .desktop-only {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    flex: 0 0 48px;
  }

  .mobile-cta {
    display: inline-flex;
    min-height: 48px;
    padding: 0 16px;
    font-size: 0.94rem;
    white-space: nowrap;
  }

  .mobile-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: auto;
    width: 290px;
    max-width: calc(100vw - 36px);
    background: rgba(248, 244, 239, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.84);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transition:
      opacity 0.22s ease,
      transform 0.22s ease,
      visibility 0.22s ease;
    z-index: 2100;
    display: block; /* חשוב - תמיד block, פתיחה דרך class */
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .mobile-nav {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .mobile-nav a {
    min-height: 56px;
    border-radius: 18px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(255,255,255,0.88);
    font-weight: 800;
    color: var(--text);
  }

  .mobile-nav .mobile-whatsapp-link {
    justify-content: center;
    background: #1f1612;
    color: #fff;
    border-color: transparent;
  }

  .hero-share-bar,
  .hero-share-wrap {
    display: none !important;
  }
}.mobile-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}.gallery-preview{
width:100%;
height:420px;
border-radius:28px;
overflow:hidden;
background:#e9e6e2;
display:flex;
align-items:center;
justify-content:center;
}

#rotatingPreview{
width:100%;
height:100%;
object-fit:cover;
border-radius:28px;
transition:opacity .35s ease;
}

#rotatingPreview.is-switching{
opacity:0;
}
.gallery-preview {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 6;
  min-height: 260px;
  max-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(145deg, #f7f3ee, #ece4da);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.10),
    inset 0 2px 0 rgba(255, 255, 255, 0.72);
}

.gallery-preview::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

#rotatingPreview {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 22px;
  transition:
    opacity 0.45s ease,
    transform 1.2s ease;
}

#rotatingPreview.is-switching {
  opacity: 0;
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .gallery-preview {
    aspect-ratio: 4 / 3;
    min-height: 240px;
    max-height: 340px;
    border-radius: 24px;
    padding: 10px;
  }

  .gallery-preview::before {
    inset: 10px;
    border-radius: 18px;
  }

  #rotatingPreview {
    border-radius: 18px;
  }
}
