/* ============================================================================
   YATU PHILIPPINES — STYLESHEET
   ----------------------------------------------------------------------------
   Palette sampled directly from the EasiCoat / Rocci brand artwork:
     #023B8C  EasiCoat tin blue      #F8860C  brand orange
     #061A59  deep navy              #589FC8  cover azure
   Change colours once, in the :root block below.
   ============================================================================ */

:root {
  /* brand */
  --navy:          #061A59;
  --navy-deep:     #04123D;
  --blue:          #023B8C;
  --blue-mid:      #14539E;
  --azure:         #589FC8;
  --azure-soft:    #EAF3FA;

  --orange:        #F5860C;
  --orange-dark:   #D46E04;
  --orange-tint:   #FFF4E7;

  /* neutrals */
  --ink:           #131A24;
  --muted:         #5A6675;
  --line:          #E1E7EE;
  --bg:            #FFFFFF;
  --bg-alt:        #F4F7FA;

  --maxw:          1180px;
  --radius:        6px;
  --shadow-sm:     0 1px 2px rgba(6, 26, 89, .06);
  --shadow:        0 2px 4px rgba(6, 26, 89, .06), 0 12px 28px rgba(6, 26, 89, .09);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* --------------------------------------------------------------- reset --- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--blue); }
h1, h2, h3, h4 { line-height: 1.14; letter-spacing: -0.022em; margin: 0 0 .5em; font-weight: 800; }
h1 { font-size: clamp(2rem, 5.4vw, 3.4rem); }
h2 { font-size: clamp(1.55rem, 3.6vw, 2.3rem); }
h3 { font-size: 1.125rem; letter-spacing: -0.01em; }
p  { margin: 0 0 1rem; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 999; background: var(--navy); color: #fff; padding: .75rem 1rem; }
.skip-link:focus { left: 0; }

/* -------------------------------------------------------------- layout --- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 3.5rem 0; }
.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--navy); color: #fff; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: #B9C9DF; }

.eyebrow {
  display: block;
  font-size: .74rem; font-weight: 800; letter-spacing: .15em;
  text-transform: uppercase; color: var(--orange); margin-bottom: .7rem;
}
.section-head { max-width: 660px; margin-bottom: 2.25rem; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin-bottom: 0; }
.section--navy .section-head p { color: #B9C9DF; }
.lead { font-size: 1.14rem; color: var(--muted); }

/* -------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.55rem;
  font-size: .95rem; font-weight: 700;
  text-decoration: none; border: 2px solid transparent; border-radius: var(--radius);
  cursor: pointer; transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn--primary { background: var(--orange); color: #fff; }
.btn--primary:hover { background: var(--orange-dark); }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--outline:hover { border-color: #fff; background: rgba(255,255,255,.12); }
.btn--ghost { background: transparent; color: var(--blue); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--blue); }
.btn--whatsapp { background: #25D366; color: #05301A; }
.btn--whatsapp:hover { background: #1FB855; }
.btn--block { width: 100%; }

/* ---------------------------------------------------------------- header -- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 3px solid var(--orange);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 66px; }
.brand-lockup { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand-lockup__mark {
  width: 38px; height: 38px; flex: 0 0 38px;
  background: var(--orange); color: #fff;
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.05rem; border-radius: var(--radius);
}
.brand-lockup__text { display: flex; flex-direction: column; line-height: 1.12; }
.brand-lockup__name { color: #fff; font-weight: 800; font-size: 1rem; letter-spacing: -.012em; }
.brand-lockup__sub { color: #8EA6C6; font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; }

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 4px; justify-content: center;
  width: 44px; height: 44px; padding: 0 10px;
  background: transparent; border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--radius); cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: #fff; border-radius: 2px; }

.site-nav { display: none; }
.site-nav.is-open {
  display: block;
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--navy); border-top: 1px solid rgba(255,255,255,.12);
  padding: .5rem 1.25rem 1.25rem;
}
.site-nav ul { list-style: none; margin: 0; padding: 0; }
.site-nav a {
  display: block; padding: .8rem 0;
  color: #DCE6F4; text-decoration: none; font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--orange); }
.site-nav .nav-cta { margin-top: 1rem; border-bottom: 0; }
.site-nav .nav-cta a { border: 0; padding: 0; }

/* ------------------------------------------------------------------ hero -- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--navy) 0%, var(--blue) 78%, #14539E 100%);
  color: #fff;
  padding: 3rem 0 3.25rem;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 90% at 88% 18%, rgba(88,159,200,.32), transparent 62%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; right: -14%; bottom: -46%;
  width: 52%; height: 116%;
  background: repeating-linear-gradient(118deg, rgba(245,134,12,.34) 0 10px, transparent 10px 34px);
  transform: skewX(-12deg); pointer-events: none;
}
.hero__grid { position: relative; z-index: 1; display: grid; gap: 2.25rem; align-items: center; }
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero__sub { color: #C4D5EA; font-size: 1.08rem; max-width: 560px; margin-bottom: 1.75rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* white chips so the two brand logos read on the dark hero */
.logo-chips { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; margin-top: 2.25rem; }
.logo-chips__label {
  width: 100%; font-size: .68rem; font-weight: 800; letter-spacing: .15em;
  text-transform: uppercase; color: #8EA6C6; margin-bottom: .2rem;
}
.chip {
  background: #fff; border-radius: var(--radius);
  padding: .6rem .95rem; display: inline-flex; align-items: center;
  box-shadow: var(--shadow-sm);
}
.chip img { height: 26px; width: auto; }
.chip--sm img { height: 28px; }
.chip--lg img { height: 52px; }

.hero__media { position: relative; }
.hero__media img {
  width: 100%; border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .38);
  border: 1px solid rgba(255,255,255,.16);
}
.hero__badge {
  position: absolute; left: -.5rem; bottom: -.9rem;
  background: var(--orange); color: #fff;
  font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: .6rem 1rem; border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/* --------------------------------------------------------------- page top - */
.page-head {
  background: linear-gradient(160deg, var(--navy) 0%, var(--blue) 100%);
  color: #fff; padding: 2.75rem 0;
  position: relative; overflow: hidden;
}
.page-head::after {
  content: ""; position: absolute; right: -12%; top: -60%;
  width: 44%; height: 220%;
  background: repeating-linear-gradient(118deg, rgba(245,134,12,.26) 0 9px, transparent 9px 30px);
  transform: skewX(-12deg); pointer-events: none;
}
.page-head .wrap { position: relative; z-index: 1; }
.page-head h1 { color: #fff; margin-bottom: .5rem; }
.page-head p { color: #C4D5EA; max-width: 640px; margin-bottom: 0; }

/* ----------------------------------------------------------------- grids -- */
.grid { display: grid; gap: 1.25rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
.grid--gallery { grid-template-columns: repeat(2, 1fr); gap: .75rem; }

/* ----------------------------------------------------------------- cards -- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem;
}
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--muted); margin-bottom: 0; font-size: .95rem; }
.card--prop { border-top: 3px solid var(--orange); }

/* numbered step / value cards */
.card--num { position: relative; padding-top: 1.9rem; }
.card--num .num {
  position: absolute; top: -.85rem; left: 1.6rem;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: .9rem;
}

/* brand summary card on the home page */
.brand-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.75rem; display: flex; flex-direction: column;
}
/* align-self stops the flex column from stretching the logo out of ratio */
.brand-card__logo { height: 34px; width: auto; align-self: flex-start; margin-bottom: 1.15rem; }
.brand-card__tag {
  display: inline-block; align-self: flex-start;
  font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; background: var(--blue); padding: .28rem .6rem; border-radius: 3px;
  margin-bottom: .8rem;
}
.brand-card p { color: var(--muted); font-size: .95rem; }
.brand-card__link { margin-top: auto; padding-top: 1.1rem; font-weight: 700; text-decoration: none; }
.brand-card__link:hover { text-decoration: underline; }

/* product card */
.product-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: box-shadow .16s ease, transform .16s ease;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.product-card__media { position: relative; background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.product-card__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.product-card__code {
  position: absolute; left: .7rem; top: .7rem;
  background: var(--navy); color: #fff;
  font-size: .68rem; font-weight: 800; letter-spacing: .06em;
  padding: .3rem .55rem; border-radius: 3px;
}
.product-card__body { padding: 1.15rem 1.25rem 1.35rem; flex: 1; display: flex; flex-direction: column; }
.product-card__cat {
  font-size: .66rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
  color: var(--orange); margin-bottom: .35rem;
}
.product-card h3 { font-size: 1.05rem; margin-bottom: .45rem; }
.product-card p { color: var(--muted); font-size: .9rem; margin-bottom: .9rem; }
.product-card__specs { list-style: none; margin: auto 0 0; padding: .85rem 0 0; border-top: 1px solid var(--line); }
.product-card__specs li { font-size: .8rem; color: var(--muted); padding: .12rem 0; }

/* brand block on the products page */
.brand-block {
  display: grid; gap: 1.5rem; align-items: center;
  padding: 1.9rem; border-radius: var(--radius);
  background: var(--azure-soft); border-left: 4px solid var(--orange);
  margin-bottom: 2.25rem;
}
.brand-block__logowrap {
  background: #fff; border-radius: var(--radius); padding: 1.1rem 1.25rem;
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.brand-block__logowrap img { max-height: 46px; width: auto; }
.brand-block__tag {
  display: inline-block; font-size: .68rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: #fff; background: var(--blue);
  padding: .28rem .6rem; border-radius: 3px; margin-bottom: .7rem;
}
.brand-block p { margin-bottom: 0; color: var(--muted); }

.category-heading {
  font-size: .78rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
  color: var(--blue); margin: 2.25rem 0 1rem;
  padding-bottom: .5rem; border-bottom: 2px solid var(--line);
}

/* ---------------------------------------------------------------- gallery - */
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--bg-alt);
  margin: 0; cursor: zoom-in;
}
.gallery-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .3s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.6rem .8rem .65rem;
  background: linear-gradient(180deg, transparent, rgba(6,26,89,.88));
  color: #fff; font-size: .8rem; font-weight: 600;
}

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(4,10,30,.93);
  display: none; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(1100px, 94vw); max-height: 82vh; width: auto; border-radius: var(--radius); }
.lightbox__cap { color: #C4D5EA; text-align: center; font-size: .9rem; margin-top: .9rem; }
.lightbox__close {
  position: absolute; top: 1rem; right: 1rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.14); color: #fff; border: 0;
  font-size: 1.4rem; line-height: 1; cursor: pointer;
}
.lightbox__close:hover { background: rgba(255,255,255,.26); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.14); color: #fff; border: 0;
  font-size: 1.5rem; line-height: 1; cursor: pointer;
}
.lightbox__nav:hover { background: rgba(255,255,255,.26); }
.lightbox__nav--prev { left: 1rem; }
.lightbox__nav--next { right: 1rem; }

