
:root{
  --mint:#7BC9AE;
  --mint-2:#58AE91;
  --mint-3:#DDF2EA;
  --mint-4:#F1FAF7;
  --ink:#0E1714;
  --ink-2:#18231F;
  --muted:#6D7873;
  --line:rgba(20,49,39,.10);
  --white:#fff;
  --shadow:0 24px 70px rgba(23,66,52,.10);
  --shadow-strong:0 38px 100px rgba(23,66,52,.16);
  --radius-xl:36px;
  --radius-lg:28px;
  --radius-md:20px;
  --ease:cubic-bezier(.22,1,.36,1);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 85% -10%, rgba(123,201,174,.14), transparent 34%),
    linear-gradient(#fff,#fff);
  line-height:1.6;
  overflow-x:hidden;
}
body::before{
  content:"";
  position:fixed;inset:0;pointer-events:none;z-index:9999;
  background-image:radial-gradient(rgba(13,34,27,.035) .7px,transparent .7px);
  background-size:7px 7px;
  opacity:.32;
}
a{text-decoration:none;color:inherit}
img{display:block;width:100%}
button,input,textarea{font:inherit}
button{color:inherit}
.wrap{max-width:1280px;margin:auto;padding:0 28px}

/* premium header */
header{
  position:sticky;top:0;z-index:1000;
  background:rgba(255,255,255,.76);
  backdrop-filter:blur(22px) saturate(1.35);
  border-bottom:1px solid rgba(28,58,47,.07);
}
nav{height:88px;display:flex;align-items:center;gap:28px}
.logo{
  width:210px;height:66px;overflow:visible;border-radius:0;display:flex;align-items:center
}
.logo img{
  width:210px;height:auto;max-height:58px;object-fit:contain;object-position:left center;
  filter:none;mix-blend-mode:normal
}
.links{margin-left:auto;display:flex;align-items:center;gap:23px}
.links a{
  position:relative;
  font-size:14px;font-weight:600;color:#29352f;padding:31px 0;
  transition:.25s var(--ease)
}
.links a:hover,.links a.active{color:var(--mint-2)}
.links a::after{
  content:"";position:absolute;left:50%;bottom:20px;width:0;height:2px;
  background:var(--mint-2);border-radius:99px;transition:.28s var(--ease)
}
.links a:hover::after,.links a.active::after{width:100%;left:0}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:12px;
  padding:14px 22px;border:0;border-radius:999px;cursor:pointer;
  background:linear-gradient(135deg,var(--mint-2),#3E8D75);
  color:#fff;font-weight:700;letter-spacing:-.01em;
  box-shadow:0 12px 30px rgba(73,151,125,.22);
  transition:.3s var(--ease)
}
.btn:hover{transform:translateY(-3px);box-shadow:0 18px 38px rgba(73,151,125,.28)}
.btn.outline{
  background:rgba(255,255,255,.82);color:var(--ink);
  border:1px solid rgba(75,161,135,.35);box-shadow:none;
  backdrop-filter:blur(10px)
}
.menu{display:none;margin-left:auto;border:0;background:none;font-size:28px}

