/* =========================================================
   BOSCO BARBEARIA
   STYLE.CSS
   ========================================================= */


/* =========================================================
   01. DESIGN TOKENS
   ========================================================= */

:root {

  /* Cores oficiais Bosco */

  --bosco-verde: #8A9A84;
  --bosco-carvao: #2F2D2E;
  --bosco-marfim: #F5F2EB;
  --bosco-pedra: #C8C1B6;
  --bosco-madeira: #7E6049;


  /* Cores funcionais */

  --color-background: var(--bosco-marfim);
  --color-text: var(--bosco-carvao);
  --color-dark: var(--bosco-carvao);
  --color-green: var(--bosco-verde);
  --color-light: var(--bosco-marfim);
  --color-border: rgba(47, 45, 46, 0.18);


  /* Tipografia */

  --font-display: "Cinzel", serif;
  --font-body: "Inter", sans-serif;


  /* Layout */

  --container-width: 1280px;
  --container-padding: 32px;


  /* Espaçamento */

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --space-4xl: 128px;
  --space-5xl: 160px;


  /* Transições */

  --transition-fast: 250ms ease;
  --transition-normal: 450ms ease;


  /* Outros */

  --radius-small: 2px;
}


/* =========================================================
   02. RESET
   ========================================================= */

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


html {
  scroll-behavior: smooth;
}


body {
  margin: 0;

  background: var(--color-background);
  color: var(--color-text);

  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}


img {
  display: block;
  width: 100%;
  max-width: 100%;
}


a {
  color: inherit;
  text-decoration: none;
}


button,
input,
textarea,
select {
  font: inherit;
}


button {
  border: 0;
}


address {
  font-style: normal;
}


/* =========================================================
   03. CONTAINER
   ========================================================= */

.container {
  width: min(
    calc(100% - (var(--container-padding) * 2)),
    var(--container-width)
  );

  margin-inline: auto;
}


/* =========================================================
   04. TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
p {
  margin-top: 0;
}


h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
}


h1 {
  margin-bottom: var(--space-lg);

  font-size: clamp(3.2rem, 7vw, 5.8rem);

  letter-spacing: -0.035em;
}


h2 {
  margin-bottom: var(--space-xl);

  font-size: clamp(2.4rem, 5vw, 4rem);

  letter-spacing: -0.025em;
}


h3 {
  margin-bottom: var(--space-md);

  font-size: clamp(1.5rem, 2.5vw, 2rem);
}


p {
  margin-bottom: var(--space-md);
}


.eyebrow {
  margin-bottom: var(--space-lg);

  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;

  letter-spacing: 0.18em;
  text-transform: uppercase;
}


.section-intro {
  max-width: 560px;

  font-size: 1.05rem;
  line-height: 1.75;
}


/* =========================================================
   05. BUTTONS
   ========================================================= */

.button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 52px;

  padding: 0 28px;

  border: 1px solid transparent;

  font-size: 0.72rem;
  font-weight: 600;

  letter-spacing: 0.13em;
  text-transform: uppercase;

  transition:
    background-color var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}


.button:hover {
  transform: translateY(-2px);
}


.button-dark {
  background: var(--bosco-carvao);
  color: var(--bosco-marfim);
}


.button-dark:hover {
  background: #201f20;
}


.button-light {
  background: var(--bosco-marfim);
  color: var(--bosco-carvao);
}


.button-light:hover {
  background: #ffffff;
}


.button-header {
  background: var(--bosco-verde);
  color: var(--bosco-carvao);
}


.button-header:hover {
  background: var(--bosco-marfim);
}


/* =========================================================
   06. TEXT LINK
   ========================================================= */

.text-link {
  display: inline-flex;

  align-items: center;
  gap: 12px;

  position: relative;

  font-size: 0.76rem;
  font-weight: 600;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}


.text-link span {
  font-size: 1rem;

  transition: transform var(--transition-fast);
}


.text-link:hover span {
  transform: translateX(5px);
}