/* ----------------------------------------------------------------- facts -- */
.facts {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.fact { background: #fff; padding: 1.5rem 1rem; text-align: center; }
.fact__figure { font-size: 1.85rem; font-weight: 800; color: var(--orange); letter-spacing: -.02em; line-height: 1; }
.fact__label { font-size: .76rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-top: .45rem; }

/* --------------------------------------------------------- split feature -- */
.split { display: grid; gap: 2rem; align-items: center; }
.split img { border-radius: var(--radius); border: 1px solid var(--line); }
.split--navy img { border-color: rgba(255,255,255,.16); }

/* --------------------------------------------------------------- contacts - */
.contact-card {
  background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--orange);
  border-radius: var(--radius); padding: 1.6rem;
}
.contact-card h3 { margin-bottom: .15rem; }
.contact-card__region { font-size: .76rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.contact-card dl { margin: 0; }
.contact-card dt { font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: .9rem; }
.contact-card dd { margin: .15rem 0 0; font-size: .95rem; }
.contact-card a { font-weight: 600; }
.contact-card__note { margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--line); font-size: .85rem; color: var(--muted); }

/* ------------------------------------------------------------------ form -- */
.form-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .82rem; font-weight: 700; margin-bottom: .35rem; }
.field .req { color: var(--orange); }
.field input, .field select, .field textarea {
  width: 100%; padding: .78rem .85rem;
  font-family: inherit; font-size: 1rem; color: var(--ink);
  background: #fff; border: 1px solid #C3CCD8; border-radius: var(--radius);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue); outline: 2px solid rgba(2,59,140,.16);
}
.field textarea { min-height: 130px; resize: vertical; }
.field__hint { font-size: .78rem; color: var(--muted); margin-top: .35rem; }
.field-error { display: none; font-size: .8rem; color: #C0341A; margin-top: .3rem; font-weight: 600; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #C0341A; }
.field.has-error .field-error { display: block; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status { margin-top: 1rem; padding: 1rem 1.15rem; border-radius: var(--radius); font-size: .92rem; display: none; }
.form-status.is-visible { display: block; }
.form-status--ok { background: #E8F6ED; border: 1px solid #A8D8BA; color: #14532D; }
.form-status--err { background: #FDECEA; border: 1px solid #F0B4AB; color: #8A2114; }
.form-status strong { display: block; margin-bottom: .25rem; }

.whatsapp-panel {
  background: var(--orange-tint); border: 1px solid #F7D5B2;
  border-radius: var(--radius); padding: 1.6rem; margin-top: 1.25rem;
}
.whatsapp-panel h3 { margin-bottom: .4rem; }
.whatsapp-panel p { color: var(--muted); font-size: .92rem; }

/* ------------------------------------------------------------------- CTA -- */
.cta-band { background: var(--orange); color: #fff; padding: 2.9rem 0; }
.cta-band h2 { color: #fff; margin-bottom: .5rem; }
.cta-band p { color: rgba(255,255,255,.94); margin-bottom: 1.5rem; max-width: 580px; }
.cta-band .btn--primary { background: #fff; color: var(--navy); }
.cta-band .btn--primary:hover { background: var(--navy); color: #fff; }
.cta-band .btn--outline { color: #fff; border-color: rgba(255,255,255,.65); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ---------------------------------------------------------------- footer -- */
.site-footer { background: var(--navy); color: #A5B9D4; padding: 3rem 0 1.5rem; font-size: .9rem; }
.site-footer h4 { color: #fff; font-size: .76rem; letter-spacing: .13em; text-transform: uppercase; margin-bottom: .9rem; }
.site-footer a { color: #DCE6F4; text-decoration: none; }
.site-footer a:hover { color: var(--orange); text-decoration: underline; }
.footer-grid { display: grid; gap: 2rem; }
.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { padding: .22rem 0; }
.footer-logos { display: flex; gap: .6rem; margin-bottom: 1.1rem; flex-wrap: wrap; }
.footer-logos .chip { padding: .45rem .7rem; }
.footer-logos .chip img { height: 20px; }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  font-size: .82rem; color: #8EA6C6;
}
address.footer-address { font-style: normal; }

/* ------------------------------------------------------------ 404 / misc -- */
.center-block { max-width: 580px; margin: 0 auto; text-align: center; padding: 4rem 0; }
.placeholder-flag {
  background: #FFF8E6; border: 1px solid #EBD9A0; color: #6B5310;
  border-radius: var(--radius); padding: .9rem 1.1rem; font-size: .85rem; margin-bottom: 1.5rem;
}
.placeholder-flag strong { color: #4A3908; }

/* ============================================================== breakpoints */
@media (min-width: 620px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--gallery { grid-template-columns: repeat(3, 1fr); }
  .facts { grid-template-columns: repeat(4, 1fr); }
  .brand-block { grid-template-columns: 210px 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .section { padding: 4.5rem 0; }
  .hero { padding: 4.5rem 0 5rem; }
  .hero__grid { grid-template-columns: 1.05fr .95fr; gap: 3.5rem; }
  .page-head { padding: 3.5rem 0; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .grid--gallery { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .split { grid-template-columns: 1fr 1fr; gap: 3rem; }

  .nav-toggle { display: none; }
  .site-nav { display: block; }
  .site-nav ul { display: flex; align-items: center; gap: 1.75rem; }
  .site-nav a { padding: 0; border-bottom: 0; font-size: .93rem; }
  .site-nav .nav-cta { margin: 0 0 0 .5rem; }
  .site-nav .nav-cta a {
    background: var(--orange); color: #fff; padding: .6rem 1.15rem;
    border-radius: var(--radius); font-weight: 700;
  }
  .site-nav .nav-cta a:hover { background: var(--orange-dark); color: #fff; }

  .inquiry-layout { display: grid; grid-template-columns: 1.35fr 1fr; gap: 2.5rem; align-items: start; }
  .form-panel { padding: 2rem; }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