/* shared typography */
.eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  font-size:11px;letter-spacing:.20em;color:var(--mint-2);font-weight:800;margin-bottom:16px
}
.eyebrow::before{content:"";width:24px;height:1px;background:var(--mint-2)}
.hero{
  position:relative;overflow:hidden;
  padding:92px 0 78px;
  background:
    radial-gradient(circle at 75% 12%, rgba(123,201,174,.26), transparent 28%),
    linear-gradient(115deg,#f8fcfa 0%,#fff 55%,#f4fbf8 100%);
}
.hero::after{
  content:"";position:absolute;width:460px;height:460px;border:1px solid rgba(123,201,174,.18);
  border-radius:50%;right:-120px;top:-140px;box-shadow:0 0 0 55px rgba(123,201,174,.035),0 0 0 110px rgba(123,201,174,.02)
}
.hero-grid{position:relative;z-index:2;display:grid;grid-template-columns:1.03fr .97fr;gap:78px;align-items:center}
.hero h1{
  font-size:clamp(58px,6.2vw,92px);line-height:.94;letter-spacing:-.062em;
  margin:0 0 28px;font-weight:500;max-width:780px
}
.hero h1 span{color:var(--mint-2)}
.hero p{font-size:18px;color:#4f5b56;max-width:640px;margin:0}
.hero-copy-card{padding-right:10px}
.hero-media-wrap{position:relative}
.hero-media{
  position:relative;border-radius:42px;overflow:hidden;
  box-shadow:var(--shadow-strong);
  aspect-ratio:1.02/1
}
.hero-media img{height:100%;object-fit:cover;transition:transform .8s var(--ease)}
.hero-media:hover img{transform:scale(1.025)}
.hero-media::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 55%,rgba(8,28,21,.24))
}
.hero-note{
  position:absolute;left:-44px;bottom:38px;z-index:3;max-width:250px;
  padding:18px 20px;border-radius:22px;
  background:rgba(255,255,255,.90);backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.75);
  box-shadow:0 20px 60px rgba(25,63,49,.16);
  font-size:14px;color:#31443c
}
.hero-note strong{display:block;font-size:28px;color:var(--ink);line-height:1.1;margin-bottom:4px}
.actions{display:flex;gap:16px;flex-wrap:wrap;margin-top:34px}
.hero-meta{display:flex;gap:28px;flex-wrap:wrap;margin-top:38px;color:#65726c;font-size:13px}
.hero-meta span{display:flex;gap:8px;align-items:center}
.hero-meta span::before{content:"";width:7px;height:7px;border-radius:50%;background:var(--mint)}

/* Marquee strip */
.marquee{
  overflow:hidden;border-top:1px solid var(--line);border-bottom:1px solid var(--line);
  background:rgba(255,255,255,.72)
}
.marquee-track{display:flex;width:max-content;animation:marquee 28s linear infinite}
.marquee-item{padding:16px 30px;font-size:12px;letter-spacing:.18em;text-transform:uppercase;color:#60706a;white-space:nowrap}
.marquee-item::after{content:"✦";margin-left:30px;color:var(--mint)}
@keyframes marquee{to{transform:translateX(-50%)}}

/* sections */
.section{padding:112px 0}
.section.alt{
  background:
    radial-gradient(circle at 10% 0%,rgba(123,201,174,.10),transparent 24%),
    linear-gradient(180deg,#f8fcfa,#f3faf7)
}
.section h2{
  font-size:clamp(40px,4.2vw,64px);line-height:1.03;letter-spacing:-.045em;
  margin:0 0 22px;font-weight:500
}
.lead{max-width:780px;color:var(--muted);font-size:18px}
.section-head{display:flex;justify-content:space-between;gap:60px;align-items:end;margin-bottom:46px}
.section-head .lead{max-width:500px;margin:0}

/* cards */
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:38px}
.card{
  position:relative;overflow:hidden;
  border:1px solid rgba(29,69,54,.10);border-radius:30px;padding:30px;
  background:rgba(255,255,255,.82);backdrop-filter:blur(12px);
  transition:.35s var(--ease)
}
.card::before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(123,201,174,.10),transparent 45%);
  opacity:0;transition:.35s
}
.card:hover{transform:translateY(-8px);box-shadow:var(--shadow);border-color:rgba(75,161,135,.24)}
.card:hover::before{opacity:1}
.card>*{position:relative;z-index:2}
.card h3{margin:18px 0 9px;font-size:25px;letter-spacing:-.02em}
.card p{color:var(--muted);margin-bottom:0}
.icon{
  width:62px;height:62px;border-radius:20px;
  background:linear-gradient(145deg,#E7F6F0,#D6EFE5);
  display:grid;place-items:center;color:var(--mint-2);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.8)
}
.icon svg{width:31px;height:31px;fill:none;stroke:currentColor;stroke-width:1.65;stroke-linecap:round;stroke-linejoin:round}
.card .arrow{
  margin-top:26px;display:flex;justify-content:space-between;align-items:center;
  color:var(--mint-2);font-weight:700;font-size:14px
}
.card .arrow b{font-size:20px;font-weight:400;transition:.25s}
.card:hover .arrow b{transform:translateX(4px)}

