@font-face {
  font-family: 'Amatry';
  src: url('../assets/fonts/Amatry.woff2') format('woff2');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'OliveDisplay';
  src: url('../assets/fonts/OliveDisplay-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'OliveDisplay';
  src: url('../assets/fonts/OliveDisplay-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'OliveDisplay';
  src: url('../assets/fonts/OliveDisplay-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue:        #0064fc;
  --blue-dark:   #004fcc;
  --blue-soft:   #5ea8ff;
  --blue-light:  #ebf2ff;
  --dark:        #202833;
  --dark-2:      #2d3a4a;
  --muted:       #6b7a8d;
  --light:       #9aa5b4;
  --border:      #e2e8f0;
  --bg:          #ffffff;
  --bg-alt:      #f7f9fc;
  --font-head:   'OliveDisplay', sans-serif;
  --font-body:   'OliveDisplay', sans-serif;
  --maxw:        1180px;
  --radius:      16px;
  --radius-sm:   10px;
  --shadow-sm:   0 1px 4px rgba(32,40,51,.06);
  --shadow:      0 4px 24px rgba(32,40,51,.09);
  --shadow-lg:   0 12px 48px rgba(32,40,51,.14);
  --shadow-blue: 0 8px 32px rgba(0,100,252,.28);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.1;
  color: var(--dark);
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.8vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { color: var(--muted); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }
.section-alt  { background: var(--bg-alt); }
.section-blue { background: var(--blue); }
.section-dark { background: var(--dark); }
.has-header   { padding-top: 72px; }

.section-head { margin-bottom: 52px; }
.section-head.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-head h2 { margin: 10px 0 14px; }
.section-head p { font-size: 1.05rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--blue);
  background: var(--blue-light);
  padding: 4px 12px;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .97rem;
  padding: .82rem 1.55rem;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: .22s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,100,252,.38);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-white { background: #fff; color: var(--blue); border-color: #fff; }
.btn-white:hover { background: var(--blue-light); transform: translateY(-2px); }
.btn-lg { padding: .95rem 1.9rem; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: .25s ease;
  box-shadow: var(--shadow-sm);
  display: block;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(0,100,252,.22);
}
.card-icon {
  width: 52px; height: 52px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  color: var(--blue);
  margin-bottom: 18px;
  flex-shrink: 0;
}
.card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.card p  { font-size: .96rem; }
.card-link {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  color: var(--blue);
}
.card:hover .card-link { text-decoration: underline; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 36px; align-items: center; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
}
.why-item { display: flex; flex-direction: column; gap: 12px; }
.why-icon {
  width: 56px; height: 56px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  color: var(--blue);
}
.why-item h3 { font-size: 1.15rem; margin: 0; }

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip h2 { color: #fff; margin-bottom: 8px; }
.cta-strip p  { color: rgba(255,255,255,.8); }
.cta-strip-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  position: relative;
}
.gallery-item img,
.gallery-item video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}
.gallery-item:hover img,
.gallery-item:hover video { transform: scale(1.04); }
.gallery-ph {
  width: 100%; height: 100%;
  display: grid;
  place-items: center;
  font-size: .85rem;
  font-weight: 600;
  color: var(--light);
  text-align: center;
  padding: 16px;
}

.page-hero {
  padding: 130px 0 68px;
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--bg-alt) 60%);
  border-bottom: 1px solid var(--border);
}
.page-hero .eyebrow { margin-bottom: 10px; }
.page-hero h1 { margin: 10px 0 18px; }
.page-hero p { font-size: 1.12rem; max-width: 580px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .88rem;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .97rem;
  color: var(--dark);
  background: var(--bg);
  transition: .2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,100,252,.1); }
.form-group textarea { resize: none; min-height: 110px; }

.reveal { opacity: 0; transform: translateY(22px); transition: .65s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }

.flex-center { display: flex; align-items: center; justify-content: center; }
.text-blue   { color: var(--blue); }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .28s, box-shadow .28s;
}
#site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 24px rgba(32,40,51,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-logo {
  height: 44px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.brand-name {
  font-family: 'Amatry', serif;
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--dark);
  white-space: nowrap;
}
.brand-name span { color: var(--blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .93rem;
  color: var(--dark-2);
  padding: 7px 12px;
  border-radius: 8px;
  transition: .18s;
  display: flex;
  align-items: center;
  gap: 3px;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--blue); background: var(--blue-light); }
