:root {
  --bg-top: #1a1d22;
  --bg-bottom: #090b0e;
  --bg-accent: #101318;
  --surface: rgba(247, 248, 250, 0.9);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --surface-dark: rgba(16, 19, 24, 0.92);
  --ink: #11161b;
  --soft-ink: #4c535c;
  --line: rgba(17, 22, 27, 0.12);
  --line-strong: rgba(17, 22, 27, 0.2);
  --wine: #8f2748;
  --wine-deep: #62162f;
  --champagne: #ceb07d;
  --cta-dark: #131820;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.22);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: min(1380px, calc(100% - 1.7rem));
  --section-space: clamp(4.5rem, 8vw, 8rem);
  --ease: 240ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.58), transparent 18%),
    linear-gradient(180deg, #efe5d7 0%, #e7d9c8 48%, #dbc7b4 100%);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

main {
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(17, 22, 27, 0.06);
  background: rgba(247, 239, 229, 0.84);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 14px;
  filter: brightness(0) saturate(100%);
}

.brand-text {
  display: grid;
  gap: 0.1rem;
}

.brand-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.brand-subtitle {
  color: #5f544b;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(17, 22, 27, 0.1);
  background: rgba(255, 255, 255, 0.54);
  display: inline-grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform var(--ease), opacity var(--ease);
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before {
  position: absolute;
  transform: translateY(-6px);
}

.menu-toggle span::after {
  position: absolute;
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  transform: rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: 82px 0.75rem auto;
  background: rgba(251, 246, 240, 0.98);
  border: 1px solid rgba(17, 22, 27, 0.08);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
}

.site-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.8rem;
  display: grid;
  gap: 0.25rem;
}

.site-nav a {
  display: block;
  padding: 0.85rem 0.95rem;
  color: #2b241e;
  border-radius: 14px;
  transition: color var(--ease), background var(--ease);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--ink);
  background: rgba(143, 39, 72, 0.08);
}

.nav-cta {
  width: 100%;
}

.site-nav a.nav-cta,
.site-nav a.nav-cta:hover,
.site-nav a.nav-cta.active {
  color: #fff;
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine-deep) 100%);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.88rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 500;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
  cursor: pointer;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine-deep) 100%);
  box-shadow: 0 16px 32px rgba(72, 16, 31, 0.24);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(17, 22, 27, 0.16);
}

.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(8px);
}

.eyebrow {
  margin: 0;
  color: var(--wine);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero-editorial {
  padding: 1rem 0 2.25rem;
}

.hero-layout {
  display: grid;
  gap: 1rem;
}

.hero-copy-panel,
.hero-image-panel,
.hero-note-card,
.hero-mini-card,
.overview-panel,
.atelier-card,
.category-tile,
.story-block,
.process-card,
.cta-panel,
.lookbook-quote,
.split-card,
.contact-card,
.contact-form,
.gallery-card {
  background: var(--surface);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow-soft);
}

.hero-copy-panel,
.hero-mini-card,
.hero-note-card {
  color: #fff;
  background: rgba(15, 19, 24, 0.72);
  border-color: rgba(255, 255, 255, 0.08);
}

.hero-copy-panel p,
.hero-mini-card p,
.hero-specs span,
.hero-specs strong,
.hero-index {
  color: rgba(255, 255, 255, 0.82);
}

.hero-copy-panel .eyebrow,
.hero-mini-card .eyebrow,
.hero-note-card strong {
  color: var(--champagne);
}

.hero-copy-panel,
.hero-note-card,
.hero-mini-card,
.overview-panel,
.atelier-card,
.story-block,
.process-card,
.cta-panel,
.lookbook-quote,
.split-card,
.contact-card,
.contact-form {
  border-radius: 32px;
}

.hero-copy-panel {
  padding: 1.25rem;
  display: grid;
  align-content: start;
  gap: 1.1rem;
}

