
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Oswald:wght@500;600;700&display=swap');

:root{
  --ink:#071017;
  --ink2:#0d1a20;
  --teal:#00a3a8;
  --deep:#007781;
  --cyan:#00d0dc;
  --white:#ffffff;
  --paper:#f7f9fa;
  --paper2:#edf3f4;
  --text:#17242a;
  --muted:#64757c;
  --line:#dce5e8;
  --max:1240px;
  --radius:22px;
  --shadow:0 22px 60px rgba(7,16,23,.12);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:Montserrat,Arial,sans-serif;color:var(--text);background:var(--white)}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(var(--max),calc(100% - 42px));margin:auto}
.eyebrow{font-size:.72rem;letter-spacing:.25em;font-weight:800;text-transform:uppercase;color:var(--teal)}
h1,h2,h3,p{margin-top:0}
h1,h2{letter-spacing:-.035em}
p{line-height:1.75;color:var(--muted)}

.site-header{
  position:sticky;top:0;z-index:60;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(14px);
}
.nav{height:86px;display:flex;align-items:center;justify-content:space-between;gap:28px}
.brand img{width:238px;height:58px;object-fit:contain}
.menu{display:flex;align-items:center;gap:30px;font-weight:600;font-size:.88rem;color:#26363d}
.menu a{position:relative;padding:31px 0}
.menu a::after{content:"";position:absolute;left:0;right:100%;bottom:19px;height:2px;background:var(--teal);transition:.2s}
.menu a:hover,.menu a.active{color:var(--ink)}
.menu a:hover::after,.menu a.active::after{right:0}
.menu-btn{display:none;background:none;border:0;color:var(--ink);font-size:1.65rem}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  min-height:48px;padding:0 23px;border-radius:999px;
  border:1px solid var(--teal);font-size:.78rem;font-weight:800;letter-spacing:.025em;
  transition:.2s ease;
}
.btn:hover{transform:translateY(-2px);box-shadow:0 12px 28px rgba(0,163,168,.16)}
.btn.primary{background:var(--teal);border-color:var(--teal);color:white}
.btn.dark{background:var(--ink);border-color:var(--ink);color:white}
.btn.outline{background:transparent;color:var(--ink)}

