.elementor-23 .elementor-element.elementor-element-d7d555b{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for container, class: .elementor-element-d7d555b *//* ============================================================
   OPINATII PHOTOGRAPHY — index.css (Homepage)
   01. Variables · 02. Reset · 03. Typography · 04. Global Layout
   05. Navigation · 06. Mobile Nav · 07. Buttons · 08. Hero
   09. Intro · 10. Mini Gallery · 11. Services · 12. Full-bleed
   13. Testimonials · 14. Pricing Teaser · 15. Final CTA
   16. Footer · 17. Animations · 18. Accessibility · 19. Responsive
   ============================================================ */

/* 01. Variables */
:root {
  --black: #090909;
  --soft-black: #111111;
  --white: #ffffff;
  --off-white: #f6f4ef;
  --gold: #c6a15b;
  --muted-gold: #a98749;
  --gray: #9b9b9b;
  --border: rgba(255, 255, 255, 0.15);
  --border-dark: rgba(0, 0, 0, 0.12);

  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Inter", "Helvetica Neue", Arial, sans-serif;

  --container: 1440px;
  --page-padding: clamp(20px, 4vw, 64px);
  --ease-luxury: cubic-bezier(0.22, 1, 0.36, 1);
}

/* 02. Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  width: 100%;
}
main, section, .container { max-width: 100%; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--gold); color: var(--black); }

/* 03. Typography */
.eyebrow, .label-gold {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.serif { font-family: var(--font-serif); font-weight: 500; }
h1, h2, h3 { font-family: var(--font-serif); font-weight: 500; line-height: 1.02; letter-spacing: -0.01em; }
p { color: rgba(255, 255, 255, 0.7); }

/* 04. Global Layout */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--page-padding); }
.section { padding: clamp(80px, 12vw, 180px) 0; }
.section--light { background: var(--off-white); color: var(--black); }
.section--light p { color: rgba(0, 0, 0, 0.62); }
.section--dark { background: var(--black); color: var(--white); }

/* 05. Navigation */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(18px, 2.4vw, 30px) var(--page-padding);
  transition: background 0.5s var(--ease-luxury), backdrop-filter 0.5s var(--ease-luxury), padding 0.5s var(--ease-luxury);
}
.nav.is-scrolled {
  background: rgba(9, 9, 9, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding-top: clamp(14px, 1.8vw, 20px);
  padding-bottom: clamp(14px, 1.8vw, 20px);
}
.nav__brand {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.nav__brand span { color: var(--gold); }
.nav__links { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 42px); }
.nav__link {
  position: relative;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 4px 0;
  transition: color 0.4s var(--ease-luxury);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform 0.5s var(--ease-luxury);
}
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__link.is-active { color: var(--gold); }
.nav__cta { display: inline-flex; align-items: center; gap: 8px; }
.nav__burger {
  display: none; flex-direction: column; gap: 6px; z-index: 120; padding: 6px;
}
.nav__burger span { display: block; width: 26px; height: 1.5px; background: var(--white); transition: transform 0.4s var(--ease-luxury), opacity 0.3s; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* 06. Mobile Nav */
.mobile-menu {
  position: fixed; inset: 0; z-index: 110; background: var(--black);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--page-padding);
  opacity: 0; visibility: hidden; transition: opacity 0.5s var(--ease-luxury), visibility 0.5s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__links { display: flex; flex-direction: column; gap: clamp(14px, 4vw, 28px); }
.mobile-menu__link {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 13vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--white);
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s var(--ease-luxury), transform 0.6s var(--ease-luxury), color 0.4s;
}
.mobile-menu.is-open .mobile-menu__link { opacity: 1; transform: translateY(0); }
.mobile-menu.is-open .mobile-menu__link:nth-child(1) { transition-delay: 0.12s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2) { transition-delay: 0.18s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3) { transition-delay: 0.24s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4) { transition-delay: 0.30s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(5) { transition-delay: 0.36s; }
.mobile-menu__link:hover { color: var(--gold); }
.mobile-menu__link .num { font-family: var(--font-sans); font-size: 0.7rem; color: var(--gold); letter-spacing: 0.2em; vertical-align: super; margin-right: 14px; }
.mobile-menu__foot { margin-top: auto; padding-top: 40px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px; opacity: 0; transition: opacity 0.6s var(--ease-luxury) 0.5s; }
.mobile-menu.is-open .mobile-menu__foot { opacity: 1; }
.mobile-menu__socials { display: flex; gap: 22px; }
.mobile-menu__socials a { font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray); transition: color 0.3s; }
.mobile-menu__socials a:hover { color: var(--gold); }

/* 07. Buttons */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 500; padding: 16px 30px;
  overflow: hidden; transition: color 0.5s var(--ease-luxury); z-index: 1;
  border: 1px solid var(--border);
}
.btn::before {
  content: ""; position: absolute; inset: 0; background: var(--gold); z-index: -1;
  transform: scaleX(0); transform-origin: right; transition: transform 0.55s var(--ease-luxury);
}
.btn:hover::before { transform: scaleX(1); transform-origin: left; }
.btn .arrow { transition: transform 0.45s var(--ease-luxury); }
.btn:hover .arrow { transform: translateX(5px); }
.btn--primary { background: var(--white); color: var(--black); border-color: var(--white); }
.btn--primary::before { background: var(--gold); }
.btn--primary:hover { color: var(--black); }
.btn--outline { border-color: var(--border); color: var(--white); }
.btn--outline::before { background: var(--white); }
.btn--outline:hover { color: var(--black); }
.btn--gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn--gold::before { background: var(--white); }
.btn--gold:hover { color: var(--black); }
.btn--light { background: transparent; color: var(--black); border-color: var(--black); }
.btn--light::before { background: var(--black); }
.btn--light:hover { color: var(--white); }
.btn--light-outline { background: transparent; color: var(--black); border-color: rgba(0,0,0,0.25); }
.btn--light-outline::before { background: var(--gold); }
.btn--light-outline:hover { color: var(--black); }

