/* ==========================================================
   PAINT BLUE SKY — THE ART STUDIO
   Stylesheet · palette & type derived from the studio logo
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Caveat:wght@600;700&family=Nunito+Sans:opsz,wght@6..12,400;6..12,600;6..12,700;6..12,800&display=swap');

/* ---------- Design tokens (from the logo) ---------- */
:root {
  --ink:        #2f3531;   /* charcoal lettering           */
  --ink-soft:   #5c655f;
  --forest:     #1b5638;   /* deep green stroke            */
  --forest-deep:#143f2a;
  --teal:       #6fae9b;   /* sage-teal stroke             */
  --blush:      #e3a4b8;   /* pink stroke                  */
  --coral:      #ec8173;   /* coral stroke                 */
  --copper:     #c97a45;   /* copper stroke                */
  --gold:       #d9b95c;   /* splatter                     */
  --cream:      #faf6ef;   /* paper                        */
  --sand:       #f2ebdf;   /* deeper paper                 */
  --white:      #ffffff;

  --font-display: 'Fraunces', Georgia, serif;
  --font-script:  'Caveat', 'Segoe Script', cursive;
  --font-body:    'Nunito Sans', 'Segoe UI', sans-serif;

  --shadow-soft:  0 6px 26px rgba(47, 53, 49, .08);
  --shadow-card:  0 14px 44px rgba(47, 53, 49, .12);
  --shadow-lift:  0 22px 56px rgba(27, 86, 56, .18);
  --radius:       18px;
  --radius-sm:    10px;
  --ease:         cubic-bezier(.22, .61, .36, 1);
  --nav-h:        86px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
iframe { display: block; border: 0; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

::selection { background: var(--blush); color: var(--ink); }

:focus-visible { outline: 3px solid var(--copper); outline-offset: 3px; border-radius: 4px; }

/* ---------- Type helpers ---------- */
.script {
  font-family: var(--font-script);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--copper);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -.01em;
}

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .script { display: block; margin-bottom: 6px; }
.section-head p { margin-top: 16px; color: var(--ink-soft); }

/* Brush-stroke underline — the logo motif distilled */
.u-brush { position: relative; display: inline-block; white-space: nowrap; }
.u-brush svg {
  position: absolute;
  left: -2%; bottom: -.14em;
  width: 104%; height: .34em;
  overflow: visible;
  pointer-events: none;
}
.u-brush svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 9;
  stroke-linecap: round;
  opacity: .5;
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  transition: stroke-dashoffset 1.1s var(--ease) .35s;
}
.aos-animate .u-brush svg path { stroke-dashoffset: 0; }
.hero .u-brush svg path {
  animation: drawBrush .9s var(--ease) .75s forwards;
}
@keyframes drawBrush {
  to { stroke-dashoffset: 0; }
}
.u-teal   { color: var(--teal); }
.u-blush  { color: var(--blush); }
.u-coral  { color: var(--coral); }
.u-copper { color: var(--copper); }
.u-gold   { color: var(--gold); }
.u-brush > span { color: var(--ink); }

/* Sections */
section { padding: 104px 0; position: relative; }
section.alt { background: var(--sand); }

/* ==========================================================
   NAVBAR
   ========================================================== */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), height .4s var(--ease);
  background: linear-gradient(180deg, rgba(250,246,239,.92), rgba(250,246,239,0));
}

.navbar.scrolled {
  height: 70px;
  background: rgba(250, 246, 239, .94);
  box-shadow: 0 1px 0 rgba(47,53,49,.06), 0 10px 30px rgba(47,53,49,.07);
}
/* Frosted blur lives on a pseudo-element: backdrop-filter on the navbar
   itself would make it the containing block for the fixed mobile drawer,
   collapsing the drawer to navbar height. Pseudo-elements have no
   descendants, so the drawer stays anchored to the viewport. */
.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.navbar.scrolled::before { opacity: 1; }

.navbar .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand { display: inline-flex; align-items: center; gap: 14px; flex-shrink: 0; }

.nav-logo {
  height: 58px;
  width: auto;
  transition: height .4s var(--ease), transform .4s var(--ease);
}
.navbar.scrolled .nav-logo { height: 46px; }
.nav-brand:hover .nav-logo { transform: rotate(-3deg) scale(1.04); }

.nav-brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.nav-brand-text .nb-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--ink);
  letter-spacing: .01em;
}
.nav-brand-text .nb-tag {
  font-family: var(--font-script);
  font-size: 1.02rem;
  color: var(--copper);
}

.nav-links { display: flex; align-items: center; gap: 38px; }

