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

:root{
  --bg:#f6f1e8;
  --sand:#fbf7f2;
  --white:#ffffff;
  --ink:#0b2630;
  --muted:#3f5963;
  --deep:#063540;
  --deep-2:#092a33;
  --teal:#16717c;
  --teal-dark:#0b5660;
  --teal-soft:#e6f3f4;
  --coral:#c95f45;
  --coral-dark:#a94631;
  --gold:#b87919;
  --gold-soft:#fff1d6;
  --hero-text:#ffffff;
  --hero-muted:#edf9fb;
  --shadow:0 14px 34px rgba(6,35,43,.12);
  --shadow-lg:0 24px 60px rgba(6,35,43,.22);
  --radius:22px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Manrope',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  background:linear-gradient(180deg,#fff 0%,var(--sand) 54%,#fff 100%);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{color:inherit;text-decoration:none;text-underline-offset:4px}
img{display:block;max-width:100%;height:auto}
.container{width:min(100% - 24px,1180px);margin:0 auto}
.section{padding:56px 0}
.section-tight{padding:42px 0}
.center{text-align:center}

h1,h2,h3,h4{
  font-family:'Sora','Manrope',sans-serif;
  letter-spacing:-.045em;
  margin:0 0 12px;
  color:var(--ink);
}
h1{font-size:clamp(2.55rem,13vw,4rem);line-height:1.02}
h2{font-size:clamp(2rem,9vw,3.1rem);line-height:1.03}
h3{font-size:1.38rem;line-height:1.1}
p{margin:0 0 16px;line-height:1.68}
.lead{font-size:1.02rem;line-height:1.72;color:var(--muted)}
.small{font-size:.94rem}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  max-width:100%;
  padding:8px 12px;
  border-radius:999px;
  background:var(--teal-soft);
  color:var(--teal-dark);
  font-weight:900;
  letter-spacing:.07em;
  text-transform:uppercase;
  font-size:.72rem;
}
.eyebrow:before{
  content:"";
  flex:0 0 auto;
  width:9px;
  height:9px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--coral),var(--gold));
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
  min-height:48px;
  border:0;
  border-radius:999px;
  padding:14px 20px;
  font-weight:900;
  cursor:pointer;
  transition:transform .18s ease,box-shadow .18s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:linear-gradient(135deg,var(--coral-dark),var(--coral));
  color:#fff;
  box-shadow:0 14px 30px rgba(169,70,49,.28);
}
.btn-secondary{
  background:#fff;
  color:var(--ink);
  box-shadow:inset 0 0 0 2px rgba(11,38,48,.12),0 10px 24px rgba(6,35,43,.08);
}
.btn-ghost{
  background:rgba(255,255,255,.18);
  color:#fff;
  box-shadow:inset 0 0 0 2px rgba(255,255,255,.38);
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn:focus-visible{
  outline:4px solid rgba(184,121,25,.55);
  outline-offset:4px;
  border-radius:12px;
}

/* Mobile-first header */
.topbar{
  background:var(--deep-2);
  color:#fff;
  font-size:.82rem;
}
.topbar .container{
  display:flex;
  justify-content:center;
  text-align:center;
  gap:10px;
  padding:9px 0;
}
.topbar .container span:last-child{display:none}
.topbar a{font-weight:900;color:#fff}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(25,50,58,.08);
  box-shadow:0 8px 28px rgba(16,40,48,.06);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  position:relative;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}
.brand img{
  width:54px;
  height:54px;
  object-fit:contain;
  border-radius:14px;
  background:#fff;
  box-shadow:0 8px 20px rgba(16,40,48,.12);
  padding:5px;
}
.brand-text{
  display:flex;
  flex-direction:column;
  min-width:0;
  line-height:1;
}
.brand-text strong{
  font-family:'Sora','Manrope',sans-serif;
  font-size:1.05rem;
  letter-spacing:-.04em;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:185px;
}
.brand-text small{
  display:none;
}
.menu-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--deep);
  color:#fff;
  border:0;
  border-radius:13px;
  padding:11px 13px;
  font-weight:900;
}
.nav-links,
.nav-actions{display:none}
.nav.open .nav-links{
  display:flex;
  position:absolute;
  left:0;
  right:0;
  top:calc(100% + 8px);
  flex-direction:column;
  align-items:stretch;
  gap:6px;
  padding:14px;
  background:#fff;
  border:1px solid rgba(11,38,48,.10);
  border-radius:20px;
  box-shadow:var(--shadow-lg);
}
.nav.open .nav-links a{
  padding:12px 14px;
  border-radius:14px;
  font-weight:900;
  color:var(--ink);
}
.nav.open .nav-links a:hover,
.nav.open .nav-links a.active{
  background:var(--teal-soft);
  color:var(--teal-dark);
}
.nav.open .nav-actions{
  display:flex;
  position:absolute;
  left:0;
  right:0;
  top:calc(100% + 250px);
  flex-direction:column;
  gap:10px;
  padding:14px;
  background:#fff;
  border:1px solid rgba(11,38,48,.10);
  border-radius:20px;
  box-shadow:var(--shadow-lg);
}
.phone-link{
  display:flex;
  justify-content:center;
  padding:12px;
  font-weight:950;
  color:var(--deep);
}