.hero-kicker {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.hero-index {
  color: var(--soft-ink);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-copy-panel h1,
.page-hero-copy h1,
.section-heading h2,
.cta-panel h2,
.story-block h3,
.atelier-card h3,
.lookbook-quote blockquote,
.contact-form h2,
.split-copy h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.hero-copy-panel h1 {
  font-size: clamp(3.4rem, 14vw, 7.3rem);
  max-width: 8.8ch;
}

.hero-copy-panel p,
.page-hero-copy p,
.section-heading p,
.overview-copy p,
.atelier-card p,
.category-meta p,
.story-block p,
.process-card p,
.cta-panel p,
.split-copy p,
.contact-card p,
.contact-form p {
  margin: 0;
  color: var(--soft-ink);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.hero-specs div {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.hero-specs strong {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.hero-image-panel {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  min-height: 62vh;
}

.hero-image-panel::after {
  content: "";
  position: absolute;
  inset: auto -10% -12% auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 149, 97, 0.32), transparent 70%);
}

.hero-image-panel img {
  width: 100%;
  height: 100%;
  min-height: 62vh;
  object-fit: cover;
}

.hero-note-card,
.hero-mini-card {
  padding: 1.2rem;
}

.hero-note-card {
  background: linear-gradient(135deg, rgba(108, 24, 48, 0.96), rgba(30, 16, 18, 0.96));
  color: #fff;
}

.hero-note-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.hero-note-card strong {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-mini-card {
  display: grid;
  gap: 0.65rem;
}

.hero-mini-card strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 0.9;
}

.section-heading {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2rem;
  max-width: 760px;
}

.section-heading h2,
.section-heading p,
.section-heading .eyebrow {
  color: #17120f;
}

.section-heading p {
  color: #5e5046;
}

.section-heading .eyebrow {
  color: #2a221d;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 8vw, 4.6rem);
}

.overview-grid,
.atelier-layout,
.contact-layout {
  display: grid;
  gap: 1rem;
}

.overview-panel {
  padding: 1.3rem;
  background: var(--surface-strong);
}

.overview-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.overview-panel strong {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--soft-ink);
  margin-bottom: 0.4rem;
}

.overview-panel span {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  line-height: 1;
}

.atelier-layout {
  align-items: start;
}

.atelier-card {
  padding: 1.4rem;
}

.atelier-card h3 {
  font-size: clamp(2.2rem, 7vw, 3.5rem);
  margin-bottom: 0.8rem;
}

.atelier-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.atelier-list li {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  color: var(--soft-ink);
}

.category-mosaic {
  display: grid;
  gap: 1rem;
}

.comfort-grid {
  display: grid;
  gap: 1rem;
}

.comfort-card {
  padding: 1.3rem;
  border-radius: 28px;
  background: rgba(247, 248, 250, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.comfort-card h3 {
  margin: 0 0 0.65rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 0.98;
}

.comfort-card p {
  margin: 0;
  color: var(--soft-ink);
}

.comfort-card strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--wine);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.explorer-shell {
  display: grid;
  gap: 1rem;
}

.explorer-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.explorer-chip {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  padding: 0.8rem 1rem;
  min-height: 46px;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}

.explorer-chip:hover,
.explorer-chip.is-active {
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine-deep) 100%);
  border-color: transparent;
  color: #fff;
  transform: translateY(-1px);
}

.explorer-panel {
  display: grid;
  gap: 1rem;
}

.explorer-copy,
.explorer-gallery,
.quick-links {
  border-radius: 32px;
  background: rgba(248, 249, 251, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.explorer-copy {
  padding: 1.4rem;
  display: grid;
  gap: 0.85rem;
}

.explorer-copy h3,
.quick-links h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  font-weight: 600;
  line-height: 0.95;
}

.explorer-copy p,
.quick-links p,
.explorer-meta p {
  margin: 0;
  color: var(--soft-ink);
}

.explorer-meta {
  display: grid;
  gap: 0.85rem;
}

.explorer-meta-item {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(17, 22, 27, 0.08);
}

.explorer-meta-item strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--soft-ink);
}

.explorer-gallery {
  padding: 1rem;
}

.explorer-gallery-grid {
  display: grid;
  gap: 0.85rem;
}

.explorer-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
}

.quick-links {
  padding: 1.4rem;
  display: grid;
  gap: 1rem;
}

.quick-link-list {
  display: grid;
  gap: 0.75rem;
}