.nav-links a {
  position: relative;
  font-weight: 700;
  font-size: .94rem;
  letter-spacing: .02em;
  color: var(--ink-soft);
  padding: 6px 0;
  transition: color .3s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 3px;
  border-radius: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--ink); }

.nav-links a.nav-cta {
  background: var(--forest);
  color: var(--cream);
  padding: 11px 26px;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(27, 86, 56, .26);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.nav-links a.nav-cta::after { display: none; }
.nav-links a.nav-cta:hover {
  background: var(--forest-deep);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(27, 86, 56, .34);
}


/* ---------- Bottom navigation (mobile app bar) ----------
   Hidden on desktop; styled & shown in the ≤880px block. */
.bottom-nav { display: none; }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 90px;
  overflow: hidden;
}

/* watercolor washes — pure CSS, no images */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}
.hero::before {
  width: 56vw; height: 56vw;
  max-width: 760px; max-height: 760px;
  top: -22%; right: -14%;
  background:
    radial-gradient(circle at 35% 35%, rgba(227,164,184,.34), rgba(227,164,184,0) 62%),
    radial-gradient(circle at 70% 60%, rgba(201,122,69,.18), rgba(201,122,69,0) 58%);
}
.hero::after {
  width: 44vw; height: 44vw;
  max-width: 600px; max-height: 600px;
  bottom: -20%; left: -12%;
  background: radial-gradient(circle at 60% 40%, rgba(111,174,155,.30), rgba(111,174,155,0) 64%);
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 64px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-script);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--copper);
  margin-bottom: 18px;
}
.hero-eyebrow::before {
  content: '';
  width: 38px; height: 8px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--teal), var(--blush), var(--coral));
  opacity: .8;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.7rem, 5.6vw, 4.15rem);
  line-height: 1.08;
  letter-spacing: -.015em;
  color: var(--ink);
  margin-bottom: 24px;
}

.hero-desc {
  max-width: 480px;
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 36px;
}

.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 30px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .98rem;
  letter-spacing: .02em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn svg { transition: transform .3s var(--ease); }

.btn-primary {
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 12px 28px rgba(27, 86, 56, .28);
}
.btn-primary:hover {
  background: var(--forest-deep);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(27, 86, 56, .36);
}
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  border: 2px solid rgba(47, 53, 49, .25);
  color: var(--ink);
  background: rgba(255, 255, 255, .4);
}
.btn-ghost:hover {
  border-color: var(--copper);
  color: var(--copper);
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

/* Hero artwork composition */
.hero-art { position: relative; height: 540px; }

.hero-card {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 6px solid var(--white);
  background: var(--white);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }

.hero-card-main {
  width: min(330px, 62%);
  height: 430px;
  top: 26px; left: 8%;
  transform: rotate(-3.5deg);
  z-index: 2;
  animation: floaty 7s ease-in-out infinite;
}
.hero-card-side {
  width: min(250px, 48%);
  height: 320px;
  right: 2%; bottom: 8px;
  transform: rotate(4deg);
  z-index: 3;
  animation: floaty 7s ease-in-out 1.2s infinite reverse;
}
.hero-card:hover { transform: rotate(0deg) scale(1.025); box-shadow: var(--shadow-lift); z-index: 5; }

@keyframes floaty {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -12px; }
}

.hero-splat { position: absolute; z-index: 1; pointer-events: none; }
.hero-splat-1 { top: -6px; right: 16%; width: 120px; }
.hero-splat-2 { bottom: 2%; left: -2%; width: 92px; transform: rotate(40deg); }

.hero-chip {
  position: absolute;
  z-index: 4;
  left: 0; bottom: 56px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 999px;
  padding: 11px 20px 11px 13px;
  box-shadow: var(--shadow-card);
  font-weight: 700;
  font-size: .88rem;
}
.hero-chip .dot {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 32% 30%, var(--blush), var(--coral));
  color: var(--white);
}
.hero-chip .dot svg { width: 16px; height: 16px; }

.hero-scroll {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  z-index: 2;
}
.hero-scroll .line {
  width: 2px; height: 44px;
  border-radius: 2px;
  background: linear-gradient(var(--copper), transparent);
  animation: scrollPulse 1.8s var(--ease) infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); opacity: 0; }
  35%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(10px); opacity: 0; }
}