.list-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:32px}
.item{
  position:relative;overflow:hidden;
  border:1px solid var(--line);border-radius:22px;padding:24px;
  background:rgba(255,255,255,.9);transition:.28s var(--ease)
}
.item:hover{transform:translateY(-3px);border-color:rgba(75,161,135,.26);box-shadow:0 16px 40px rgba(32,77,60,.08)}
.item h3{margin:0 0 6px;font-size:20px}
.item p{margin:0;color:var(--muted)}

/* split / media */
.split{display:grid;grid-template-columns:1fr 1fr;gap:72px;align-items:center}
.split img{height:570px;object-fit:cover;border-radius:34px;box-shadow:var(--shadow)}
.media-stack{position:relative}
.media-stack::before{
  content:"";position:absolute;inset:auto -24px -24px auto;width:58%;height:58%;
  border-radius:28px;background:var(--mint-3);z-index:-1
}

/* stats */
.stats{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:44px}
.stat{
  position:relative;overflow:hidden;padding:30px;border:1px solid var(--line);
  border-radius:24px;background:rgba(255,255,255,.9);text-align:center
}
.stat::after{
  content:"";position:absolute;width:90px;height:90px;border-radius:50%;
  background:rgba(123,201,174,.08);right:-28px;top:-28px
}
.stat strong{display:block;font-size:46px;color:var(--mint-2);font-weight:500;letter-spacing:-.04em}
.stat span{color:var(--muted);font-size:14px}

/* gallery */
.gallery{display:grid;grid-template-columns:1.15fr .85fr;gap:16px;margin-top:36px}
.gallery img{height:440px;object-fit:cover;border-radius:28px;box-shadow:var(--shadow)}
.gallery img:nth-child(2){margin-top:58px}