.quick-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  background: rgba(252, 253, 254, 0.8);
  border: 1px solid rgba(17, 22, 27, 0.08);
  transition: transform var(--ease), border-color var(--ease);
}

.quick-link:hover {
  transform: translateY(-1px);
  border-color: rgba(124, 31, 60, 0.18);
}

.quick-link strong {
  display: block;
  font-size: 1rem;
}

.quick-link span {
  color: var(--soft-ink);
  font-size: 0.9rem;
}

.category-tile {
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  min-height: 420px;
}

.category-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.02) 15%, rgba(10, 10, 10, 0.72) 100%);
  z-index: 1;
}

.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.category-tile:hover img {
  transform: scale(1.05);
}

.category-content {
  position: absolute;
  inset: auto 1.2rem 1.2rem;
  z-index: 2;
  color: #fff;
  display: grid;
  gap: 0.7rem;
}

.category-content h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 600;
  line-height: 0.95;
}

.category-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 34ch;
}

.category-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.category-tag::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.story-grid {
  display: grid;
  gap: 1rem;
}

.story-block {
  padding: 1.4rem;
}

.story-block h3 {
  font-size: clamp(2rem, 6vw, 3rem);
  margin-bottom: 0.8rem;
}

.lookbook-grid {
  display: grid;
  gap: 1rem;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
}

.gallery-card {
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
}

.gallery-card button {
  all: unset;
  width: 100%;
  height: 100%;
  display: block;
  cursor: zoom-in;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 1rem;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.74) 100%);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
}

.gallery-card--wide {
  aspect-ratio: 16 / 10;
}

.gallery-card--tall {
  aspect-ratio: 3 / 4.35;
}

.lookbook-quote {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.96), rgba(58, 34, 28, 0.96));
  color: #fff;
}

.lookbook-quote blockquote {
  font-size: clamp(2rem, 7vw, 3.8rem);
  max-width: 9ch;
}

.lookbook-quote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.process-grid {
  display: grid;
  gap: 1rem;
}

.process-card {
  padding: 1.5rem;
}

.process-index {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--wine);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.process-card h3 {
  margin: 0 0 0.7rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
}