.text-link::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -7px;

  width: 100%;
  height: 1px;

  background: currentColor;

  transform: scaleX(0);
  transform-origin: right;

  transition: transform var(--transition-fast);
}


.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}


/* =========================================================
   07. HEADER
   ========================================================= */

.site-header {
  position: absolute;

  top: 0;
  left: 0;

  z-index: 100;

  width: 100%;

  color: var(--bosco-marfim);
}


.header-inner {
  display: flex;

  align-items: center;
  justify-content: space-between;

  min-height: 92px;
}


.brand {
  display: inline-flex;

  align-items: center;

  width: 150px;
}


.brand-logo {
  width: 100%;
  height: auto;
}


.main-nav {
  display: flex;

  align-items: center;

  gap: 32px;

  margin-left: auto;
  margin-right: 40px;
}


.main-nav a {
  position: relative;

  font-size: 0.7rem;
  font-weight: 500;

  letter-spacing: 0.1em;
  text-transform: uppercase;

  opacity: 0.9;

  transition: opacity var(--transition-fast);
}


.main-nav a:hover {
  opacity: 1;
}


.main-nav a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 100%;
  height: 1px;

  background: currentColor;

  transform: scaleX(0);
  transform-origin: right;

  transition: transform var(--transition-fast);
}


.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}


.menu-toggle {
  display: none;

  flex-direction: column;
  justify-content: center;
  gap: 7px;

  width: 44px;
  height: 44px;

  padding: 0;

  background: transparent;

  cursor: pointer;
}


.menu-toggle span {
  display: block;

  width: 25px;
  height: 1px;

  margin-left: auto;

  background: var(--bosco-marfim);

  transition: transform var(--transition-fast);
}


.mobile-menu {
  display: none;
}


/* =========================================================
   08. HERO
   ========================================================= */

.hero {
  position: relative;

  min-height: 100svh;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: var(--bosco-carvao);

  color: var(--bosco-marfim);
}


.hero-media,
.hero-overlay {
  position: absolute;

  inset: 0;
}


.hero-media {
  z-index: 0;
}


.hero-image {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;
}


.hero-overlay {
  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(47, 45, 46, 0.86) 0%,
      rgba(47, 45, 46, 0.58) 45%,
      rgba(47, 45, 46, 0.25) 100%
    );
}


.hero-content {
  position: relative;

  z-index: 2;

  padding-top: 100px;

  max-width: 900px;
}


.hero .eyebrow {
  color: var(--bosco-pedra);
}


.hero h1 {
  max-width: 850px;
}


.hero-description {
  max-width: 480px;

  margin-bottom: var(--space-xl);

  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
}


/* =========================================================
   09. SECTION BASE
   ========================================================= */

.section-light {
  background: var(--bosco-marfim);
  color: var(--bosco-carvao);
}


.section-dark {
  background: var(--bosco-carvao);
  color: var(--bosco-marfim);
}


.section-green {
  background: var(--bosco-verde);
  color: var(--bosco-carvao);
}


/* =========================================================
   10. MANIFESTO
   ========================================================= */

.manifesto {
  padding: var(--space-5xl) 0;
}


.manifesto-inner {
  max-width: 900px;

  text-align: center;
}


.manifesto .eyebrow {
  color: var(--bosco-madeira);
}


.manifesto h2 {
  max-width: 850px;

  margin-inline: auto;
}


.manifesto-text {
  max-width: 650px;

  margin-inline: auto;

  font-size: 1.1rem;
  line-height: 1.85;
}


.manifesto-text p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   11. PILARES
   ========================================================= */

.pillars {
  padding: var(--space-5xl) 0;
}


.section-heading {
  margin-bottom: var(--space-3xl);
}


.section-heading h2 {
  max-width: 760px;
}


.pillar-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 1px;

  background: rgba(47, 45, 46, 0.28);
}


.pillar {
  min-height: 360px;

  padding: 48px 40px;

  background: var(--bosco-verde);
}


.pillar-number {
  display: block;

  margin-bottom: 90px;

  font-size: 0.7rem;
  font-weight: 600;

  letter-spacing: 0.15em;
}