/* 08. Hero */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1); animation: heroZoom 9s var(--ease-luxury) forwards; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,9,9,0.55) 0%, rgba(9,9,9,0.25) 35%, rgba(9,9,9,0.78) 100%); z-index: 1; }
.hero__inner { position: relative; z-index: 2; width: 100%; padding: 0 var(--page-padding) clamp(48px, 7vw, 90px); }
.hero__eyebrow { margin-bottom: clamp(20px, 3vw, 34px); opacity: 0; transform: translateY(20px); animation: fadeUp 1s var(--ease-luxury) 0.3s forwards; }
.hero__title {
  font-size: clamp(3.4rem, 9vw, 9rem);
  line-height: 0.96; max-width: 14ch; margin-bottom: clamp(22px, 2.6vw, 34px);
  opacity: 0; transform: translateY(30px); animation: fadeUp 1.1s var(--ease-luxury) 0.45s forwards;
}
.hero__title em { font-style: italic; color: var(--gold); }
.hero__sub { max-width: 46ch; font-size: clamp(1rem, 1.4vw, 1.18rem); color: rgba(255,255,255,0.82); margin-bottom: clamp(28px, 3.4vw, 44px); opacity: 0; transform: translateY(20px); animation: fadeUp 1s var(--ease-luxury) 0.6s forwards; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 16px; opacity: 0; transform: translateY(20px); animation: fadeUp 1s var(--ease-luxury) 0.75s forwards; }
.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0; animation: fadeUp 1s var(--ease-luxury) 1.1s forwards; }
.hero__scroll span { font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.hero__scroll .line { width: 1px; height: 46px; background: rgba(255,255,255,0.3); position: relative; overflow: hidden; }
.hero__scroll .line::after { content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 50%; background: var(--gold); animation: scrollLine 2.2s var(--ease-luxury) infinite; }

/* 09. Intro */
.intro { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(40px, 6vw, 110px); align-items: end; }
.intro__label { margin-bottom: clamp(28px, 3.4vw, 46px); }
.intro__statement { font-size: clamp(2rem, 4.6vw, 4.2rem); line-height: 1.04; max-width: 18ch; }
.intro__statement em { font-style: italic; color: var(--gold); }
.intro__side { padding-bottom: 8px; }
.intro__side p { font-size: 1.02rem; margin-bottom: 28px; max-width: 42ch; }

/* 10. Mini Gallery */
.minigallery__head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; margin-bottom: clamp(40px, 5vw, 70px); }
.minigallery__title { font-size: clamp(2rem, 4.4vw, 3.8rem); line-height: 1.04; max-width: 16ch; }
.minigallery__title em { font-style: italic; color: var(--gold); }
.minigallery__sub { max-width: 38ch; }
.mg-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(12px, 1.6vw, 22px); }
.mg-item { position: relative; overflow: hidden; cursor: pointer; }
.mg-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-luxury); }
.mg-item::after { content: ""; position: absolute; inset: 0; background: rgba(9,9,9,0.45); opacity: 0; transition: opacity 0.6s var(--ease-luxury); }
.mg-item:hover img { transform: scale(1.05); }
.mg-item:hover::after { opacity: 1; }
.mg-item__meta { position: absolute; left: 24px; bottom: 22px; z-index: 2; opacity: 0; transform: translateY(14px); transition: opacity 0.5s var(--ease-luxury), transform 0.5s var(--ease-luxury); }
.mg-item:hover .mg-item__meta { opacity: 1; transform: translateY(0); }
.mg-item__cat { font-size: 0.66rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); }
.mg-item__view { font-family: var(--font-serif); font-size: 1.4rem; margin-top: 4px; display: flex; align-items: center; gap: 8px; }
.mg--a { grid-column: span 5; aspect-ratio: 3 / 4.4; }
.mg--b { grid-column: span 4; aspect-ratio: 3 / 4; }
.mg--c { grid-column: span 3; aspect-ratio: 3 / 4; }
.mg--d { grid-column: span 8; aspect-ratio: 16 / 9; }
.mg--e { grid-column: span 4; aspect-ratio: 3 / 4; }
.minigallery__cta { margin-top: clamp(50px, 6vw, 90px); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 22px; }
.minigallery__cta h3 { font-size: clamp(2rem, 4.4vw, 3.6rem); }
.minigallery__cta h3 em { font-style: italic; color: var(--gold); }