/* Hero entrance (page-load sequence) */
.hero [data-rise] { opacity: 0; animation: riseIn .9s var(--ease) forwards; }
.hero [data-rise="1"] { animation-delay: .1s; }
.hero [data-rise="2"] { animation-delay: .22s; }
.hero [data-rise="3"] { animation-delay: .34s; }
.hero [data-rise="4"] { animation-delay: .46s; }
.hero [data-rise="5"] { animation-delay: .6s; }
@keyframes riseIn {
  from { opacity: 0; transform: translateY(34px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==========================================================
   ABOUT
   ========================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.06fr;
  gap: 76px;
  align-items: center;
}

.about-media { position: relative; }

.about-img-main {
  width: min(420px, 88%);
  height: 520px;
  object-fit: cover;
  border-radius: 220px 220px var(--radius) var(--radius);
  border: 8px solid var(--white);
  box-shadow: var(--shadow-card);
}

.about-img-side {
  position: absolute;
  right: 0; bottom: -34px;
  width: 218px; height: 258px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 7px solid var(--white);
  box-shadow: var(--shadow-lift);
  transform: rotate(4deg);
  transition: transform .45s var(--ease);
}
.about-img-side:hover { transform: rotate(0) scale(1.03); }

.about-splat { position: absolute; top: -14px; left: -20px; width: 104px; pointer-events: none; }

.about-badge {
  position: absolute;
  top: 40px; right: 6%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 999px;
  padding: 10px 18px 10px 12px;
  box-shadow: var(--shadow-card);
  font-weight: 800;
  font-size: .85rem;
}
.about-badge .dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 32% 30%, var(--teal), var(--forest));
  color: var(--cream);
}
.about-badge .dot svg { width: 15px; height: 15px; }

.about-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin-top: 26px;
  color: var(--forest);
}
.about-role {
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--copper);
  margin-bottom: 14px;
}
.about-text p { color: var(--ink-soft); margin-bottom: 16px; }

/* Counters */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px dashed rgba(47, 53, 49, .18);
}
.stat .stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.1;
  color: var(--ink);
}
.stat .stat-num .suffix { color: var(--coral); }
.stat:nth-child(2) .stat-num { color: var(--forest); }
.stat .stat-label {
  display: block;
  margin-top: 4px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink-soft);
}

/* ==========================================================
   SERVICES
   ========================================================== */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
}

.service-card {
  --acc: var(--teal);
  flex: 0 1 340px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 38px 32px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(47, 53, 49, .05);
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.service-card:nth-child(1) { --acc: var(--teal); }
.service-card:nth-child(2) { --acc: var(--blush); }
.service-card:nth-child(3) { --acc: var(--coral); }
.service-card:nth-child(4) { --acc: var(--copper); }
.service-card:nth-child(5) { --acc: var(--forest); }

.service-card::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 5px;
  background: var(--acc);
  opacity: .85;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.service-card:hover { transform: translateY(-9px); box-shadow: var(--shadow-card); }
.service-card:hover::after { transform: scaleX(1); }

.service-blob {
  width: 76px; height: 76px;
  display: grid; place-items: center;
  margin-bottom: 24px;
  border-radius: 46% 54% 52% 48% / 55% 46% 54% 45%;
  background: color-mix(in srgb, var(--acc) 22%, var(--white));
  color: color-mix(in srgb, var(--acc) 78%, var(--ink));
  transition: transform .45s var(--ease), border-radius .45s var(--ease);
}
.service-card:hover .service-blob {
  transform: rotate(-8deg) scale(1.08);
  border-radius: 52% 48% 46% 54% / 46% 55% 45% 54%;
}
.service-blob svg { width: 34px; height: 34px; }

.service-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.service-desc { color: var(--ink-soft); font-size: .98rem; }

/* ==========================================================
   GALLERY
   ========================================================== */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 44px;
}

.filter-btn {
  padding: 11px 26px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: .02em;
  color: var(--ink-soft);
  background: var(--white);
  border: 1.5px solid rgba(47, 53, 49, .12);
  transition: all .3s var(--ease);
}
.filter-btn:hover {
  color: var(--forest);
  border-color: var(--forest);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.filter-btn.active {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
  box-shadow: 0 10px 24px rgba(27, 86, 56, .26);
}

.gallery-grid { columns: 4 240px; column-gap: 20px; }

.gallery-item {
  position: relative;
  margin-bottom: 20px;
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
  break-inside: avoid;
  box-shadow: var(--shadow-soft);
  transform: translateZ(0);
}
.gallery-item img {
  width: 100%;
  transition: transform .6s var(--ease);
}
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27, 56, 41, .66), rgba(27, 56, 41, 0) 52%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover::after { opacity: 1; }