.cta-panel {
  padding: 2.2rem 1.8rem;
  background: linear-gradient(135deg, var(--wine-deep), var(--bg-top));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-panel .eyebrow {
  color: var(--champagne);
  margin-bottom: 1.2rem;
}

.cta-panel h2 {
  font-size: clamp(2rem, 6vw, 3.2rem);
  max-width: 18ch;
  margin-bottom: 1.6rem;
  line-height: 1.38;
  color: #fff;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 56ch;
  line-height: 1.6;
  margin-bottom: 2.2rem;
}

.page-hero {
  padding: 1rem 0 1.8rem;
}

.page-hero-shell {
  display: grid;
  gap: 1rem;
  margin: 0 0.85rem;
}

.page-hero-media {
  overflow: hidden;
  border-radius: 34px;
  min-height: 54vh;
  box-shadow: var(--shadow);
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 54vh;
  object-fit: cover;
}

.page-hero-copy {
  padding: 1.4rem;
  border-radius: 32px;
  background: rgba(255, 252, 248, 0.92);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1rem;
  align-content: center;
}

.page-hero-copy h1 {
  font-size: clamp(3rem, 10vw, 5.7rem);
  max-width: 10ch;
}

.split-layout {
  display: grid;
  gap: 1rem;
}

.split-card {
  overflow: hidden;
}

.split-media {
  min-height: 100%;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy {
  padding: 1.5rem;
  display: grid;
  gap: 0.9rem;
  align-content: center;
}

.split-copy h3 {
  font-size: clamp(2.1rem, 7vw, 3.8rem);
}

.split-copy ul {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.split-copy li {
  color: var(--soft-ink);
  padding-top: 0.75rem;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.split-card,
.contact-card,
.contact-form,
.gallery-card,
.process-card,
.page-hero-copy {
  background: rgba(255, 252, 248, 0.94);
  border: 1px solid rgba(17, 22, 27, 0.07);
  box-shadow: 0 18px 40px rgba(91, 62, 34, 0.1);
}

.gallery-card figcaption {
  color: rgba(255, 255, 255, 0.94);
}

.contact-layout {
  align-items: start;
}

.contact-card,
.contact-form {
  padding: 1.5rem;
}

.contact-card h3,
.contact-form h2 {
  font-size: clamp(2.1rem, 7vw, 3.8rem);
  margin-bottom: 0.75rem;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.contact-label {
  margin: 0 0 0.2rem;
  color: var(--soft-ink);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-value {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 500;
}

.form-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.1rem;
}

.field {
  display: grid;
  gap: 0.42rem;
}

.field label {
  font-size: 0.92rem;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  padding: 0.95rem 1rem;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(108, 24, 48, 0.38);
  box-shadow: 0 0 0 4px rgba(108, 24, 48, 0.08);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-note,
.form-status {
  margin: 1rem 0 0;
  color: var(--soft-ink);
  font-size: 0.92rem;
}

.form-status[data-state="error"] {
  color: var(--wine);
}

.site-footer {
  padding: 1.5rem 0 2.2rem;
}

.footer-shell {
  border-top: 1px solid rgba(17, 22, 27, 0.08);
  padding-top: 1.25rem;
  display: grid;
  gap: 1rem;
}

.footer-top,
.footer-bottom,
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  align-items: center;
  justify-content: space-between;
}

.footer-nav a,
.footer-bottom p {
  color: #5f544b;
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.82rem 1.05rem;
  border-radius: 999px;
  color: #fff;
  background: #25D366;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  background: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.45);
}

.whatsapp-float strong {
  font-size: 0.92rem;
}

.whatsapp-float span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.72rem;
}

.whatsapp-float span svg {
  width: 14px !important;
  height: 14px !important;
}

.btn-outline-dark {
  color: var(--ink);
  background: rgba(255, 251, 246, 0.68);
  border-color: rgba(17, 22, 27, 0.18);
}

.btn-outline-soft {
  color: var(--ink);
  background: transparent;
  border-color: rgba(17, 22, 27, 0.18);
}

.home-page {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.6), transparent 18%),
    linear-gradient(180deg, #efe5d7 0%, #e7d9c8 48%, #dbc7b4 100%);
}

.site-header--home {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  z-index: 60;
}

.site-header--home .header-inner {
  width: auto;
  min-height: 112px;
  margin: 0 1rem;
  padding-top: 0;
}

.site-header--home .brand img {
  width: 66px;
  height: 66px;
}

.home-page .brand-subtitle,
.home-page .footer-nav a,
.home-page .footer-bottom p {
  color: var(--soft-ink);
}

.site-header--home .site-nav {
  background: rgba(251, 246, 240, 0.98);
  border-color: rgba(17, 22, 27, 0.08);
}

.site-header--home .site-nav a {
  color: #2b241e;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.7rem 0.6rem;
}

.site-header--home .site-nav a.nav-cta,
.site-header--home .site-nav a.nav-cta:hover,
.site-header--home .site-nav a.nav-cta.active {
  color: #fff;
  background: #111111;
  border-color: #111111;
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 500;
  padding-inline: 1.35rem;
  padding-block: 0.95rem;
}

.site-header--home .site-nav a:hover,
.site-header--home .site-nav a.active {
  color: var(--ink);
  background: rgba(143, 39, 72, 0.08);
}

.site-header--home .menu-toggle {
  border-color: rgba(17, 22, 27, 0.1);
  background: rgba(255, 255, 255, 0.54);
}

.site-header--home .menu-toggle span,
.site-header--home .menu-toggle span::before,
.site-header--home .menu-toggle span::after {
  background: var(--ink);
}

.site-header--home .nav-cta {
  background: #111111;
  box-shadow: none;
  min-height: 52px;
}

.home-hero {
  padding: 0 0 1.8rem;
}

.home-hero-wrap {
  margin: 0;
}

.home-hero-shell,
.home-panel,
.home-contact-shell {
  border-radius: 32px;
  background: rgba(255, 252, 248, 0.94);
  border: 1px solid rgba(17, 22, 27, 0.07);
  box-shadow: 0 24px 60px rgba(91, 62, 34, 0.12);
}

.home-hero-shell {
  overflow: hidden;
  position: relative;
  min-height: 100vh;
  border: 0;
  background: #f7efe5;
  box-shadow: 0 16px 40px rgba(91, 62, 34, 0.08);
  border-radius: 0;
}

.home-hero-media img {
  width: 100%;
  min-height: 100vh;
  object-fit: cover;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  padding: 7.6rem 1.8rem 2.4rem;
  background: linear-gradient(90deg, rgba(248, 241, 232, 0.8) 0%, rgba(248, 241, 232, 0.2) 45%, rgba(248, 241, 232, 0.04) 75%);
}

.home-hero-copy {
  max-width: 500px;
  display: grid;
  gap: 1rem;
  margin-left: 1rem;
}

.home-hero-copy .eyebrow,
.home-section-head .eyebrow,
.home-about-copy .eyebrow,
.home-contact-cta .eyebrow {
  color: #2a221d;
  letter-spacing: 0.28em;
}

.home-hero-copy h1,
.home-section-head h2,
.home-about-copy h2,
.home-contact-cta h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: #17120f;
}

.home-hero-copy h1 {
  font-size: clamp(3.6rem, 11vw, 6.8rem);
  max-width: 7ch;
}

.home-hero-copy p,
.home-section-head p,
.home-about-copy p,
.home-contact-cta p,
.process-lux-card p,
.home-contact-info a,
.home-contact-info strong {
  margin: 0;
  color: #483d35;
}

.home-hero-line {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, #c59f69 0%, transparent 100%);
  display: block;
}

.home-scroll-indicator {
  justify-self: center;
  align-self: end;
  width: 42px;
  height: 42px;
  margin-top: 1rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  margin-bottom: 0.15rem;
}

.home-panel-section {
  padding: 0 0 1.15rem;
}

.home-panel-section--tight {
  padding-bottom: 0.95rem;
}

.home-panel-section .container,
.home-contact-band .container {
  width: auto;
  margin: 0 0.85rem;
}

.home-panel {
  padding: 1.15rem;
}

.home-section-head {
  display: grid;
  gap: 0.55rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 1.1rem;
}

.home-section-head h2 {
  font-size: clamp(2rem, 6vw, 3.55rem);
}

.category-showcase-grid {
  display: grid;
  gap: 1rem;
}

.showcase-card {
  position: relative;
  min-height: 280px;
  border-radius: 24px;
  overflow: hidden;
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 12, 10, 0.04) 20%, rgba(14, 12, 10, 0.7) 100%);
  z-index: 1;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.showcase-card:hover img {
  transform: scale(1.04);
}

.showcase-card-copy {
  position: absolute;
  inset: auto 1.2rem 1.2rem;
  z-index: 2;
  color: #fff;
  display: grid;
  gap: 0.5rem;
}

.showcase-card-copy h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.85rem, 5vw, 2.65rem);
  font-weight: 600;
  line-height: 0.92;
}