.pillar p {
  max-width: 330px;

  line-height: 1.75;
}


/* =========================================================
   12. EXPERIENCE
   ========================================================= */

.experience {
  padding: var(--space-5xl) 0;
}


.experience-grid {
  display: grid;

  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);

  align-items: center;

  gap: 10%;
}


.experience-image {
  overflow: hidden;

  aspect-ratio: 4 / 5;

  background: var(--bosco-pedra);
}


.experience-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 700ms ease;
}


.experience-image:hover img {
  transform: scale(1.03);
}


.experience-content {
  max-width: 500px;
}


.experience-content .eyebrow {
  color: var(--bosco-madeira);
}


.experience-content p {
  max-width: 470px;

  line-height: 1.8;
}


/* =========================================================
   13. SERVICES
   ========================================================= */

.services {
  padding: var(--space-5xl) 0;
}


.services .section-heading {
  display: grid;

  grid-template-columns: 0.8fr 1.2fr;

  column-gap: 10%;
}


.services .section-heading .eyebrow {
  grid-column: 1;
}


.services .section-heading h2 {
  grid-column: 2;

  grid-row: 1 / span 2;

  margin-bottom: 0;
}


.services .section-intro {
  grid-column: 2;

  margin-top: var(--space-lg);

  color: var(--bosco-pedra);
}


.services-list {
  border-top: 1px solid rgba(245, 242, 235, 0.3);
}


.service-coming {
  padding: 32px 0;

  border-bottom: 1px solid rgba(245, 242, 235, 0.3);

  color: var(--bosco-pedra);

  font-size: 0.75rem;
  font-weight: 600;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}


/* =========================================================
   14. SPACE / GALLERY
   ========================================================= */

.space {
  padding: var(--space-5xl) 0;
}


.space-heading {
  max-width: 760px;
}


.gallery {
  display: grid;

  grid-template-columns: repeat(12, 1fr);

  grid-template-rows: repeat(2, minmax(260px, 400px));

  gap: 16px;
}


.gallery-item {
  margin: 0;

  overflow: hidden;

  background: var(--bosco-pedra);
}


.gallery-item img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 700ms ease;
}


.gallery-item:hover img {
  transform: scale(1.03);
}


.gallery-large {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
}


.gallery-item:nth-child(2) {
  grid-column: 8 / 13;
  grid-row: 1;
}


.gallery-item:nth-child(3) {
  grid-column: 8 / 13;
  grid-row: 2;
}


.image-caption {
  margin-top: 16px;

  color: rgba(47, 45, 46, 0.62);

  font-size: 0.68rem;
  font-weight: 500;

  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* =========================================================
   15. LAUNCH / INAUGURATION
   ========================================================= */

.launch {
  padding: var(--space-5xl) 0;
}


.launch-inner {
  max-width: 900px;

  text-align: center;
}


.launch .eyebrow {
  color: var(--bosco-madeira);
}


.launch h2 {
  max-width: 800px;

  margin-inline: auto;
}


.launch p:not(.eyebrow):not(.launch-location) {
  max-width: 550px;

  margin-inline: auto;

  font-size: 1.1rem;
  line-height: 1.8;
}


.launch-location {
  margin-top: var(--space-xl);

  font-size: 0.75rem;
  font-weight: 600;

  letter-spacing: 0.15em;
  text-transform: uppercase;
}


.launch .button {
  margin-top: var(--space-xl);
}


/* =========================================================
   16. LOCATION
   ========================================================= */

.location {
  padding: var(--space-5xl) 0;
}


.location-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 15%;
}


.location h2 {
  margin-bottom: var(--space-xl);
}


.location address {
  margin-bottom: var(--space-xl);

  font-size: 1rem;
  line-height: 1.9;
}


.location .eyebrow {
  color: var(--bosco-madeira);
}


.location-hours {
  padding-top: 5px;
}


.hours-list {
  border-top: 1px solid var(--color-border);
}


.hours-list div {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 22px 0;

  border-bottom: 1px solid var(--color-border);
}


.hours-list span {
  font-size: 0.9rem;
}