.hero{
  min-height:690px;position:relative;overflow:hidden;color:white;background:var(--ink);
  display:flex;align-items:center;
}
.hero::before{
  content:"";position:absolute;inset:0;
  background:
    linear-gradient(90deg,rgba(7,16,23,.98) 0%,rgba(7,16,23,.89) 38%,rgba(7,16,23,.45) 62%,rgba(7,16,23,.08) 100%),
    url('hero-v4.jpg') 74% center/cover no-repeat;
}
.hero::after{content:"";position:absolute;inset:auto 0 0;height:100px;background:linear-gradient(transparent,rgba(7,16,23,.35))}
.hero-content{position:relative;z-index:2;padding:95px 0;max-width:720px}
.hero .eyebrow{color:var(--cyan)}
.hero h1{
  font-family:Oswald,Montserrat,sans-serif;text-transform:uppercase;
  font-size:clamp(3.8rem,7vw,6.9rem);line-height:.93;margin:15px 0 24px
}
.hero h1 span{color:var(--cyan)}
.hero p{font-size:1.06rem;color:#d7e0e3;max-width:600px}
.actions{display:flex;gap:13px;flex-wrap:wrap;margin-top:30px}
.hero .btn.outline{color:white;border-color:rgba(255,255,255,.6)}

.quick-find{background:white;padding:0;position:relative;z-index:5}
.find-panel{
  margin-top:-38px;background:white;border:1px solid var(--line);border-radius:18px;
  box-shadow:var(--shadow);display:grid;grid-template-columns:1.4fr repeat(3,1fr);overflow:hidden
}
.find-main{padding:26px 30px;background:linear-gradient(135deg,#f8fbfb,#eef8f8)}
.find-main h3{font-size:1.25rem;margin:6px 0}.find-main p{margin:0;font-size:.82rem}
.find-item{padding:26px;border-left:1px solid var(--line);display:flex;align-items:center;gap:13px}
.find-icon{
  width:43px;height:43px;flex:0 0 43px;border-radius:50%;background:#e8f8f8;color:var(--teal);
  display:grid;place-items:center;font-size:1.1rem;font-weight:800
}
.find-item b{display:block;font-size:.8rem;margin-bottom:3px}.find-item span{font-size:.75rem;color:var(--muted)}

.section{padding:82px 0}
.section.white{background:white}
.section.light{background:var(--paper)}
.section.soft{background:var(--paper2)}
.section.dark{background:var(--ink);color:white}
.section.dark p{color:#aebdc3}
.section-head{display:flex;justify-content:space-between;align-items:end;gap:30px;margin-bottom:36px}
.section-head h2{font-size:clamp(2rem,4vw,3.45rem);line-height:1.05;margin:7px 0 0}
.section-head p{max-width:500px;margin-bottom:5px}

.mosaic{display:grid;grid-template-columns:1.15fr .85fr;grid-template-rows:260px 260px;gap:16px}
.photo-card{position:relative;border-radius:20px;overflow:hidden;background:#ccd6da}
.photo-card.big{grid-row:1/3}
.photo-card img{width:100%;height:100%;object-fit:cover;transition:.35s}
.photo-card:hover img{transform:scale(1.025)}
.photo-label{
  position:absolute;left:18px;bottom:16px;background:rgba(7,16,23,.83);color:white;
  padding:9px 12px;border-radius:999px;font-size:.72rem;font-weight:700;backdrop-filter:blur(8px)
}

.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.step{
  background:white;border:1px solid var(--line);border-radius:18px;padding:28px;
  box-shadow:0 8px 26px rgba(7,16,23,.05)
}
.step-num{font-family:Oswald,sans-serif;font-size:2.6rem;color:var(--teal);line-height:1}
.step h3{margin:17px 0 8px}.step p{font-size:.86rem;margin:0}

.sport-split{display:grid;grid-template-columns:1fr 1fr;gap:22px}
.sport-block{position:relative;min-height:460px;border-radius:24px;overflow:hidden;background:#111}
.sport-block img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.sport-block::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 34%,rgba(7,16,23,.9))}
.sport-copy{position:absolute;z-index:2;left:28px;right:28px;bottom:26px}
.sport-copy .eyebrow{color:var(--cyan)}.sport-copy h3{font-size:1.9rem;margin:8px 0 7px;color:white}.sport-copy p{margin:0;color:#d8e0e2}

.collections-hook{display:grid;grid-template-columns:1.1fr .9fr;gap:40px;align-items:center}
.collection-stack{position:relative;height:420px}
.collection-stack img{
  position:absolute;width:68%;height:72%;object-fit:cover;border-radius:18px;
  box-shadow:0 20px 45px rgba(7,16,23,.18);border:5px solid white
}
.collection-stack img:nth-child(1){left:0;top:4%}
.collection-stack img:nth-child(2){right:0;top:15%}
.collection-stack img:nth-child(3){left:17%;bottom:0}
.collections-hook h2{font-size:clamp(2rem,4vw,3.3rem);margin:9px 0 16px}
.note{display:inline-block;margin:12px 0 24px;padding:9px 12px;border-radius:10px;background:#e9f8f8;color:#12575b;font-size:.8rem;font-weight:600}

.about-band{display:grid;grid-template-columns:.8fr 1.2fr;gap:44px;align-items:center}
.portrait{height:470px;border-radius:24px;overflow:hidden;background:#ddd}
.portrait img{width:100%;height:100%;object-fit:cover}
.about-band h2{font-size:clamp(2rem,4vw,3.3rem);margin:8px 0 16px}

.page-hero{padding:82px 0 58px;background:linear-gradient(135deg,#f6fafb,#edf4f5);border-bottom:1px solid var(--line)}
.page-hero h1{font-family:Oswald,sans-serif;text-transform:uppercase;font-size:clamp(3rem,6vw,5rem);line-height:.95;margin:15px 0}
.page-hero p{max-width:780px}

.collection-page-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.collection-page-card{background:white;border:1px solid var(--line);border-radius:20px;overflow:hidden;box-shadow:0 10px 26px rgba(7,16,23,.06)}
.collection-page-card img{height:235px;width:100%;object-fit:cover}
.collection-page-body{padding:24px}.collection-page-body h3{font-size:1.25rem;margin:8px 0}.collection-page-body p{font-size:.84rem}
.info-strip{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}.info-box{padding:22px;border-radius:16px;background:white;border:1px solid var(--line)}.info-box b{color:var(--teal);display:block;font-size:.77rem;text-transform:uppercase;margin-bottom:6px}.info-box p{font-size:.8rem;margin:0}

.contact-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:22px}
.panel{background:white;border:1px solid var(--line);border-radius:20px;padding:30px}
.form{display:grid;gap:12px}.input{width:100%;padding:15px;border:1px solid #ccd9dd;border-radius:10px;background:#fff;font:inherit}textarea.input{min-height:145px}

footer{background:#050a0d;color:white;padding:46px 0}.footer{display:flex;justify-content:space-between;gap:30px;align-items:center}.footer img{width:238px}.fine{font-size:.73rem;color:#82939a}

@media(max-width:930px){
  .nav{height:76px}.brand img{width:210px}
  .menu{display:none;position:absolute;top:76px;left:0;right:0;padding:22px;background:white;border-bottom:1px solid var(--line);flex-direction:column;align-items:flex-start;gap:4px}
  .menu.open{display:flex}.menu a{padding:12px 0}.menu a::after{bottom:5px}.menu-btn{display:block}.nav>.btn{display:none}
  .hero{min-height:680px}.hero::before{background:linear-gradient(180deg,rgba(7,16,23,.05),rgba(7,16,23,.7) 45%,var(--ink) 83%),url('hero-v4.jpg') 62% top/auto 58% no-repeat,var(--ink)}
  .hero-content{padding:325px 0 78px}.hero h1{font-size:clamp(3.1rem,13vw,5.3rem)}
  .find-panel{grid-template-columns:1fr 1fr}.find-main{grid-column:1/3}.find-item{border-top:1px solid var(--line)}.find-item:nth-child(even){border-left:0}
  .section{padding:60px 0}.section-head{flex-direction:column;align-items:flex-start}
  .mosaic{grid-template-columns:1fr;grid-template-rows:380px 260px 260px}.photo-card.big{grid-row:auto}
  .steps,.collection-page-grid,.info-strip{grid-template-columns:1fr}
  .sport-split,.collections-hook,.about-band,.contact-grid{grid-template-columns:1fr}
  .collection-stack{height:360px;order:-1}.portrait{height:390px}
}
@media(max-width:540px){
  .container{width:min(var(--max),calc(100% - 28px))}
  .brand img{width:185px}
  .hero-content{padding-top:285px}.hero p{font-size:.93rem}.actions .btn{width:100%}
  .find-panel{grid-template-columns:1fr}.find-main{grid-column:auto}.find-item{border-left:0!important}
  .section{padding:50px 0}.mosaic{grid-template-rows:310px 220px 220px}
  .sport-block{min-height:390px}.collection-stack{height:330px}
  .footer{align-items:flex-start;flex-direction:column}
}


/* ===== V5: desktop comfort + clearer hierarchy ===== */
@media(min-width:931px){
  body{background:#fff}
  .hero{min-height:620px}
  .quick-find{background:#fff}
  .section.white{background:#fff}
  .section.light{background:#f7f9fa}
  .section.soft{background:#edf3f4}
  .section.dark{background:#0b151a}
  .site-header{box-shadow:0 4px 22px rgba(7,16,23,.04)}
  .nav{height:92px}
  .brand img{width:255px}
  .menu{font-size:.93rem;gap:34px}
  .find-panel{margin-top:-34px}
  .mosaic{grid-template-rows:300px 300px}
  .photo-card{box-shadow:0 12px 35px rgba(7,16,23,.08)}
  .sport-block{min-height:500px}
}
/* Prevent decorative/source images from leaking baked-in edge text */
.photo-card img,.sport-block img,.portrait img,.collection-page-card img{object-position:center center}


/* ===== V5.2 identity and collections refinement ===== */
.brand img{
  width:290px;
  height:66px;
  object-fit:contain;
  object-position:left center;
}
@media(min-width:931px){
  .nav{height:96px}
  .brand img{width:305px;height:72px}
}
.collection-page-grid.three{
  grid-template-columns:repeat(3,minmax(0,1fr));
}
.collection-page-card img{
  height:285px;
  object-fit:cover;
  object-position:center 32%;
}
.collection-page-card:nth-child(1) img{object-position:center 42%}
.collection-page-card:nth-child(2) img{object-position:center 35%}
.collection-page-card:nth-child(3) img{object-position:center 28%}
@media(max-width:930px){
  .brand img{width:235px;height:58px}
  .collection-page-grid.three{grid-template-columns:1fr}
  .collection-page-card img{height:260px}
}
@media(max-width:540px){
  .brand img{width:210px;height:54px}
}


/* ===== V6: definitive header/footer identity ===== */
.brand img{
  width:285px!important;
  height:68px!important;
  object-fit:contain!important;
  object-position:left center!important;
  filter:none!important;
  box-shadow:none!important;
}
.site-header{background:#fff!important}
.site-footer{
  background:#050708;
  color:#f5f7f8;
  padding:58px 0 22px;
  border-top:1px solid rgba(255,255,255,.06);
}
.footer-grid-v6{
  display:grid;
  grid-template-columns:1.35fr .65fr 1.1fr .75fr;
  gap:42px;
  align-items:start;
}
.footer-brand-v6 img{
  width:330px;
  max-width:100%;
  height:auto;
  object-fit:contain;
  filter:none!important;
}
.footer-brand-v6 p,.footer-col p{
  color:#b8c3c7;
  font-size:.84rem;
  line-height:1.7;
}
.footer-social{font-size:.78rem;color:#9cabb1}
.footer-col{display:flex;flex-direction:column;gap:12px}
.footer-col h4{
  color:#00a3a8;
  margin:7px 0 10px;
  font-size:.85rem;
  letter-spacing:.04em;
}
.footer-col a,.footer-col span{
  color:#e8edef;
  font-size:.82rem;
}
.footer-col a:hover{color:#00d0dc}
.footer-btn{
  color:#00d0dc!important;
  border-color:#00a3a8!important;
  width:max-content;
  margin-top:6px;
}
.footer-bottom-v6{
  margin-top:38px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.14);
  color:#98a6ac;
  font-size:.74rem;
  text-align:center;
}
.collection-page-card img{
  height:270px!important;
  object-fit:cover!important;
  object-position:center center!important;
}
.collection-page-card:nth-child(1) img{object-position:center 50%!important}
.collection-page-card:nth-child(2) img{object-position:center 50%!important}
.collection-page-card:nth-child(3) img{object-position:center 47%!important}

@media(min-width:931px){
  .nav{height:94px!important}
  .brand img{width:300px!important;height:72px!important}
}
@media(max-width:930px){
  .brand img{width:225px!important;height:58px!important}
  .footer-grid-v6{grid-template-columns:1fr 1fr;gap:32px}
  .footer-brand-v6{grid-column:1/3}
}
@media(max-width:540px){
  .brand img{width:205px!important;height:54px!important}
  .footer-grid-v6{grid-template-columns:1fr}
  .footer-brand-v6{grid-column:auto}
  .footer-brand-v6 img{width:280px}
  .site-footer{padding-top:42px}
}