.showcase-card-copy span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.72);
  display: inline-grid;
  place-items: center;
  font-size: 0.82rem;
  color: transparent;
  position: relative;
}

.showcase-card-copy span::before {
  content: "→";
  color: #fff;
}

.home-design-strip {
  display: grid;
  gap: 0.85rem;
}

.design-thumb {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  min-height: 190px;
}

.design-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-centered-action {
  display: flex;
  justify-content: center;
  margin-top: 0.95rem;
}

.home-about-grid {
  display: grid;
  gap: 1.1rem;
  align-items: center;
}

.home-about-media,
.home-about-copy {
  border-radius: 28px;
  overflow: hidden;
}

.home-about-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: contain;
  object-position: center;
  background: transparent;
  box-shadow: 0 24px 60px rgba(91, 62, 34, 0.1);
}

.home-about-copy {
  padding: 0.5rem 0.45rem 0.5rem 0.15rem;
  display: grid;
  gap: 0.78rem;
  align-content: center;
  max-width: 600px;
}

.home-about-copy h2 {
  font-size: clamp(2rem, 4.65vw, 3.2rem);
  max-width: 10ch;
  line-height: 0.92;
}

.home-about-lead {
  font-size: 1.04rem;
  font-weight: 500;
  color: #2f2722;
  max-width: 36ch;
}