.gallery-item .g-label {
  position: absolute;
  left: 14px; bottom: 12px;
  z-index: 2;
  font-family: var(--font-script);
  font-size: 1.25rem;
  color: var(--cream);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.gallery-item .g-zoom {
  position: absolute;
  right: 12px; bottom: 12px;
  z-index: 2;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(250, 246, 239, .9);
  color: var(--forest);
  opacity: 0;
  transform: scale(.6);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.gallery-item .g-zoom svg { width: 17px; height: 17px; }
.gallery-item:hover .g-label,
.gallery-item:hover .g-zoom { opacity: 1; transform: none; }

.gallery-item.hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(24, 32, 27, .93);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.lightbox.open { opacity: 1; visibility: visible; }

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 84vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
  transition: opacity .2s ease;
}

.lightbox button {
  position: absolute;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(250, 246, 239, .12);
  color: var(--cream);
  border: 1px solid rgba(250, 246, 239, .25);
  transition: background .3s, transform .3s var(--ease);
}
.lightbox button:hover { background: rgba(250, 246, 239, .26); transform: scale(1.08); }
.lightbox button svg { width: 20px; height: 20px; }
.lb-close { top: 26px; right: 26px; }
.lb-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 26px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.08); }
.lb-next:hover { transform: translateY(-50%) scale(1.08); }

/* ==========================================================
   CONTACT
   ========================================================== */
.contact-card {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--white);
}

.contact-panel {
  position: relative;
  background:
    radial-gradient(circle at 110% -10%, rgba(111, 174, 155, .25), transparent 52%),
    radial-gradient(circle at -16% 112%, rgba(217, 185, 92, .14), transparent 46%),
    var(--forest);
  color: var(--cream);
  padding: 56px 50px;
  overflow: hidden;
}
.contact-panel .script { color: var(--gold); }
.contact-panel h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.85rem;
  margin: 4px 0 14px;
}
.contact-panel > p { color: rgba(250, 246, 239, .78); font-size: .98rem; margin-bottom: 34px; }

.c-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 15px 0;
}
.c-row + .c-row { border-top: 1px solid rgba(250, 246, 239, .14); }

.c-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(250, 246, 239, .12);
  border: 1px solid rgba(250, 246, 239, .18);
  color: var(--gold);
}
.c-icon svg { width: 21px; height: 21px; }

.c-body strong {
  display: block;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(250, 246, 239, .62);
  margin-bottom: 2px;
}
.c-body span, .c-body a { font-size: 1rem; line-height: 1.6; color: var(--cream); }
.c-body a { font-weight: 700; transition: color .3s; }
.c-body a:hover { color: var(--gold); }
.c-body .c-name {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
}
.c-body .c-role { display: block; font-family: var(--font-script); font-size: 1.15rem; color: var(--gold); }