.hours-list strong {
  font-size: 0.85rem;
  font-weight: 600;
}


/* =========================================================
   17. FINAL CTA
   ========================================================= */

.final-cta {
  padding: var(--space-5xl) 0;
}


.final-cta-inner {
  max-width: 900px;

  text-align: center;
}


.final-cta .eyebrow {
  color: var(--bosco-verde);
}


.final-cta h2 {
  max-width: 800px;

  margin-inline: auto;
}


.final-cta p:not(.eyebrow) {
  margin-bottom: var(--space-xl);

  color: var(--bosco-pedra);

  font-size: 1rem;
}


/* =========================================================
   18. FOOTER
   ========================================================= */

.site-footer {
  background: #242223;

  color: var(--bosco-marfim);
}


.footer-inner {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 40px;

  padding-top: 64px;
  padding-bottom: 64px;
}


.footer-brand img {
  width: 140px;

  margin-bottom: 16px;
}


.footer-brand p {
  margin-bottom: 0;

  color: var(--bosco-pedra);

  font-size: 0.8rem;
}


.footer-links {
  display: flex;

  align-items: center;

  gap: 32px;
}


.footer-links a {
  font-size: 0.7rem;
  font-weight: 600;

  letter-spacing: 0.12em;
  text-transform: uppercase;

  transition: color var(--transition-fast);
}


.footer-links a:hover {
  color: var(--bosco-verde);
}


.footer-bottom {
  padding-top: 20px;
  padding-bottom: 20px;

  border-top: 1px solid rgba(245, 242, 235, 0.15);
}


.footer-bottom p {
  margin: 0;

  color: rgba(245, 242, 235, 0.5);

  font-size: 0.68rem;
}


/* =========================================================
   19. SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
  width: 8px;
}


::-webkit-scrollbar-track {
  background: var(--bosco-carvao);
}


::-webkit-scrollbar-thumb {
  background: var(--bosco-verde);
}


/* =========================================================
   20. SELECTION
   ========================================================= */

::selection {
  background: var(--bosco-verde);
  color: var(--bosco-carvao);
}


/* =========================================================
   21. RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1050px) {

  :root {
    --container-padding: 24px;
  }


  .main-nav {
    gap: 20px;

    margin-right: 24px;
  }


  .main-nav a {
    font-size: 0.64rem;
  }


  .button-header {
    padding-inline: 20px;
  }


  .experience-grid {
    gap: 7%;
  }


  .pillar {
    padding: 40px 30px;
  }

}


/* =========================================================
   22. RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 768px) {

  :root {
    --container-padding: 20px;

    --space-4xl: 96px;
    --space-5xl: 100px;
  }


  /* Header */

  .header-inner {
    min-height: 78px;
  }


  .brand {
    width: 125px;
  }


  .main-nav,
  .button-header {
    display: none;
  }


  .menu-toggle {
    display: flex;
  }


  .mobile-menu {
    display: flex;

    flex-direction: column;

    gap: 0;

    position: absolute;

    top: 78px;
    left: 0;

    width: 100%;

    padding: 12px 20px 28px;

    background: var(--bosco-carvao);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-10px);

    transition:
      opacity var(--transition-fast),
      visibility var(--transition-fast),
      transform var(--transition-fast);
  }


  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
  }


  .mobile-menu a:not(.button) {
    padding: 16px 0;

    border-bottom: 1px solid rgba(245, 242, 235, 0.12);

    font-size: 0.75rem;
    font-weight: 500;

    letter-spacing: 0.1em;
    text-transform: uppercase;
  }


  .mobile-menu .button {
    margin-top: 20px;
  }


  /* Hero */

  .hero {
    min-height: 90svh;
  }


  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(47, 45, 46, 0.84),
        rgba(47, 45, 46, 0.45)
      );
  }


  .hero-content {
    padding-top: 70px;
  }


  h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }


  h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }


  .hero-description {
    max-width: 350px;

    font-size: 0.98rem;
  }


  /* Manifesto */

  .manifesto,
  .pillars,
  .experience,
  .services,
  .space,
  .launch,
  .location,
  .final-cta {
    padding: var(--space-4xl) 0;
  }


  .manifesto-text {
    font-size: 1rem;
  }


  /* Pilares */

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


  .pillar {
    min-height: auto;

    padding: 40px 28px;
  }


  .pillar-number {
    margin-bottom: 60px;
  }


  /* Experience */

  .experience-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }


  .experience-image {
    aspect-ratio: 1 / 1;
  }


  .experience-content {
    max-width: none;
  }


  /* Services */

  .services .section-heading {
    display: block;
  }


  .services .section-heading h2 {
    margin-bottom: var(--space-xl);
  }


  /* Gallery */

  .gallery {
    display: grid;

    grid-template-columns: 1fr 1fr;

    grid-template-rows: 300px 220px;

    gap: 10px;
  }


  .gallery-large {
    grid-column: 1 / 3;
    grid-row: 1;
  }


  .gallery-item:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }


  .gallery-item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }


  /* Launch */

  .launch-inner {
    max-width: 600px;
  }


  /* Location */

  .location-grid {
    grid-template-columns: 1fr;

    gap: 60px;
  }


  /* Footer */

  .footer-inner {
    flex-direction: column;

    align-items: flex-start;

    padding-top: 48px;
    padding-bottom: 48px;
  }


  .footer-links {
    flex-wrap: wrap;

    gap: 20px;
  }

}