/* Mobile-first hero */
.hero{
  color:#fff;
  background:
    linear-gradient(180deg,rgba(6,35,43,.96),rgba(6,35,43,.84) 55%,rgba(6,35,43,.70)),
    radial-gradient(circle at 75% 5%,rgba(201,95,69,.30),transparent 34%),
    radial-gradient(circle at 12% 8%,rgba(22,113,124,.32),transparent 30%),
    linear-gradient(135deg,#063540 0%,#0a515d 52%,#177783 100%);
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:28px;
  padding:42px 0 54px;
}
.hero h1,
.hero h2,
.hero h3,
.hero h4{
  color:#fff;
  text-shadow:0 3px 20px rgba(0,0,0,.30);
}
.hero .lead,
.hero p{
  color:var(--hero-muted);
  text-shadow:0 2px 12px rgba(0,0,0,.22);
}
.hero .eyebrow{
  background:#fff;
  color:var(--teal-dark);
  box-shadow:0 12px 26px rgba(0,0,0,.18);
  margin-bottom:14px;
}
.cta-row{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  margin:24px 0;
}
.hero-points{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}
.pill{
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.28);
  padding:14px 15px;
  border-radius:18px;
}
.pill strong{display:block;color:#fff;font-size:1rem}
.pill span{display:block;color:#eef9fb;font-size:.92rem;margin-top:4px}

.hero-card,
.image-card,
.gallery-item{
  border-radius:22px;
  overflow:hidden;
  background:#fff;
  box-shadow:var(--shadow-lg);
  border:1px solid rgba(11,38,48,.08);
}
.hero-card img,
.image-card img{
  width:100%;
  height:auto;
  object-fit:cover;
}
.caption-row{
  display:grid;
  gap:8px;
  padding:15px;
  color:#334b55;
  font-size:.9rem;
}
.highlight{color:var(--coral-dark)}

/* Mobile-first grids and cards */
.split-grid,
.feature-grid,
.content-grid,
.contact-grid,
.profile-grid,
.gallery-grid,
.card-grid,
.metric-row,
.inline-photo-strip,
.two-col-list,
.detail-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}
.panel,
.card,
.quote,
.cta-panel,
.modern-band,
.detail-tile{
  background:#fff;
  border:1px solid rgba(11,38,48,.10);
  border-radius:22px;
  box-shadow:var(--shadow);
}
.panel,
.card,
.quote,
.detail-tile{
  padding:22px;
}
.card .icon{
  width:48px;
  height:48px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,rgba(22,113,124,.12),rgba(201,95,69,.12));
  font-size:1.25rem;
  margin-bottom:14px;
}
.card p,
.quote p,
.gallery-item p,
.detail-tile span,
.check span,
.list-item span,
.metric span{
  color:var(--muted);
}
.detail-tile strong{
  display:block;
  font-family:'Sora','Manrope',sans-serif;
  font-size:1.02rem;
  margin-bottom:8px;
  color:var(--ink);
}
.list{
  display:grid;
  gap:12px;
  margin-top:18px;
}
.list-item,
.check{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px;
  border-radius:18px;
}
.list-item{background:#edf7f8}
.check{background:#fff2da}
.list-item b,
.check strong{
  display:block;
  margin-bottom:3px;
  color:var(--ink);
}
.metric{
  background:linear-gradient(180deg,#edf7f8,#fff2da);
  border-radius:18px;
  padding:16px;
}
.metric strong{
  display:block;
  font-family:'Sora','Manrope',sans-serif;
  color:var(--ink);
  font-size:1.25rem;
  margin-bottom:4px;
}
.modern-band{
  background:linear-gradient(135deg,#edf7f8,#fff2da);
  padding:22px;
}
.note{
  font-size:.94rem;
  color:#2f4650;
  padding:14px;
  border-left:4px solid var(--gold);
  background:#fff2da;
  border-radius:14px;
  margin-top:16px;
}
.profile-badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}
.badge{
  padding:10px 13px;
  border-radius:999px;
  background:var(--teal-soft);
  font-weight:900;
  color:var(--teal-dark);
  font-size:.84rem;
}

/* Page sections */
.page-hero{
  background:
    linear-gradient(180deg,rgba(6,35,43,.95),rgba(6,35,43,.78)),
    linear-gradient(135deg,#063540 0%,#166f7a 100%);
  color:#fff;
  padding:48px 0 42px;
}
.page-hero h1,
.page-hero h2,
.page-hero h3{
  color:#fff;
  text-shadow:0 3px 18px rgba(0,0,0,.24);
}
.page-hero .lead,
.page-hero p{color:#eef9fb}
.page-hero .eyebrow,
.section-dark .eyebrow{
  background:#fff;
  color:var(--teal-dark);
}
.section-dark{
  background:var(--deep);
  color:#fff;
}
.section-dark h2,
.section-dark h3,
.section-dark h4{color:#fff}
.section-dark p,
.section-dark .lead,
.section-dark .card p{color:rgba(255,255,255,.82)}
.section-dark .card{
  background:rgba(255,255,255,.09);
  border-color:rgba(255,255,255,.16);
  box-shadow:none;
}
.section-dark .icon{
  background:rgba(255,255,255,.14);
  color:#fff;
}

.gallery-item img{
  width:100%;
  height:auto;
  aspect-ratio:4/3;
  object-fit:cover;
}
.gallery-item div{padding:18px}
.inline-photo-strip img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:18px;
  box-shadow:var(--shadow);
}

/* Forms */
.form{
  display:grid;
  gap:13px;
}
.form input,
.form textarea,
.form select{
  width:100%;
  min-height:48px;
  padding:14px 15px;
  border-radius:15px;
  border:2px solid rgba(11,38,48,.14);
  font:inherit;
  color:var(--ink);
  background:#fff;
}
.form textarea{
  min-height:142px;
  resize:vertical;
}
.form input::placeholder,
.form textarea::placeholder{
  color:#657a83;
  opacity:1;
}
.panel a:not(.btn),
.card a:not(.btn),
.contact-card a{
  color:var(--teal-dark);
  font-weight:900;
  text-decoration:underline;
}

/* CTA and footer */
.cta-panel{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
  padding:24px;
  color:#fff;
  background:linear-gradient(135deg,var(--deep),#1a5f69);
}
.cta-panel h2{color:#fff}
.cta-panel p{color:rgba(255,255,255,.86)}
.cta-panel > div:last-child{text-align:left!important}

.footer{
  background:#061d25;
  color:rgba(255,255,255,.84);
  padding:44px 0 24px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:26px;
}
.footer h4{
  color:#fff;
  margin-bottom:10px;
}
.footer a{
  display:block;
  margin:9px 0;
  color:#eef9fb;
}
.footer a:hover{color:#fff;text-decoration:underline}
.footer p,
.footer-bottom{
  color:rgba(255,255,255,.82);
}
.footer-logo{
  width:104px;
  border-radius:16px;
  background:#fff;
  padding:8px;
  box-shadow:0 8px 24px rgba(0,0,0,.16);
  margin-bottom:14px;
}
.footer-bottom{
  display:flex;
  flex-direction:column;
  gap:8px;
  border-top:1px solid rgba(255,255,255,.14);
  margin-top:28px;
  padding-top:18px;
  font-size:.9rem;
}

/* Tablet and up */
@media (min-width:640px){
  .container{width:min(100% - 36px,1180px)}
  .btn{width:auto}
  .cta-row{display:flex;flex-wrap:wrap}
  .hero-points,
  .metric-row,
  .detail-grid,
  .two-col-list,
  .inline-photo-strip{
    grid-template-columns:repeat(2,1fr);
  }
  .card-grid,
  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .caption-row{
    grid-template-columns:1.2fr .8fr;
    align-items:center;
  }
  .footer-bottom{
    flex-direction:row;
    justify-content:space-between;
  }
}

/* Desktop */
@media (min-width:960px){
  :root{--radius:28px}
  .section{padding:84px 0}
  .section-tight{padding:54px 0}
  h1{font-size:clamp(4.4rem,7vw,5.8rem);line-height:.94}
  h2{font-size:clamp(3rem,5vw,4.1rem);line-height:.96}
  h3{font-size:1.55rem}
  .topbar .container{
    justify-content:space-between;
    text-align:left;
  }
  .topbar .container span:last-child{display:inline}
  .nav{padding:14px 0}
  .brand img{width:74px;height:74px}
  .brand-text strong{font-size:1.65rem;max-width:none}
  .brand-text small{
    display:block;
    font-weight:900;
    color:var(--coral);
    letter-spacing:.18em;
    text-transform:uppercase;
    font-size:.78rem;
    margin-top:4px;
  }
  .menu-btn{display:none}
  .nav-links{
    display:flex;
    align-items:center;
    gap:22px;
    font-weight:900;
    color:var(--ink);
  }
  .nav-links a{
    position:relative;
    padding:8px 0;
  }
  .nav-links a:after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:3px;
    border-radius:999px;
    background:linear-gradient(90deg,var(--teal),var(--coral));
    transform:scaleX(0);
    transform-origin:left;
    transition:.2s;
  }
  .nav-links a:hover:after,
  .nav-links a.active:after{transform:scaleX(1)}
  .nav-links a:hover,
  .nav-links a.active{color:var(--teal-dark)}
  .nav-actions{
    display:flex;
    align-items:center;
    gap:12px;
  }
  .hero{
    background:
      linear-gradient(90deg,rgba(6,35,43,.92),rgba(6,35,43,.76) 48%,rgba(6,35,43,.38)),
      radial-gradient(circle at 80% 8%,rgba(201,95,69,.26),transparent 30%),
      radial-gradient(circle at 15% 12%,rgba(22,113,124,.30),transparent 27%),
      linear-gradient(135deg,#063540 0%,#0a515d 52%,#177783 100%);
  }
  .hero-grid{
    grid-template-columns:1fr 1.05fr;
    align-items:center;
    gap:44px;
    padding:64px 0 78px;
  }
  .hero-points{grid-template-columns:repeat(3,1fr)}
  .split-grid{grid-template-columns:1.05fr .95fr;align-items:center}
  .feature-grid{grid-template-columns:.95fr 1.05fr;align-items:center}
  .content-grid{grid-template-columns:1.2fr .8fr;align-items:start}
  .contact-grid{grid-template-columns:1fr 1fr;align-items:start}
  .profile-grid{grid-template-columns:.9fr 1.1fr;align-items:center}
  .card-grid,
  .gallery-grid,
  .detail-grid,
  .metric-row,
  .inline-photo-strip{
    grid-template-columns:repeat(3,1fr);
  }
  .two-col-list{grid-template-columns:1fr 1fr}
  .panel,
  .card,
  .quote,
  .detail-tile{
    padding:30px;
  }
  .modern-band{padding:34px;border-radius:32px}
  .hero-card,
  .image-card,
  .gallery-item{
    border-radius:28px;
  }
  .page-hero{padding:78px 0 58px}
  .cta-panel{
    grid-template-columns:1.2fr .8fr;
    align-items:center;
    padding:38px;
  }
  .cta-panel > div:last-child{text-align:right!important}
  .footer-grid{
    grid-template-columns:1.2fr .8fr .8fr 1fr;
  }
  .footer-logo{width:118px}
  .sidebar-card{
    position:sticky;
    top:108px;
  }
}

/* Larger desktop refinements */
@media (min-width:1200px){
  .nav-links{gap:26px}
  .panel,.card,.quote,.detail-tile{padding:32px}
}

/* Version 9 mobile header polish: visible logo, name, and phone */
@media (max-width: 959px) {
  .nav {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 7px;
    padding: 8px 0;
  }

  .brand {
    display: contents;
  }

  .brand img {
    grid-column: 1;
    width: 60px;
    height: 60px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    object-fit: contain;
  }

  .brand-text {
    grid-column: 2;
    min-width: 0;
    line-height: 1.05;
  }

  .brand-text strong {
    display: block;
    max-width: 142px;
    font-size: 1rem;
    line-height: 1.05;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .brand-text small {
    display: none;
  }

  .nav-actions {
    grid-column: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    order: initial;
    gap: 0;
  }

  .nav-actions .btn {
    display: none;
  }

  .phone-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #c95f45;
    font-weight: 950;
    font-size: 0.86rem;
    white-space: nowrap;
    padding: 8px 2px;
  }

  .menu-btn {
    grid-column: 4;
    order: initial;
    padding: 10px 10px;
    border-radius: 12px;
  }

  .nav.open .nav-links {
    top: calc(100% + 8px);
  }

  .nav.open .nav-actions {
    position: static;
    display: flex;
  }
}

@media (max-width: 380px) {
  .brand img {
    width: 54px;
    height: 54px;
  }

  .brand-text strong {
    max-width: 112px;
    font-size: 0.9rem;
  }

  .phone-link {
    font-size: 0.78rem;
  }

  .menu-btn {
    padding: 9px 9px;
    font-size: 0.86rem;
  }
}
/* Mobile header: logo only + orange phone number */
@media (max-width: 959px) {
  .nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
  }

  .brand {
    display: flex;
    align-items: center;
  }

  .brand img {
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    object-fit: contain;
  }

  .brand-text {
    display: none;
  }

  .nav-actions {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nav-actions .btn {
    display: none;
  }

  .phone-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #c95f45;
    font-weight: 950;
    font-size: 0.95rem;
    white-space: nowrap;
    padding: 6px 2px;
  }

  .menu-btn {
    padding: 9px 10px;
    border-radius: 11px;
  }
}
@media (max-width: 500px) {
  .site-header {
    padding: 8px 16px !important;
  }

  .header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    min-height: 44px !important;
  }

  .brand {
    display: flex !important;
    align-items: center !important;
  }

  .brand img,
  .logo img {
    width: 50px !important;
    height: auto !important;
    display: block !important;
  }

  .header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-left: auto !important;
  }

  .header-phone {
    font-size: 4px !important;
    font-weight: 400 !important;
    color: #c9583f !important;
    white-space: nowrap !important;
    margin: 0 !important;
  }

  .menu-toggle {
    padding: 4px 6px !important;
    margin: 0 !important;
  }
}