/* 11. Services */
.services__head { margin-bottom: clamp(40px, 5vw, 64px); }
.services__title { font-size: clamp(2rem, 4.4vw, 3.8rem); max-width: 14ch; }
.services__title em { font-style: italic; color: var(--gold); }
.svc-row {
  display: grid; grid-template-columns: 60px 1fr auto; align-items: center; gap: 24px;
  padding: clamp(26px, 3.4vw, 44px) 0; border-top: 1px solid var(--border-dark);
  transition: padding-left 0.5s var(--ease-luxury);
}
.svc-row:last-child { border-bottom: 1px solid var(--border-dark); }
.svc-row__num { font-size: 0.78rem; letter-spacing: 0.2em; color: var(--gold); }
.svc-row__name { font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 3.4rem); font-weight: 500; line-height: 1; transition: transform 0.5s var(--ease-luxury), color 0.4s; }
.svc-row__arrow { font-size: 1.4rem; color: var(--gold); transition: transform 0.5s var(--ease-luxury); }
.svc-row:hover { padding-left: 18px; }
.svc-row:hover .svc-row__name { color: var(--muted-gold); }
.svc-row:hover .svc-row__arrow { transform: translateX(10px); }

/* 12. Full-bleed statement */
.fullbleed { position: relative; min-height: 86vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.fullbleed__media { position: absolute; inset: 0; z-index: 0; }
.fullbleed__media img { width: 100%; height: 100%; object-fit: cover; }
.fullbleed__overlay { position: absolute; inset: 0; background: rgba(9,9,9,0.5); z-index: 1; }
.fullbleed__inner { position: relative; z-index: 2; text-align: center; padding: 0 var(--page-padding); }
.fullbleed__title { font-size: clamp(2.6rem, 7vw, 6.4rem); line-height: 1.02; }
.fullbleed__title em { font-style: italic; color: var(--gold); }
.fullbleed__sub { margin-top: 22px; color: rgba(255,255,255,0.7); max-width: 44ch; margin-inline: auto; }

/* 13. Testimonials */
.testi { max-width: 1000px; margin: 0 auto; text-align: center; }
.testi__mark { font-family: var(--font-serif); font-size: clamp(5rem, 10vw, 9rem); line-height: 0.5; color: var(--gold); height: 0.5em; }
.testi__quote { font-family: var(--font-serif); font-size: clamp(1.7rem, 3.6vw, 3rem); line-height: 1.18; font-style: italic; margin: 18px 0 34px; }
.testi__meta { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); }
.testi__meta span { color: var(--gold); }
.testi__dots { display: flex; align-items: center; gap: 10px; justify-content: center; margin-top: 32px; }
.testi__dot {
  flex: 0 0 auto; width: 8px; height: 8px; min-width: 8px; min-height: 8px;
  padding: 0; margin: 0; border-radius: 50%;
  background: rgba(255,255,255,0.22); border: 0; line-height: 0; appearance: none;
  transition: background 0.35s ease, transform 0.35s ease;
}
.testi__dot.is-active { background: var(--gold); transform: scale(1.35); }