/* =========================================================
   23. SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .container {
    width: min(
      calc(100% - 32px),
      var(--container-width)
    );
  }


  .hero {
    min-height: 85svh;
  }


  .hero-content {
    padding-top: 60px;
  }


  .button {
    width: 100%;

    min-height: 54px;
  }


  .gallery {
    grid-template-rows: 260px 180px;
  }


  .hours-list div {
    align-items: flex-start;

    flex-direction: column;

    gap: 5px;
  }

}


/* =========================================================
   24. ACCESSIBILITY
   ========================================================= */

:focus-visible {
  outline: 2px solid var(--bosco-verde);
  outline-offset: 4px;
}


@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }


  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

}

/* =========================================================
   25. SCROLL REVEAL
   ========================================================= */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================================
   26. HEADER SCROLL
   ========================================================= */

.site-header {
  transition:
    background-color 350ms ease,
    backdrop-filter 350ms ease;
}

.site-header.is-scrolled {
  background: rgba(47, 45, 46, 0.92);
  backdrop-filter: blur(12px);
}

@media (max-width: 768px) {
  .site-header.is-scrolled {
    background: rgba(47, 45, 46, 0.97);
  }
}


/* =========================================================
   27. STAGGER DOS PILARES
   ========================================================= */

.pillar:nth-child(2) {
  transition-delay: 100ms;
}

.pillar:nth-child(3) {
  transition-delay: 200ms;
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   28. LOCATION VISUAL
   ========================================================= */

.location-visual {
  margin-bottom: var(--space-3xl);
}

.location-image {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background: var(--bosco-pedra);
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms ease;
}

.location-image:hover img {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .location-visual {
    margin-bottom: 56px;
  }

  .location-image {
    aspect-ratio: 4 / 3;
  }
}

/* =========================================================
   29. REFINAMENTO VISUAL — V2
   ========================================================= */

/* Header com leitura mais premium sobre o hero */
.site-header {
  position: fixed;
}

.header-inner {
  transition: min-height 350ms ease;
}

.site-header.is-scrolled .header-inner {
  min-height: 74px;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(245, 242, 235, 0.08);
  box-shadow: 0 8px 32px rgba(47, 45, 46, 0.08);
}

/* Hero: preservar arquitetura e criar área de leitura à esquerda */
.hero {
  min-height: 100svh;
}

.hero-image {
  object-position: 58% center;
  transform: scale(1.008);
}

.hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(47, 45, 46, 0.90) 0%,
      rgba(47, 45, 46, 0.68) 34%,
      rgba(47, 45, 46, 0.30) 68%,
      rgba(47, 45, 46, 0.12) 100%
    ),
    linear-gradient(
      0deg,
      rgba(47, 45, 46, 0.26) 0%,
      transparent 35%
    );
}