/* contact */
.contact{display:grid;grid-template-columns:.78fr 1.22fr;gap:70px}
.contact-list{display:grid;gap:9px;margin-top:26px}
.contact-list a{font-size:20px;color:var(--mint-2);font-weight:700}
.form{
  background:rgba(255,255,255,.86);border:1px solid var(--line);
  border-radius:30px;padding:32px;box-shadow:var(--shadow);backdrop-filter:blur(10px)
}
.form label{display:grid;gap:7px;margin-bottom:15px;font-size:13px;font-weight:700}
.form input,.form textarea{
  padding:15px 16px;border:1px solid #dbe7e2;border-radius:15px;outline:none;background:#fff;
  transition:.2s var(--ease)
}
.form input:focus,.form textarea:focus{
  border-color:var(--mint-2);box-shadow:0 0 0 4px rgba(116,199,170,.12)
}
.row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.notice{display:none;background:#e8f7f1;color:#28634f;padding:12px 14px;border-radius:12px;margin-top:14px}

/* news */
.news-list{display:grid;gap:0;margin-top:36px;border-top:1px solid var(--line)}
.news-item{
  position:relative;display:grid;grid-template-columns:1fr auto;gap:24px;align-items:center;
  border-bottom:1px solid var(--line);padding:24px 6px;
  transition:.25s var(--ease)
}
.news-item:hover{padding-left:14px;background:linear-gradient(90deg,rgba(123,201,174,.06),transparent)}
.news-item h3{margin:0;font-size:21px;font-weight:500;letter-spacing:-.02em}
.news-item time{color:var(--muted);white-space:nowrap;font-size:13px}

/* breadcrumbs */
.breadcrumbs{font-size:13px;color:#87918d;margin-bottom:26px}
.breadcrumbs a{color:var(--mint-2)}

/* Footer */
footer{
  position:relative;overflow:hidden;
  background:
    radial-gradient(circle at 80% 0%,rgba(123,201,174,.16),transparent 32%),
    #0f231d;
  color:white;padding:64px 0 28px;margin-top:80px
}
footer::before{
  content:"";position:absolute;width:340px;height:340px;border:1px solid rgba(255,255,255,.06);
  border-radius:50%;right:-130px;bottom:-180px
}
.footer-top{display:flex;justify-content:space-between;gap:30px;align-items:flex-start}
.footer-logo{
  width:230px;height:auto;overflow:visible;filter:none;background:#fff;
  border-radius:18px;padding:8px 12px
}
.footer-logo img{
  width:100%;height:auto;max-height:64px;object-fit:contain;object-position:left center
}
.footer-links{display:flex;gap:20px;flex-wrap:wrap;color:#c8d9d2}
.footer-links a:hover{color:white}
.foot{
  border-top:1px solid rgba(255,255,255,.13);margin-top:38px;padding-top:20px;
  color:#91a69e;display:flex;justify-content:space-between;gap:20px
}

/* reveal animations */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .75s var(--ease),transform .75s var(--ease)}
.reveal.show{opacity:1;transform:none}
.reveal-delay-1{transition-delay:.08s}.reveal-delay-2{transition-delay:.16s}.reveal-delay-3{transition-delay:.24s}

/* page transition */
.page-transition{
  position:fixed;inset:0;z-index:5000;background:var(--mint-4);
  transform:translateY(100%);pointer-events:none
}
.page-transition.enter{animation:pageEnter .6s var(--ease)}
@keyframes pageEnter{0%{transform:translateY(0)}100%{transform:translateY(-100%)}}

/* responsive */
@media(max-width:1040px){
  .links{
    position:absolute;top:88px;left:20px;right:20px;
    background:rgba(255,255,255,.96);backdrop-filter:blur(20px);
    border:1px solid var(--line);border-radius:24px;padding:22px;
    display:flex;flex-direction:column;align-items:flex-start;
    opacity:0;pointer-events:none;transform:translateY(-10px);
    transition:.25s var(--ease);box-shadow:var(--shadow)
  }
  .links.open{opacity:1;pointer-events:auto;transform:none}
  .links a{padding:6px 0}.links a::after{bottom:-3px}
  .menu{display:block}.nav-cta{display:none}
  .hero-grid,.split,.contact{grid-template-columns:1fr}
  .hero-note{left:20px}
  .grid-3{grid-template-columns:1fr}
  .list-grid{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
  .gallery img:nth-child(2){margin-top:0}
}
@media(max-width:680px){
  .wrap{padding:0 18px}
  nav{height:76px}.logo{width:170px;height:54px}.logo img{width:170px;max-height:50px}.links{top:76px}
  .hero{padding:62px 0 56px}
  .hero h1{font-size:51px}
  .hero p{font-size:16px}
  .hero-grid{gap:38px}
  .hero-media{border-radius:28px}
  .hero-note{position:static;margin-top:12px;max-width:none}
  .section{padding:80px 0}
  .section-head{display:block}
  .section-head .lead{margin-top:18px}
  .split img{height:420px}
  .row{grid-template-columns:1fr}
  .news-item{grid-template-columns:1fr}.news-item time{margin-top:4px}
  .footer-top{flex-direction:column}
  .foot{flex-direction:column}
}

/* LOGO FIX V2 */
header nav { min-height: 104px; }
header .logo{
  width: 285px !important;
  height: 88px !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  overflow: visible !important;
  display: flex !important;
  align-items: center !important;
}
header .logo img{
  width: 285px !important;
  height: 82px !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: left center !important;
  background: transparent !important;
}

/* Apačioje pašalinam baltą dėžutę – paliekam tvarkingą logotipo zoną */
footer .footer-logo{
  width: 270px !important;
  height: 86px !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  display: block !important;
  position: relative !important;
}
footer .footer-logo img{
  width: 270px !important;
  height: 86px !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: left center !important;
  background: white !important;
  border-radius: 14px !important;
}

@media(max-width:1040px){
  header nav{min-height:88px}
  header .logo{width:220px !important;height:72px !important}
  header .logo img{width:220px !important;height:68px !important}
}
@media(max-width:680px){
  header nav{min-height:78px}
  header .logo{width:185px !important;height:60px !important}
  header .logo img{width:185px !important;height:56px !important}
  footer .footer-logo{width:230px !important;height:76px !important}
  footer .footer-logo img{width:230px !important;height:76px !important}
}

/* LOGO TUNING V3 */

/* Viršuje – dar didesnis logotipas */
header nav{
  min-height:112px !important;
}
header .logo{
  width:325px !important;
  height:94px !important;
}
header .logo img{
  width:325px !important;
  height:90px !important;
  object-fit:contain !important;
  object-position:left center !important;
}

/* Apačioje – mažiau balto ploto aplink patį logotipą */
footer .footer-logo{
  width:235px !important;
  height:66px !important;
  padding:0 !important;
  border-radius:11px !important;
  overflow:hidden !important;
  background:#fff !important;
}
footer .footer-logo img{
  width:235px !important;
  height:66px !important;
  padding:0 !important;
  margin:0 !important;
  object-fit:cover !important;
  object-position:center center !important;
  border-radius:11px !important;
  background:#fff !important;
}

@media(max-width:1040px){
  header nav{min-height:94px !important}
  header .logo{width:265px !important;height:78px !important}
  header .logo img{width:265px !important;height:74px !important}
}
@media(max-width:680px){
  header nav{min-height:82px !important}
  header .logo{width:215px !important;height:66px !important}
  header .logo img{width:215px !important;height:62px !important}
  footer .footer-logo{width:215px !important;height:60px !important}
  footer .footer-logo img{width:215px !important;height:60px !important}
}

/* HEADER / LOGO FINAL FIX */
header nav{
  height:98px !important;
  min-height:98px !important;
  gap:24px !important;
}
header .logo{
  width:220px !important;
  height:72px !important;
  min-width:220px !important;
  display:flex !important;
  align-items:center !important;
  overflow:visible !important;
}
header .logo img{
  width:220px !important;
  height:72px !important;
  max-height:none !important;
  object-fit:contain !important;
  object-position:left center !important;
  background:transparent !important;
}
header .links{
  gap:22px !important;
}
header .links a{
  white-space:nowrap !important;
  line-height:1 !important;
}
header .nav-cta{
  white-space:nowrap !important;
  padding-left:24px !important;
  padding-right:24px !important;
}

/* Footer uses the same clean logo without the small words */
footer .footer-logo{
  width:230px !important;
  height:auto !important;
  padding:10px 14px !important;
  background:#fff !important;
  border-radius:14px !important;
  overflow:hidden !important;
}
footer .footer-logo img{
  width:100% !important;
  height:auto !important;
  max-height:76px !important;
  object-fit:contain !important;
  background:#fff !important;
  border-radius:0 !important;
}

@media(max-width:1180px){
  header .links{gap:15px !important}
  header .links a{font-size:13px !important}
  header .logo{width:195px !important;min-width:195px !important}
  header .logo img{width:195px !important}
  header .nav-cta{padding-left:18px !important;padding-right:18px !important}
}
@media(max-width:1040px){
  header nav{height:88px !important;min-height:88px !important}
  header .logo{width:210px !important;height:66px !important;min-width:210px !important}
  header .logo img{width:210px !important;height:66px !important}
}
@media(max-width:680px){
  header nav{height:80px !important;min-height:80px !important}
  header .logo{width:185px !important;height:58px !important;min-width:185px !important}
  header .logo img{width:185px !important;height:58px !important}
}

/* NEWS ARCHIVE */
.news-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:42px}
.news-card{display:flex;flex-direction:column;background:#fff;border:1px solid var(--line);border-radius:26px;overflow:hidden;transition:.28s var(--ease);box-shadow:0 12px 36px rgba(22,68,51,.05)}
.news-card:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.news-card-media{aspect-ratio:4/3;overflow:hidden;background:#f1f6f4}
.news-card-media img{width:100%;height:100%;object-fit:cover;transition:transform .5s var(--ease)}
.news-card:hover .news-card-media img{transform:scale(1.035)}
.news-card-body{padding:22px;display:flex;flex-direction:column;gap:10px;flex:1}
.news-card time{font-size:12px;letter-spacing:.08em;color:var(--mint-2);font-weight:700}
.news-card h3{font-size:20px;line-height:1.22;margin:0;letter-spacing:-.02em}
.news-card .read{margin-top:auto;padding-top:10px;color:var(--mint-2);font-weight:700;font-size:14px}
.news-article{max-width:980px;margin:auto}
.news-article h1{font-size:clamp(42px,5vw,72px);line-height:1.02;letter-spacing:-.05em;margin:0 0 18px;font-weight:500}
.news-article .news-date{color:var(--mint-2);font-size:14px;font-weight:700;letter-spacing:.08em}
.news-hero-image{margin:34px 0;border-radius:30px;overflow:hidden;background:#f2f7f5;box-shadow:var(--shadow)}
.news-hero-image img{width:100%;height:auto;max-height:780px;object-fit:contain;background:#fff}
.news-copy{font-size:18px;color:#53605a;max-width:800px}
.news-gallery{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin-top:30px}
.news-gallery img{width:100%;height:420px;object-fit:cover;border-radius:22px}
.archive-note{margin-top:28px;padding:18px 20px;border-radius:18px;background:var(--mint-4);color:#58665f;border:1px solid var(--line)}
@media(max-width:900px){.news-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:620px){.news-grid{grid-template-columns:1fr}.news-gallery{grid-template-columns:1fr}.news-gallery img{height:auto}}

/* 1,2 % PARAMA */
.support-visual{
  min-height:430px;border-radius:42px;
  background:linear-gradient(145deg,#dff4ec,#79c9ad);
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  padding:48px;text-align:center;box-shadow:var(--shadow-strong);position:relative;overflow:hidden
}
.support-visual:before,.support-visual:after{
  content:"";position:absolute;border:1px solid rgba(255,255,255,.38);border-radius:50%
}
.support-visual:before{width:340px;height:340px;right:-90px;top:-100px}
.support-visual:after{width:220px;height:220px;left:-70px;bottom:-90px}
.support-mark{font-size:120px;line-height:.9;letter-spacing:-.08em;color:#173d31;font-weight:500;position:relative;z-index:2}
.support-mark span{font-size:.42em;margin-left:8px}
.support-visual p{max-width:330px;font-size:17px;color:#315b4d;position:relative;z-index:2;margin-top:28px}
.support-grid{display:grid;grid-template-columns:.82fr 1.18fr;gap:70px;align-items:start}
.support-card{background:#fff;border:1px solid var(--line);border-radius:30px;padding:30px;box-shadow:var(--shadow)}
.support-row{display:grid;grid-template-columns:.8fr 1.2fr;gap:20px;padding:17px 0;border-bottom:1px solid var(--line)}
.support-row span{color:var(--muted);font-size:14px}
.support-row strong{text-align:right;font-size:15px;overflow-wrap:anywhere}
.copy-support{margin-top:24px}
.support-cta{border:1px solid var(--line);border-radius:32px;padding:42px;background:linear-gradient(135deg,#f4fbf8,#fff);display:flex;align-items:center;justify-content:space-between;gap:30px}
.support-cta h2{margin-bottom:0}
@media(max-width:900px){.support-grid{grid-template-columns:1fr}.support-cta{display:block}.support-cta .btn{margin-top:24px}}
@media(max-width:620px){.support-mark{font-size:88px}.support-row{grid-template-columns:1fr;gap:4px}.support-row strong{text-align:left}}

/* HOME — NEW MINDIFY PHOTO PAIR */
.home-photo-section{padding-top:30px}
.home-photo-heading{max-width:720px;margin-bottom:34px}
.home-photo-heading h2{margin-bottom:0}
.home-photo-pair{
  display:grid;
  grid-template-columns:1.45fr .82fr;
  gap:20px;
  align-items:stretch;
}
.home-photo{
  margin:0;
  overflow:hidden;
  border-radius:32px;
  background:#eef6f2;
  box-shadow:0 18px 55px rgba(18,55,43,.10);
}
.home-photo img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .7s var(--ease);
}
.home-photo:hover img{transform:scale(1.025)}
.home-photo-wide{height:620px}
.home-photo-wide img{object-position:center center}
.home-photo-portrait{height:620px}
.home-photo-portrait img{object-position:center center}
@media(max-width:900px){
  .home-photo-pair{grid-template-columns:1fr 1fr}
  .home-photo-wide,.home-photo-portrait{height:500px}
}
@media(max-width:650px){
  .home-photo-pair{grid-template-columns:1fr}
  .home-photo-wide{height:330px}
  .home-photo-portrait{height:520px}
}
