:root {
  --ink: #1e2928;
  --cream: #f7f2e8;
  --paper: #fffdf8;
  --turquoise: #18a9a0;
  --coral: #ee735e;
  --yellow: #f0c84b;
  --muted: #66706e;
  --line: rgba(30, 41, 40, .14);
  --radius: 28px;
  --shadow: 0 24px 80px rgba(22, 32, 31, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: "Manrope", sans-serif; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; padding: 10px 14px; background: var(--paper); border-radius: 10px; }
.skip-link:focus { top: 12px; }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; min-height: 84px; display: flex; align-items: center; justify-content: space-between; padding: 12px max(24px, calc((100vw - 1180px) / 2)); transition: background .25s ease, box-shadow .25s ease; }
.site-header.scrolled { background: rgba(255,253,248,.94); backdrop-filter: blur(16px); box-shadow: 0 8px 35px rgba(22,32,31,.08); }
.brand { width: 164px; padding: 7px 12px; background: rgba(255,253,248,.92); border-radius: 999px; box-shadow: 0 8px 25px rgba(0,0,0,.12); }
.nav { display: flex; align-items: center; gap: 26px; color: #fff; font-weight: 600; font-size: .92rem; }
.site-header.scrolled .nav { color: var(--ink); }
.nav > a:not(.button) { text-decoration: none; }
.nav > a:not(.button):hover { color: var(--yellow); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 10px; }
.menu-toggle span:not(.sr-only) { display: block; width: 26px; height: 2px; margin: 5px 0; background: #fff; }
.site-header.scrolled .menu-toggle span:not(.sr-only) { background: var(--ink); }

.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 13px 22px; border: 0; border-radius: 999px; font-weight: 700; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 44px; padding: 10px 17px; }
.button-dark { background: var(--ink); color: #fff; }
.button-primary { background: var(--yellow); color: var(--ink); box-shadow: 0 14px 32px rgba(240,200,75,.25); }

.hero { position: relative; min-height: 760px; height: 92vh; display: grid; align-items: center; isolation: isolate; color: #fff; background: var(--ink) url("assets/hero-via-pet.png") center/cover no-repeat; }
.hero-shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(15,29,28,.91) 0%, rgba(15,29,28,.72) 36%, rgba(15,29,28,.12) 72%, rgba(15,29,28,.04) 100%), linear-gradient(0deg, rgba(15,29,28,.4), transparent 45%); }
.hero-content { padding-top: 70px; }
.hero-content > * { max-width: 680px; }
.eyebrow { margin: 0 0 16px; color: var(--turquoise); font-size: .76rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow-light { color: #88ddd6; }
h1, h2, h3 { font-family: "Bricolage Grotesque", sans-serif; line-height: 1.02; letter-spacing: -.045em; }
h1 { margin: 0; font-size: clamp(3.7rem, 7vw, 7rem); max-width: 820px !important; text-wrap: balance; }
.hero-copy { margin: 28px 0 0; color: rgba(255,255,255,.86); font-size: clamp(1rem, 1.5vw, 1.18rem); max-width: 610px; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 38px; }
.text-link { font-weight: 700; text-underline-offset: 5px; }
.hero-info { position: absolute; right: 0; bottom: 0; display: grid; grid-template-columns: repeat(2, minmax(220px, 1fr)); color: var(--ink); background: var(--paper); border-radius: 28px 0 0 0; overflow: hidden; box-shadow: var(--shadow); }
.hero-info div { padding: 20px 28px; }
.hero-info div + div { border-left: 1px solid var(--line); }
.hero-info span { display: block; margin-bottom: 3px; color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-info strong { font-size: .9rem; }

.section { padding-block: 116px; }
.intro { display: grid; grid-template-columns: 1.15fr .65fr; gap: 60px; align-items: end; }
.section-heading h2 { margin: 0; font-size: clamp(2.8rem, 5vw, 5.25rem); }
.section-lead { margin: 0 0 8px; color: var(--muted); font-size: 1.08rem; }
.service-grid { grid-column: 1 / -1; display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 18px; margin-top: 28px; }
.service-card { min-height: 310px; display: flex; flex-direction: column; padding: 30px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.service-featured { color: #fff; background: var(--ink); transform: translateY(-18px); }
.service-number { color: var(--coral); font: 700 .75rem/1 "Manrope", sans-serif; letter-spacing: .12em; }
.service-card h3 { margin: auto 0 12px; font-size: 2rem; }
.service-card p { margin: 0; color: var(--muted); }
.service-featured p { color: rgba(255,255,255,.7); }
.service-card a { margin-top: 24px; color: var(--yellow); font-weight: 700; text-underline-offset: 5px; }
.gallery-heading { display: grid; grid-template-columns: 1.2fr .65fr; gap: 60px; align-items: end; margin-bottom: 48px; }
.gallery-heading h2 { margin: 0; font-size: clamp(3.2rem, 6vw, 6.2rem); }
.artists { background: var(--paper); }
.artist-grid { display: grid; grid-template-columns: 1.05fr .95fr .95fr; grid-template-rows: 310px 310px; gap: 16px; }
.artist-card { position: relative; margin: 0; overflow: hidden; border-radius: 24px; background: var(--ink); }
.artist-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.artist-card:hover img { transform: scale(1.025); }
.artist-card::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(9,17,16,.84)); }
.artist-tall { grid-row: span 2; }
.artist-wide { grid-column: span 2; }
.artist-wide img { object-position: center 56%; }
.artist-card figcaption { position: absolute; z-index: 1; left: 24px; right: 24px; bottom: 21px; color: #fff; }
.artist-card figcaption span { display: block; margin-bottom: 3px; color: #9be6df; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.artist-card figcaption strong { font-family: "Bricolage Grotesque", sans-serif; font-size: 1.25rem; }
.gallery-action { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 32px; }
.gallery-action p { margin: 0; color: var(--muted); }
.button-outline { border: 1px solid var(--ink); }

.club-section { display: grid; grid-template-columns: 1.04fr .96fr; min-height: 720px; background: var(--ink); color: #fff; }
.club-photo { min-height: 620px; background: linear-gradient(0deg, rgba(24,169,160,.18), transparent), url("assets/hero-via-pet.png") 72% center/cover no-repeat; }
.club-copy { align-self: center; max-width: 660px; padding: 80px clamp(40px, 7vw, 110px); }
.club-copy h2 { margin: 0 0 26px; font-size: clamp(3rem, 5.2vw, 5.7rem); }
.club-copy > p:not(.eyebrow) { color: rgba(255,255,255,.7); }
.club-steps { list-style: none; padding: 0; margin: 36px 0; }
.club-steps li { display: flex; gap: 18px; align-items: center; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.14); }
.club-steps li:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.club-steps li > span { display: grid; width: 34px; height: 34px; place-items: center; flex: 0 0 auto; border: 1px solid var(--turquoise); border-radius: 50%; color: #85dcd5; font-size: .8rem; font-weight: 800; }
.club-steps strong, .club-steps small { display: block; }
.club-steps small { color: rgba(255,255,255,.58); }

.experiences { background: var(--cream); }
.experience-heading h2 { font-size: clamp(3rem, 5.2vw, 5.4rem); }
.experience-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 18px; }
.experience-card { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--paper); box-shadow: 0 20px 60px rgba(30,41,40,.08); }
.concept-label { position: absolute; z-index: 3; top: 18px; left: 18px; padding: 7px 11px; border-radius: 999px; color: #fff; background: rgba(30,41,40,.88); backdrop-filter: blur(10px); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.tryon-stage { position: relative; height: 500px; overflow: hidden; background: #d9d2c5; }
.tryon-stage > img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.tryon-stage::after { content: ""; position: absolute; inset: 70% 0 0; background: linear-gradient(transparent, rgba(15,29,28,.55)); }
.tryon-tag { position: absolute; z-index: 1; right: 22px; bottom: 20px; color: #fff; font-weight: 700; }
.tryon-copy { display: flex; align-items: end; justify-content: space-between; gap: 24px; padding: 30px; }
.tryon-copy .eyebrow { margin-bottom: 8px; }
.tryon-copy h3, .video-copy h3, .birthday-copy h3 { margin: 0; font-size: 2.1rem; }
.accessory-options { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.option { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--ink); font: 700 .77rem/1 "Manrope", sans-serif; cursor: pointer; }
.option.active { background: var(--ink); color: #fff; }
.accessory { position: absolute; z-index: 2; display: none; }
.accessory.active { display: block; }
.accessory-bow { left: 47%; top: 60%; width: 90px; height: 42px; transform: rotate(-5deg); }
.accessory-bow::before, .accessory-bow::after { content: ""; position: absolute; width: 45px; height: 34px; top: 3px; background: var(--coral); }
.accessory-bow::before { left: 0; border-radius: 60% 35% 50% 45%; transform: rotate(18deg); }
.accessory-bow::after { right: 0; border-radius: 35% 60% 45% 50%; transform: rotate(-18deg); }
.accessory-bow i { position: absolute; z-index: 1; width: 23px; height: 23px; left: 34px; top: 9px; border-radius: 50%; background: #d95543; }
.accessory-bandana { left: 44%; top: 57%; width: 125px; height: 95px; background: var(--turquoise); clip-path: polygon(0 0, 100% 0, 50% 100%); opacity: .9; }
.accessory-glasses { left: 40%; top: 28%; width: 180px; height: 58px; border-top: 8px solid var(--yellow); }
.accessory-glasses::before, .accessory-glasses::after { content: ""; position: absolute; top: 0; width: 65px; height: 48px; border: 8px solid var(--yellow); border-radius: 50%; background: rgba(30,41,40,.46); }
.accessory-glasses::before { left: 10px; }
.accessory-glasses::after { right: 10px; }
.video-card { min-height: 650px; cursor: pointer; }
.video-card > img { width: 100%; height: 100%; object-fit: cover; }
.video-card::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(13,24,23,.9)); }
.play-button { position: absolute; z-index: 2; inset: 43% auto auto 50%; width: 72px; height: 72px; transform: translate(-50%,-50%); border: 1px solid rgba(255,255,255,.7); border-radius: 50%; background: rgba(255,255,255,.16); backdrop-filter: blur(10px); }
.play-button::after { content: ""; position: absolute; left: 30px; top: 24px; border-left: 18px solid #fff; border-top: 12px solid transparent; border-bottom: 12px solid transparent; }
.video-copy { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 28px; color: #fff; }
.video-copy span { color: #9be6df; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.birthday-panel { display: grid; grid-template-columns: .72fr 1.28fr; gap: 40px; margin-top: 18px; padding: 42px; background: var(--yellow); border-radius: var(--radius); }
.birthday-copy p:not(.eyebrow) { color: rgba(30,41,40,.72); }
.demo-note { font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.birthday-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.birthday-strip article { padding: 10px; background: rgba(255,253,248,.77); border-radius: 18px; }
.birthday-strip img { width: 100%; height: 170px; object-fit: cover; border-radius: 12px; }
.birthday-strip div { padding: 10px 4px 4px; }
.birthday-strip strong, .birthday-strip span { display: block; }
.birthday-strip span { color: var(--muted); font-size: .78rem; }

.operations { background: #172321; color: #fff; }
.operations > .shell { display: grid; grid-template-columns: .62fr 1.38fr; gap: 70px; align-items: center; }
.operations-intro h2 { margin: 0 0 24px; font-size: clamp(3.1rem, 5.7vw, 6.2rem); }
.operations-intro > p:not(.eyebrow) { color: rgba(255,255,255,.65); }
.demo-pill { display: inline-block; margin-top: 18px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; color: #9be6df; font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.app-demo-link { display: flex; width: fit-content; margin-top: 22px; }
.dashboard-shell { overflow: hidden; color: var(--ink); background: #eef0eb; border: 1px solid rgba(255,255,255,.12); border-radius: 26px; box-shadow: 0 35px 90px rgba(0,0,0,.3); }
.dashboard-topbar { display: flex; align-items: center; justify-content: space-between; min-height: 76px; padding: 12px 20px; background: var(--paper); border-bottom: 1px solid var(--line); }
.dashboard-topbar img { width: 116px; }
.dashboard-topbar div { text-align: right; }
.dashboard-topbar span, .panel-title span { display: block; color: var(--muted); font-size: .64rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.dashboard-topbar strong { font-size: .83rem; }
.dashboard-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 12px; padding: 12px; }
.agenda-panel, .crm-panel { padding: 22px; background: var(--paper); border-radius: 18px; }
.panel-title { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 22px; }
.panel-title h3 { margin: 3px 0 0; font-size: 1.55rem; }
.panel-title button { border: 0; background: transparent; color: var(--turquoise); font-weight: 800; cursor: pointer; }
.schedule article { display: grid; grid-template-columns: 47px 1fr auto; gap: 12px; align-items: center; padding: 13px 0; border-top: 1px solid var(--line); }
.schedule time { color: var(--muted); font-size: .76rem; font-weight: 700; }
.schedule strong, .schedule span { display: block; }
.schedule span { color: var(--muted); font-size: .7rem; }
.schedule em { padding: 6px 8px; border-radius: 999px; color: #12776e; background: #dff5f1; font-size: .62rem; font-style: normal; font-weight: 800; }
.status-dot { padding: 5px 9px; border-radius: 999px; color: #12776e !important; background: #dff5f1; }
.pet-profile { display: flex; gap: 12px; align-items: center; margin-bottom: 18px; }
.pet-profile img { width: 58px; height: 58px; object-fit: cover; border-radius: 16px; }
.pet-profile h4, .pet-profile p { margin: 0; }
.pet-profile h4 { font: 700 1.1rem/1.2 "Bricolage Grotesque", sans-serif; }
.pet-profile p { color: var(--muted); font-size: .75rem; }
.pet-data { margin: 0; }
.pet-data div { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-top: 1px solid var(--line); }
.pet-data dt { color: var(--muted); font-size: .68rem; }
.pet-data dd { margin: 0; font-size: .7rem; font-weight: 800; text-align: right; }
.crm-reminder { margin-top: 16px; padding: 13px; border-radius: 12px; background: #f6e7a7; }
.crm-reminder span, .crm-reminder strong { display: block; }
.crm-reminder span { font-size: .6rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.crm-reminder strong { margin-top: 3px; font-size: .73rem; }

.contact { color: var(--ink); background: var(--coral); }
.contact-grid { display: grid; grid-template-columns: 1fr .72fr; gap: 80px; align-items: center; }
.contact h2 { max-width: 720px; margin: 0 0 22px; font-size: clamp(3.3rem, 6.2vw, 6.7rem); }
.contact > p { max-width: 560px; }
.contact .button { margin-top: 24px; }
.contact .eyebrow { color: var(--ink); }
.contact-card { padding: 34px; background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow); font-style: normal; }
.contact-card > div { padding: 0 0 24px; }
.contact-card > div + div { padding-top: 24px; border-top: 1px solid var(--line); }
.contact-card span { display: block; margin-bottom: 8px; color: var(--muted); font-size: .67rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-card a:not(.map-link) { font: 700 1.65rem/1.2 "Bricolage Grotesque", sans-serif; }
.contact-card p { margin: 0; }
.map-link { font-weight: 800; text-underline-offset: 5px; }
.site-footer { padding: 52px 0 24px; color: #fff; background: #101918; }
.footer-grid { display: grid; grid-template-columns: 180px 1fr auto; gap: 40px; align-items: center; }
.footer-grid img { padding: 10px; background: var(--paper); border-radius: 999px; }
.footer-grid p { color: rgba(255,255,255,.64); }
.footer-grid div { display: flex; gap: 20px; font-weight: 700; }
.footer-note { margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.42); font-size: .7rem; }
.floating-whatsapp { position: fixed; z-index: 80; right: 18px; bottom: 18px; padding: 12px 17px; border-radius: 999px; color: #fff; background: #147c72; box-shadow: 0 12px 30px rgba(20,124,114,.3); font-size: .78rem; font-weight: 800; text-decoration: none; }
.toast { position: fixed; z-index: 200; left: 50%; bottom: 28px; max-width: calc(100% - 32px); padding: 13px 18px; border-radius: 999px; color: #fff; background: var(--ink); box-shadow: var(--shadow); transform: translate(-50%, 120px); opacity: 0; transition: transform .25s ease, opacity .25s ease; }
.toast.show { transform: translate(-50%, 0); opacity: 1; }

@media (max-width: 860px) {
  .shell { width: min(100% - 32px, 680px); }
  .site-header { min-height: 72px; padding-inline: 16px; }
  .brand { width: 130px; padding: 5px 9px; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .nav { position: fixed; inset: 0; display: none; align-content: center; justify-content: center; flex-direction: column; background: var(--paper); color: var(--ink); font-size: 1.25rem; }
  .nav.open { display: flex; }
  .nav.open + * { display: none; }
  .menu-toggle[aria-expanded="true"] span:not(.sr-only) { background: var(--ink); }
  .hero { min-height: 720px; height: 100svh; align-items: end; background-position: 62% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(15,29,28,.96) 3%, rgba(15,29,28,.76) 54%, rgba(15,29,28,.15) 100%); }
  .hero-content { padding: 0 0 176px; }
  h1 { font-size: clamp(3rem, 14vw, 5rem); }
  .hero-copy { font-size: .98rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 16px; margin-top: 26px; }
  .hero-info { left: 16px; right: 16px; grid-template-columns: 1fr; border-radius: 20px 20px 0 0; }
  .hero-info div { padding: 13px 18px; }
  .hero-info div + div { border-left: 0; border-top: 1px solid var(--line); }
  .section { padding-block: 82px; }
  .intro { grid-template-columns: 1fr; gap: 24px; }
  .service-grid { grid-template-columns: 1fr; margin-top: 26px; }
  .service-featured { transform: none; }
  .service-card { min-height: 250px; }
  .gallery-heading { grid-template-columns: 1fr; gap: 20px; }
  .artist-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 310px 250px 280px; }
  .artist-tall { grid-row: span 2; }
  .artist-wide { grid-column: span 2; }
  .gallery-action { align-items: flex-start; flex-direction: column; }
  .club-section { grid-template-columns: 1fr; }
  .club-photo { min-height: 520px; }
  .club-copy { padding: 70px 28px; }
  .experience-grid { grid-template-columns: 1fr; }
  .tryon-copy { align-items: flex-start; flex-direction: column; }
  .accessory-options { justify-content: flex-start; }
  .video-card { min-height: 560px; }
  .birthday-panel { grid-template-columns: 1fr; padding: 28px; }
  .operations > .shell { grid-template-columns: 1fr; gap: 42px; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 150px 1fr; }
  .footer-grid div { grid-column: 1 / -1; }
  .floating-whatsapp { bottom: 12px; }
}

@media (max-width: 560px) {
  .hero-content { padding-bottom: 184px; }
  .hero-actions .button { width: 100%; }
  .artist-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; margin-right: -16px; padding-right: 16px; }
  .artist-card, .artist-tall, .artist-wide { min-width: 82vw; height: 430px; scroll-snap-align: start; }
  .tryon-stage { height: 430px; }
  .tryon-copy { padding: 24px; }
  .accessory-options { display: grid; grid-template-columns: 1fr; width: 100%; }
  .option { min-height: 42px; }
  .birthday-strip { display: flex; overflow-x: auto; }
  .birthday-strip article { min-width: 180px; }
  .dashboard-shell { margin-inline: -8px; }
  .dashboard-topbar div { display: none; }
  .agenda-panel, .crm-panel { padding: 17px; }
  .schedule article { grid-template-columns: 42px 1fr; }
  .schedule em { grid-column: 2; justify-self: start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid img { width: 150px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