.socials { display: flex; gap: 14px; margin-top: 32px; }
.social {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1.5px solid rgba(250, 246, 239, .3);
  color: var(--cream);
  transition: all .35s var(--ease);
}
.social svg { width: 20px; height: 20px; }
.social:hover { transform: translateY(-4px) scale(1.05); border-color: transparent; }
.social.wa:hover    { background: #25d366; color: #fff; box-shadow: 0 10px 24px rgba(37, 211, 102, .4); }
.social.insta:hover { background: radial-gradient(circle at 32% 110%, #fdb446, #d63a85 56%, #4a52ce); color: #fff; box-shadow: 0 10px 24px rgba(214, 58, 133, .4); }
.social.fb:hover    { background: #1877f2; color: #fff; box-shadow: 0 10px 24px rgba(24, 119, 242, .4); }

.contact-map { position: relative; min-height: 520px; }
.contact-map iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  filter: saturate(.92);
}
.map-directions {
  position: absolute;
  left: 18px; bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--forest);
  font-weight: 800;
  font-size: .88rem;
  padding: 11px 20px;
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.map-directions svg { width: 15px; height: 15px; }
.map-directions:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

/* ==========================================================
   COPYRIGHT BAR (minimal footer)
   ========================================================== */
.copyright {
  background: var(--sand);
  border-top: 1px solid rgba(47, 53, 49, .07);
  padding: 26px 20px;
  text-align: center;
}
.copyright p {
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: .02em;
}

/* ---------- Scroll to top ---------- */
.scroll-top {
  position: fixed;
  right: 26px; bottom: 26px;
  z-index: 900;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 12px 28px rgba(27, 86, 56, .35);
  opacity: 0; visibility: hidden;
  transform: translateY(14px);
  transition: all .4s var(--ease);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: none; }
.scroll-top:hover { background: var(--forest-deep); transform: translateY(-4px); }
.scroll-top svg { width: 20px; height: 20px; }

/* ==========================================================
   SCROLL ANIMATIONS (AOS-style, dependency-free)
   ========================================================== */
/* Initial hidden states only apply when JS is running (html.js).
   If scripts fail or are disabled, content stays fully visible. */
.js [data-aos] {
  opacity: 0;
  transition: opacity .85s var(--ease), transform .85s var(--ease);
  transition-delay: var(--aos-delay, 0ms);
  will-change: opacity, transform;
}
.js [data-aos="fade-up"]    { transform: translateY(44px); }
.js [data-aos="fade-down"]  { transform: translateY(-36px); }
.js [data-aos="fade-left"]  { transform: translateX(54px); }
.js [data-aos="fade-right"] { transform: translateX(-54px); }
.js [data-aos="zoom-in"]    { transform: scale(.9); }
.js [data-aos].aos-animate  { opacity: 1; transform: none; }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
  section { padding: 88px 0; }

  .hero .container { gap: 44px; }
  .hero-art { height: 470px; }
  .hero-card-main { height: 380px; }
  .hero-card-side { height: 280px; width: 220px; }

  .about-grid { gap: 52px; }
  .about-img-main { height: 460px; }
  .gallery-grid { columns: 3 220px; }
}

@media (max-width: 880px) {
  /* Top bar: logo + brand name & tagline, no menu links */
  .nav-links { display: none; }
  .nav-brand-text .nb-name { font-size: 1.08rem; }
  .nav-brand-text .nb-tag  { font-size: .92rem; }

  /* ---------- App-style bottom navigation ---------- */
  .bottom-nav {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    padding: 7px 6px calc(7px + env(safe-area-inset-bottom));
    background: rgba(250, 246, 239, .97);
    border-top: 1px solid rgba(47, 53, 49, .08);
    box-shadow: 0 -10px 30px rgba(47, 53, 49, .1);
    z-index: 1000;
  }
  .bn-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 4px 0;
    color: var(--ink-soft);
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .02em;
    transition: color .25s var(--ease);
  }
  .bn-ico {
    width: 40px; height: 25px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    transition: background .25s var(--ease);
  }
  .bn-ico svg { width: 21px; height: 21px; }
  .bn-item.active { color: var(--forest); }
  .bn-item.active .bn-ico { background: rgba(27, 86, 56, .12); }

  /* Keep page content and floating button clear of the bar */
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  .scroll-top { bottom: calc(82px + env(safe-area-inset-bottom)); }

  .hero { padding-top: calc(var(--nav-h) + 16px); min-height: auto; }
  .hero .container { grid-template-columns: 1fr; gap: 56px; }
  .hero-desc { max-width: 100%; }
  .hero-art { height: 430px; max-width: 520px; margin: 0 auto; width: 100%; }
  .hero-scroll { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 70px; }
  .about-media { max-width: 470px; margin: 0 auto; }
  .about-img-main { width: 86%; }

  .contact-card { grid-template-columns: 1fr; }
  .contact-map { min-height: 400px; }
}

@media (max-width: 560px) {
  :root { --nav-h: 72px; }
  .container { padding: 0 20px; }
  section { padding: 72px 0; }
  body { font-size: 1rem; }

  .nav-logo { height: 46px; }
  .navbar.scrolled .nav-logo { height: 40px; }

  .hero-title { font-size: clamp(2.3rem, 9.4vw, 2.7rem); }
  .hero-actions .btn { flex: 1 1 100%; }
  .hero-art { height: 380px; }
  .hero-card-main { width: 60%; height: 320px; left: 2%; }
  .hero-card-side { width: 46%; height: 240px; right: 0; }
  .hero-chip { bottom: 30px; font-size: .8rem; }
  .hero-splat-1 { width: 84px; right: 6%; }

  .about-img-main { height: 400px; }
  .about-img-side { width: 168px; height: 200px; bottom: -26px; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 18px; }
  .about-stats .stat:last-child { grid-column: 1 / -1; }

  .gallery-grid { columns: 2 140px; column-gap: 12px; }
  .gallery-item { margin-bottom: 12px; }

  .contact-panel { padding: 44px 28px; }
  .contact-map { min-height: 340px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
  .scroll-top { right: 16px; bottom: calc(80px + env(safe-area-inset-bottom)); width: 46px; height: 46px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js [data-aos] { opacity: 1; transform: none; }
  .hero [data-rise] { opacity: 1; animation: none; }
  .u-brush svg path { stroke-dashoffset: 0; }
}