.hero-content {
  max-width: 760px;
  padding-top: 128px;
  padding-bottom: 72px;
}

.hero h1 {
  max-width: 720px;
  text-wrap: balance;
}

.hero-description {
  color: rgba(245, 242, 235, 0.88);
}

/* Ritmo editorial */
.manifesto-inner,
.launch-inner,
.final-cta-inner {
  text-wrap: balance;
}

.section-heading {
  max-width: 1060px;
}

/* Pilares mais leves e arquitetônicos */
.pillar-grid {
  border-top: 1px solid rgba(47, 45, 46, 0.28);
  border-bottom: 1px solid rgba(47, 45, 46, 0.28);
}

.pillar {
  min-height: 390px;
}

.pillar h3 {
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
}

/* Experiência: imagem horizontal adaptada ao layout vertical sem corte agressivo */
.experience-image {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bosco-carvao);
}

.experience-image img {
  object-position: 52% center;
}

.visual-note {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  padding: 7px 10px;
  background: rgba(47, 45, 46, 0.72);
  color: rgba(245, 242, 235, 0.88);
  backdrop-filter: blur(8px);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Galeria: foco mais editorial nos renders */
.gallery {
  grid-template-rows: repeat(2, minmax(300px, 420px));
}

.gallery-large img {
  object-position: 48% center;
}

.gallery-item:nth-child(2) img {
  object-position: center;
}

.gallery-item:nth-child(3) img {
  object-position: center;
}

.image-caption {
  letter-spacing: 0.13em;
}

/* Lançamento: mais presença do Verde Frosty */
.launch {
  position: relative;
  overflow: hidden;
}

.launch::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -190px;
  top: -210px;
  border: 1px solid rgba(47, 45, 46, 0.14);
  border-radius: 50%;
}

.launch-inner {
  position: relative;
  z-index: 1;
}

/* Fachada: protagonista na seção de localização */
.location-image {
  aspect-ratio: 16 / 7.2;
}

.location-image img {
  object-position: 50% 48%;
}

.location-grid {
  padding-top: 8px;
}

/* Microinterações mais discretas */
.button {
  overflow: hidden;
}

.button:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .site-header.is-scrolled .header-inner {
    min-height: 70px;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-image {
    object-position: 63% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(47, 45, 46, 0.88) 0%,
        rgba(47, 45, 46, 0.58) 68%,
        rgba(47, 45, 46, 0.28) 100%
      ),
      linear-gradient(
        0deg,
        rgba(47, 45, 46, 0.48) 0%,
        transparent 55%
      );
  }

  .hero-content {
    padding-top: 120px;
    padding-bottom: 48px;
  }

  .experience-image {
    aspect-ratio: 4 / 3;
  }

  .experience-image img {
    object-position: center;
  }

  .gallery {
    grid-template-rows: 320px 210px;
  }

  .location-image {
    aspect-ratio: 4 / 3;
  }

  .location-image img {
    object-position: 55% center;
  }
}

@media (max-width: 480px) {
  .hero-image {
    object-position: 66% center;
  }

  .hero-content {
    padding-top: 108px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 3.65rem);
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 280px 220px 220px;
  }

  .gallery-large,
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3) {
    grid-column: 1;
  }

  .gallery-large { grid-row: 1; }
  .gallery-item:nth-child(2) { grid-row: 2; }
  .gallery-item:nth-child(3) { grid-row: 3; }
}

/* =========================================================
   28. PRODUÇÃO — ACESSIBILIDADE E MÍDIA
   ========================================================= */

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--bosco-marfim);
  color: var(--bosco-carvao);
  transform: translateY(-160%);
  transition: transform var(--transition-fast);
}

.skip-link:focus {
  transform: translateY(0);
}

picture {
  display: contents;
}

.hero-media picture,
.experience-image picture,
.gallery-item picture,
.location-image picture {
  width: 100%;
  height: 100%;
}