.home-about-copy p:not(.home-about-lead) {
  max-width: 46ch;
  line-height: 1.62;
}

.home-about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.15rem;
}

.home-about-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.62rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 22, 27, 0.12);
  background: rgba(255, 251, 246, 0.6);
  color: #2f2722;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.signature-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-style: italic;
  color: #2f2722;
  margin-top: 0.25rem;
}

.process-lux-grid {
  display: grid;
  gap: 1rem;
}

.process-lux-card {
  padding: 1.1rem 0.9rem;
  text-align: center;
  border-top: 1px solid rgba(17, 22, 27, 0.08);
}

.process-lux-number {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: #c59f69;
}

.process-lux-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
  color: #181310;
}

.home-contact-band {
  padding: 0 0 2.2rem;
}

.home-contact-shell {
  padding: 1.3rem;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 22%),
    linear-gradient(135deg, rgba(228, 212, 194, 0.96), rgba(241, 231, 219, 0.96));
  display: grid;
  gap: 1.15rem;
}

.home-contact-cta {
  display: grid;
  gap: 0.9rem;
}

.home-contact-cta h2 {
  font-size: clamp(2.15rem, 6vw, 3.6rem);
  max-width: 8ch;
}

.home-contact-info {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.home-contact-info strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7a6045;
}

.home-contact-info a {
  font-size: 1.12rem;
  font-weight: 500;
}

.home-page .footer-shell {
  border-top-color: rgba(17, 22, 27, 0.08);
}


.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(8, 8, 8, 0.84);
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--ease), visibility var(--ease);
}

.lightbox.is-visible {
  opacity: 1;
  visibility: visible;
}

.lightbox-dialog {
  position: relative;
  width: min(100%, 1080px);
  display: grid;
  gap: 0.8rem;
}

.lightbox-image {
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 22px;
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  font-size: 0.94rem;
}

.lightbox-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  font-size: 1.45rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.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;
}

