/* ============================================================
   FIRST EURO — style.css
   Brand colors: Dark Navy #1C2660 | Light Grey #f6f7fc
   ============================================================ */

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

:root {
  --navy:       #0D1540;
  --navy-deep:  #0D1540;
  --navy-mid:   #0D1540;
  --blue:       #0D1540;
  --blue-lt:    #0D1540;
  --white:      #dde0ed;
  --off:        #dde0ed;
  --gray-line:  #b0b6cc;
  --gray-mid:   #b0b6cc;
  --gray-text:  #dde0ed;
  --ease:       cubic-bezier(0.4,0,0.2,1);
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  font-family: 'Montserrat', sans-serif;
  background: var(--navy-deep);
  color: var(--off);
  overflow-x: hidden;
}

main {
  flex: 1 0 auto;
}

/* =====================================================================
   NAVBAR
===================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 130px;
  background: var(--off);
  border-bottom: 2px solid var(--navy-deep);
  display: flex;
  align-items: center;
  padding: 1rem 3vw;
  gap: 1.5rem;
  box-shadow: 0 2px 12px rgba(28,38,96,0.15);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  height: auto;
  max-height: 110px;
  width: auto;
  display: block;
}

.nav-tabs {
  display: flex;
  gap: 0.2rem;
  margin-left: auto;
}

.tab-btn {
  background: none;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-deep);
  padding: 0.6rem 1.3rem;
  cursor: pointer;
  border-radius: 3px;
  position: relative;
  transition: color 0.25s var(--ease);
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--navy-deep);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}

.tab-btn:hover              { color: var(--navy-deep); }
.tab-btn:hover::after       { width: 55%; }
.tab-btn.active             { color: var(--off); background: var(--navy-deep); }
.tab-btn.active::after      { width: 55%; }

.nav-slogan {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--navy-deep);
  white-space: nowrap;
  padding-left: 1rem;
  border-left: 2px solid var(--gray-line);
  text-transform: none;
}

/* =====================================================================
   TAB PANELS
===================================================================== */
.tab-panel          { display: none; }
.tab-panel.active   { display: block; animation: panelIn 0.4s ease; }

@keyframes panelIn {
  from { opacity:0; transform: translateY(10px); }
  to   { opacity:1; transform: translateY(0); }
}

/* =====================================================================
   HOME — HERO
===================================================================== */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  min-height: calc(100vh - 130px);
  background: var(--navy-deep);
  padding: 4rem 5vw 3rem;
  position: relative;
  overflow: hidden;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--off);
  margin-bottom: 2rem;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--off);
  border-radius: 100px;
  background: transparent;
}

.hero-text-logo {
  width: 100%;
  max-width: 650px;
  height: auto;
  margin-bottom: 2rem;
  animation: cinematicImageReveal 1.2s cubic-bezier(0.19, 1, 0.22, 1) both;
  will-change: transform, opacity, filter;
}

@keyframes cinematicImageReveal {
  0% { 
    opacity: 0; 
    transform: scale(1.12) translateY(25px); 
    filter: blur(10px); 
  }
  100% { 
    opacity: 1; 
    transform: scale(1) translateY(0); 
    filter: blur(0); 
  }
}

.hero-serif {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--off);
  letter-spacing: 0.1em;
  margin-top: 1.5rem;
}

.hero-body {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--off);
  margin-top: 1.8rem;
  max-width: 680px;
}

.hero-btns {
  display: flex;
  gap: 1.25rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ─── Buttons ─── */
.btn-primary {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--navy-deep);
  color: var(--off);
  border: 2px solid var(--navy-deep);
  padding: 0.85rem 2rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s, transform 0.2s;
}

.btn-primary:hover {
  background: transparent;
  color: var(--navy-deep);
  transform: translateY(-2px);
}

.btn-outline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: transparent;
  color: var(--off);
  border: 2px solid var(--off);
  padding: 0.85rem 2rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s, transform 0.2s;
}

.btn-outline:hover {
  background: var(--off);
  color: var(--navy-deep);
  transform: translateY(-2px);
}

/* =====================================================================
   PAGE BANNER (inner pages)
===================================================================== */
.page-banner {
  background: var(--off);
  height: 120px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--navy-deep);
}

.page-banner-inner {
  position: relative;
  z-index: 1;
  padding: 1.5rem 5vw 1.5rem;
  color: var(--navy-deep);
}

.banner-eyebrow {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin-bottom: 0.35rem;
}

.page-banner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.07em;
  color: var(--navy-deep);
  line-height: 1;
}

.banner-line {
  width: 56px;
  height: 3px;
  background: var(--navy-deep);
  margin-top: 0.75rem;
  border-radius: 2px;
}

/* =====================================================================
   PAGE BODY (shared)
===================================================================== */
.page-body {
  padding: 3.5rem 5vw;
  max-width: 1120px;
  margin: 0 auto;
}

/* =====================================================================
   COLLECTION PAGE
===================================================================== */
.collection-minimal {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 45vh;
}

.minimal-msg-card {
  text-align: center;
  background: var(--off);
  border: 1px solid var(--gray-line);
  padding: 4rem 3rem;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  max-width: 620px;
  width: 100%;
}