.nav-links > li > a.active { font-weight: 700; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
  z-index: 200;
}
.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: none; }
.dropdown-menu li a {
  display: block;
  padding: 8px 12px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark-2);
  border-radius: 7px;
  transition: .15s;
}
.dropdown-menu li a:hover { background: var(--blue-light); color: var(--blue); }

.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--dark);
  padding: 7px;
  align-items: center;
  justify-content: center;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 998;
  padding: 20px 24px 32px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s ease;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { transform: none; }
.mobile-nav a {
  display: block;
  padding: 13px 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  transition: .15s;
}
.mobile-nav a:hover { color: var(--blue); }
.mobile-nav .mobile-sub {
  padding-left: 20px;
  font-size: .92rem !important;
  color: var(--muted) !important;
  font-weight: 500 !important;
}
.mobile-nav .btn { margin-top: 8px; }

#site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  font-size: .93rem;
}
.footer-top { padding: 64px 0 44px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 44px;
}
.footer-logo {
  height: 38px;
  width: auto;
  display: block;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-brand-row .brand-name {
  font-family: 'Amatry', serif;
  color: #fff;
  font-size: 1.08rem;
}
.footer-brand-row .brand-name span { color: var(--blue-soft); }
.footer-desc { color: rgba(255,255,255,.5); line-height: 1.7; }
#site-footer h3 {
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.6); font-weight: 500; transition: .18s; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  color: rgba(255,255,255,.6);
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; opacity: .7; }
.footer-contact-item a { color: rgba(255,255,255,.6); transition: .18s; }
.footer-contact-item a:hover { color: #fff; }
.footer-social {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  font-weight: 500;
  transition: color .18s;
}
.footer-social-link:hover { color: #fff; }
.footer-sister {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-sister-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.3);
}
.footer-sister-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  font-weight: 600;
  font-family: var(--font-head);
  transition: color .18s;
}
.footer-sister-link:hover { color: #fff; }
.footer-sister-insta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.45);
  font-size: .85rem;
  transition: color .18s;
}
.footer-sister-insta:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: .83rem; color: rgba(255,255,255,.3); }

#site-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  pointer-events: none;
  z-index: 99999;
  opacity: 0;
  transition: opacity .2s;
  will-change: transform;
}
#site-cursor.ready { opacity: 1; }
#site-cursor svg { display: block; transition: transform .15s ease; }
#site-cursor.cur-hover svg { transform: scale(1.3); }
#site-cursor.cur-hover svg path { fill: var(--blue); }
#site-cursor.cur-click svg { transform: scale(.85); }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta .btn-outline { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .page-hero { padding: 110px 0 56px; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  .container { padding: 0 18px; }
  section { padding: 56px 0; }
  .grid-3 { grid-template-columns: 1fr 1fr; gap: 16px; }
  .grid-2 { grid-template-columns: 1fr; }
  .cta-strip { flex-direction: column; text-align: center; }
  .cta-strip-btns { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gallery-full { grid-template-columns: 1fr 1fr; gap: 12px; }
  .brand-logo { height: 38px; }
  .footer-logo { height: 32px; }
}

@media (max-width: 700px) {
  .cta-strip { text-align: center; }
  .cta-strip-btns { justify-content: center; }
}

@media (max-width: 600px) {
  section { padding: 48px 0; }
  .container { padding: 0 16px; }
  .grid-3 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-top { padding: 44px 0 28px; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-full { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 100px 0 48px; }
  .page-hero h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .btn-lg { padding: .8rem 1.4rem; font-size: .97rem; }
  .card { padding: 22px 18px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .brand-logo { height: 32px; }
  .footer-logo { height: 28px; }
}

@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-full { grid-template-columns: 1fr; }
  .filter-bar { gap: 8px; }
  .filter-btn { font-size: .82rem; padding: 6px 14px; }
}

.password-field { position: relative; }
.password-field input { padding-right: 44px; }
.password-toggle {
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  border-radius: 8px;
  transition: .18s;
}
.password-toggle:hover { color: var(--blue); background: var(--blue-light); }
.password-toggle .icon-eye-off { display: none; }
.password-toggle.shown .icon-eye { display: none; }
.password-toggle.shown .icon-eye-off { display: block; }