@media (min-width: 760px) {
  .home-hero-overlay {
    padding: 8rem 2.6rem 2.6rem;
  }

  .home-hero-copy {
    margin-left: 1.5rem;
  }

  .category-showcase-grid,
  .home-design-strip,
  .process-lux-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-about-grid,
  .home-contact-shell {
    grid-template-columns: 0.98fr 1.02fr;
  }

  .home-about-media {
    align-self: stretch;
  }

  .home-about-media img {
    min-height: 420px;
    max-height: 500px;
  }

  .process-lux-card {
    border-top: 0;
    border-left: 1px solid rgba(17, 22, 27, 0.08);
  }

  .process-lux-card:first-child {
    border-left: 0;
  }

  .hero-layout,
  .page-hero-shell,
  .atelier-layout,
  .split-layout,
  .contact-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy-panel,
  .cta-panel,
  .contact-card,
  .contact-form,
  .split-copy,
  .atelier-card {
    padding: 1.8rem;
  }

  .hero-copy-panel {
    min-height: 100%;
  }

  .hero-image-panel {
    min-height: 72vh;
  }

  .hero-image-panel img {
    min-height: 72vh;
  }

  .category-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .comfort-grid,
  .explorer-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-tile--wide {
    grid-column: span 2;
  }

  .story-grid,
  .lookbook-grid,
  .process-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field--full {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .site-header--home .header-inner {
    margin: 0 1.35rem;
    padding-top: 0;
  }

  .home-hero-media img {
    min-height: min(980px, 100vh);
  }

  .home-hero-overlay {
    align-items: center;
    padding: 8.8rem 3.2rem 3rem;
  }

  .home-hero-copy {
    margin-left: 2.4rem;
  }

  .home-hero-wrap {
    margin: 0;
  }

  .home-panel-section .container,
  .home-contact-band .container,
  .page-hero-shell {
    margin-left: 1.35rem;
    margin-right: 1.35rem;
  }

  .category-showcase-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .home-design-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .home-about-grid {
    grid-template-columns: 1fr 0.92fr;
    gap: 1.6rem;
  }

  .home-about-media img {
    min-height: 440px;
    max-height: 520px;
  }

  .home-about-copy {
    padding-right: 0.55rem;
  }

  .process-lux-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .menu-toggle {
    display: none;
  }

  .site-header--home .site-nav {
    position: static;
    inset: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.2rem;
    flex: 1;
    margin-left: auto;
  }

  .site-header--home .site-nav ul {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.28rem;
    margin-right: 0;
  }

  .site-header--home .site-nav a {
    padding: 0.62rem 0.52rem;
  }

  .site-nav {
    position: static;
    inset: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .site-nav ul {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.1rem;
  }

  .nav-cta {
    width: auto;
  }

  .hero-layout {
    grid-template-columns: 0.92fr 1.08fr;
    grid-template-areas:
      "copy visual"
      "note visual";
    align-items: stretch;
  }

  .hero-copy-panel {
    grid-area: copy;
  }

  .hero-image-panel {
    grid-area: visual;
  }

  .hero-side-notes {
    grid-area: note;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1rem;
  }

  .atelier-layout {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .comfort-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .explorer-panel {
    grid-template-columns: 0.95fr 1.05fr 0.85fr;
    align-items: start;
  }

  .explorer-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .lookbook-grid {
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
    align-items: stretch;
  }

  .lookbook-grid .lookbook-quote {
    grid-row: span 2;
  }

  .gallery-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ==========================================================================
   Nuevos Estilos: Tarjetas de Proyectos y Galería Interactiva
   ========================================================================== */

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}

.project-card {
  background: rgba(251, 246, 240, 0.65);
  border: 1px solid rgba(17, 22, 27, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(17, 22, 27, 0.04);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(143, 39, 72, 0.22);
}

.project-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #090b0e;
}

.project-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter var(--ease);
}

.project-card:hover .project-card-image {
  transform: scale(1.04);
}

.project-card-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(16, 19, 24, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 0.4rem 0.8rem;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  pointer-events: none;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-card-content {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-card-tag {
  color: var(--wine);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.project-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 0.7rem 0;
  color: var(--ink);
}

.project-card-description {
  color: var(--soft-ink);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0 0 1.2rem 0;
  flex-grow: 1;
}

.project-card-thumbnails {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
  padding: 0.2rem 0;
}

.project-thumb {
  border: 2px solid transparent;
  padding: 0;
  background: none;
  cursor: pointer;
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--ease), opacity var(--ease), transform var(--ease);
  opacity: 0.58;
}

.project-thumb:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.project-thumb.is-active {
  border-color: var(--wine);
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(143, 39, 72, 0.15);
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-card-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: auto;
}

.project-card-actions .btn {
  flex: 1;
  justify-content: center;
  text-align: center;
  font-size: 0.82rem;
  padding: 0.9rem 1.2rem;
}

/* ==========================================================================
   Estilos de Navegación del Lightbox
   ========================================================================== */

.lightbox-dialog {
  position: relative;
  max-width: 90vw;
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(16, 19, 24, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease), transform var(--ease), opacity var(--ease);
  z-index: 10;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0;
}

.lightbox-arrow:hover {
  background: rgba(143, 39, 72, 0.95);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.lightbox-arrow--prev {
  left: 1rem;
}

.lightbox-arrow--next {
  right: 1rem;
}

.lightbox-counter {
  margin-top: 0.8rem;
  background: rgba(16, 19, 24, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, 0.85);
  padding: 0.35rem 0.8rem;
  border-radius: 99px;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   Adaptaciones Responsivas Adicionales
   ========================================================================== */

@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 720px;
    margin: 2rem auto 0;
  }

  .project-card {
    flex-direction: row;
    max-width: 100%;
    align-items: stretch;
  }

  .project-card-media {
    width: 42%;
    flex-shrink: 0;
  }

  .project-card-content {
    width: 58%;
    padding: 2rem;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.8rem;
    max-width: 100%;
  }

  .projects-grid:has(> :only-child) {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .project-card-content {
    padding: 2.2rem;
  }

  .lightbox-arrow--prev {
    left: -75px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .lightbox-arrow--next {
    right: -75px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .lightbox-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
  }
}

@media (min-width: 960px) {
  .cta-panel {
    padding: 3.5rem 3rem;
  }
}