.mm-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}
.mm-icon svg {
  stroke: var(--navy-deep);
}

.minimal-msg-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--navy-deep);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.mm-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy-deep);
  line-height: 1.7;
}

.mt-4 {
  margin-top: 2rem;
  display: inline-block;
  text-decoration: none;
}

/* =====================================================================
   CONTACT PAGE
===================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-card {
  background: var(--off);
  border: 1px solid var(--gray-line);
  border-top: 3px solid var(--navy-deep);
  border-radius: 4px;
  padding: 2.25rem;
  box-shadow: 0 10px 32px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover { transform: translateY(-4px); }

.contact-wide { grid-column: 1 / -1; }

.cc-icon { margin-bottom: 1rem; }
.cc-icon svg path, .cc-icon svg circle, .cc-icon svg rect {
  stroke: var(--navy-deep);
}

.contact-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.07em;
  color: var(--navy-deep);
  margin-bottom: 0.9rem;
}

.contact-card address {
  font-style: normal;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 2;
  color: var(--navy-deep);
}

.cd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem 2.5rem;
}

.cd-row { display: flex; flex-direction: column; gap: 0.2rem; }

.cd-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--navy-deep);
}

.cd-value {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy-deep);
  text-decoration: none;
  line-height: 1.8;
}

.cd-value.link:hover { color: var(--navy-deep); text-decoration: underline; }

/* =====================================================================
   FOOTER
===================================================================== */
.footer {
  flex-shrink: 0;
  background: var(--off);
  padding: 3rem 2.5rem;
  text-align: center;
  border-top: 1px solid var(--navy-deep);
}

.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }

.footer-sep {
  width: 60px;
  height: 3px;
  background: var(--navy-deep);
  border-radius: 2px;
}

.footer-copy {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--navy-deep);
  line-height: 1.8;
}

.footer-email a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-deep);
  text-decoration: none;
}
.footer-email a:hover { text-decoration: underline; }

/* =====================================================================
   RESPONSIVE
===================================================================== */
@media (max-width: 960px) {
  .hero { min-height: calc(100svh - 130px); padding: 4rem 5vw; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-wide { grid-column: 1; }
}

@media (max-width: 640px) {
  .navbar {
    height: auto;
    min-height: 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem 0;
  }

  .nav-brand {
    width: 100%;
    justify-content: center;
  }

  .nav-logo {
    display: flex;
    justify-content: center;
  }

  .logo-img {
    max-height: 88px;
  }

  .nav-brand .nav-slogan { display: none; }

  .nav-tabs {
    order: 3;
    width: calc(100% + 2rem);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 0 -1rem;
  }

  .tab-btn {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.3rem;
    font-size: clamp(0.58rem, 2.45vw, 0.68rem);
    line-height: 1.15;
    letter-spacing: 0.08em;
    text-align: center;
    border-radius: 0;
  }

  .tab-btn::after {
    bottom: 0;
    height: 2px;
  }

  .hero {
    justify-content: center;
    min-height: clamp(460px, calc(100svh - 150px), 640px);
    padding: 3rem 1rem 3.75rem;
  }

  .hero-text {
    width: 100%;
  }

  .eyebrow {
    max-width: 100%;
    margin-bottom: 2.25rem;
    padding: 0.48rem 1rem;
    font-size: 0.68rem;
    line-height: 1.2;
    letter-spacing: 0.24em;
  }

  .hero-text-logo {
    max-width: 94vw;
    margin-bottom: 0;
  }

  .page-banner {
    height: 94px;
    align-items: center;
  }

  .page-banner-inner {
    width: 100%;
    padding: 1.25rem 1rem;
  }

  .page-banner h2 {
    font-size: 2rem;
    line-height: 0.95;
  }

  .banner-line {
    width: 48px;
    margin-top: 0.65rem;
  }

  .page-body {
    padding: 2rem 1rem;
  }

  .collection-minimal {
    min-height: 0;
    align-items: flex-start;
  }

  .minimal-msg-card {
    padding: 2rem 1.15rem;
    border-radius: 4px;
  }

  .minimal-msg-card h3 {
    font-size: 1.9rem;
    line-height: 1;
  }

  .mm-lead {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .btn-primary {
    width: 100%;
    padding: 0.85rem 1rem;
    line-height: 1.3;
  }

  .cd-grid { grid-template-columns: 1fr; }

  .contact-grid {
    gap: 1rem;
  }

  .contact-card {
    padding: 1.45rem 1.15rem;
  }

  .contact-card h3 {
    font-size: 1.65rem;
    line-height: 1;
  }

  .contact-card address,
  .cd-value {
    font-size: 0.96rem;
    line-height: 1.75;
    overflow-wrap: anywhere;
  }

  .cd-label {
    letter-spacing: 0.18em;
  }

  .footer {
    padding: 2.25rem 1rem;
  }
}

@media (max-width: 360px) {
  .navbar {
    padding-top: 0.7rem;
  }

  .logo-img {
    max-height: 78px;
  }

  .tab-btn {
    min-height: 48px;
    font-size: 0.56rem;
    letter-spacing: 0.06em;
  }

  .eyebrow {
    font-size: 0.63rem;
    letter-spacing: 0.2em;
  }
}