/* 14. Pricing teaser */
.pteaser { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: end; }
.pteaser__title { font-size: clamp(2rem, 4.6vw, 4rem); line-height: 1.04; max-width: 16ch; }
.pteaser__title em { font-style: italic; color: var(--gold); }
.pteaser__side p { max-width: 40ch; margin-bottom: 30px; }

/* 15. Final CTA */
.fcta { text-align: center; padding-bottom: clamp(56px, 7vw, 96px); }
.fcta__label { margin-bottom: 26px; }
.fcta__title { font-size: clamp(2.6rem, 7vw, 6rem); line-height: 1.02; margin-bottom: 40px; }
.fcta__title em { font-style: italic; color: var(--gold); }
.fcta__links { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.fcta__links a.link-quiet { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray); border-bottom: 1px solid transparent; padding-bottom: 4px; transition: color 0.4s, border-color 0.4s; }
.fcta__links a.link-quiet:hover { color: var(--gold); border-color: var(--gold); }

/* 16. Footer */
.footer { background: var(--black); color: var(--white); padding-top: clamp(70px, 9vw, 130px); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(30px, 4vw, 70px); padding-bottom: clamp(50px, 6vw, 80px); border-bottom: 1px solid var(--border); }
.footer__brand h4 { font-size: 1rem; letter-spacing: 0.3em; text-transform: uppercase; font-family: var(--font-sans); font-weight: 600; margin-bottom: 20px; }
.footer__brand h4 span { color: var(--gold); }
.footer__brand p { max-width: 34ch; font-size: 0.92rem; }
.footer__col h5 { font-size: 0.7rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; font-weight: 500; }
.footer__col ul { display: flex; flex-direction: column; gap: 14px; }
.footer__col a { font-size: 0.9rem; color: rgba(255,255,255,0.72); transition: color 0.3s, padding-left 0.4s var(--ease-luxury); }
.footer__col a:hover { color: var(--gold); padding-left: 6px; }
.footer__divider { height: 1px; background: var(--gold); opacity: 0.5; margin: 0 var(--page-padding); }
.footer__wordmark { padding: clamp(40px, 6vw, 70px) var(--page-padding) 0; text-align: center; }
.footer__wordmark h2 { font-family: var(--font-sans); font-weight: 900; font-size: clamp(3.4rem, 10vw, 11rem); letter-spacing: -0.06em; line-height: 0.82; color: var(--off-white); }
.footer__wordmark h2 span { display: block; }
.footer__copy { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: clamp(28px, 3vw, 40px) var(--page-padding); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); }

/* 17. Animations */
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.06); } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes scrollLine { 0% { top: -100%; } 60%,100% { top: 100%; } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease-luxury), transform 0.9s var(--ease-luxury); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

/* 18. Accessibility */
:focus-visible { outline: 1.5px solid var(--gold); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* 19. Responsive */
@media (max-width: 1024px) {
  .intro, .pteaser { grid-template-columns: 1fr; gap: 30px; }
  .intro__side { padding-bottom: 0; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  html, body { width: 100%; max-width: 100%; overflow-x: clip; }
  .container, .hero__inner, .fullbleed__inner, .nav, .mobile-menu { max-width: 100vw; }
  .nav__brand { max-width: calc(100vw - 90px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .testi { width: 100%; max-width: 100%; }
  .testi__quote, .testi__meta { overflow-wrap: anywhere; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .hero__title { max-width: 100%; }
  .mg-grid { width: 100%; min-width: 0; }
  .mg-item { min-width: 0; }
  .mg--a { grid-column: span 12; aspect-ratio: 4 / 5; }
  .mg--b { grid-column: span 6; aspect-ratio: 3 / 4; }
  .mg--c { grid-column: span 6; aspect-ratio: 3 / 4; }
  .mg--d { grid-column: span 12; aspect-ratio: 16 / 11; }
  .mg--e { grid-column: span 12; aspect-ratio: 4 / 5; }
  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .footer__copy { flex-direction: column; align-items: center; text-align: center; }
}
@media (max-width: 480px) {
  .section { padding: 72px 0; }
  .fcta { padding-bottom: 48px; }
  .footer { padding-top: 54px; }
  .btn { padding: 15px 24px; font-size: 0.74rem; width: 100%; justify-content: center; }
  .hero__ctas { width: 100%; }
  .svc-row { grid-template-columns: 40px 1fr auto; gap: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__media img { animation: none; }
}/* End custom CSS */