/* ============================================================
   MCDA – Matilde Cascella Design Associates
   Custom Design Tokens & Component Styles
   ============================================================ */

/* --- Type Scale (fluid) --- */
:root {
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 8rem);

  /* --- Spacing (4px system) --- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* --- Radius --- */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* --- Transitions --- */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);

  /* --- Content widths --- */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;

  /* --- Fonts --- */
  --font-display: 'Josefin Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Switzer', 'Helvetica Neue', Arial, sans-serif;

  /* --- Sidebar --- */
  --sidebar-width: 60px;
}

/* ============================================================
   COLOR: Light Mode
   ============================================================ */
:root,
[data-theme='light'] {
  --color-bg: #FAFAF7;
  --color-surface: #FFFFFF;
  --color-surface-2: #F5F4F0;
  --color-sidebar: #B8B0A2;
  --color-sidebar-text: #FAFAF7;
  --color-border: #E0DCD6;
  --color-divider: #E8E5DF;

  --color-text: #2C2825;
  --color-text-muted: #8A8580;
  --color-text-faint: #B8B4AE;
  --color-text-inverse: #FAFAF7;

  --color-primary: #2C2825;
  --color-primary-hover: #4A4540;

  --shadow-sm: 0 1px 2px rgba(44, 40, 37, 0.06);
  --shadow-md: 0 4px 12px rgba(44, 40, 37, 0.08);
  --shadow-lg: 0 12px 32px rgba(44, 40, 37, 0.12);
}

/* ============================================================
   COLOR: Dark Mode
   ============================================================ */
[data-theme='dark'] {
  --color-bg: #1A1917;
  --color-surface: #211F1D;
  --color-surface-2: #292724;
  --color-sidebar: #2A2826;
  --color-sidebar-text: #D5D2CE;
  --color-border: #3A3836;
  --color-divider: #322F2D;

  --color-text: #D5D2CE;
  --color-text-muted: #8A8580;
  --color-text-faint: #5A5856;
  --color-text-inverse: #1A1917;

  --color-primary: #D5D2CE;
  --color-primary-hover: #B8B4AE;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.4);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #1A1917;
    --color-surface: #211F1D;
    --color-surface-2: #292724;
    --color-sidebar: #2A2826;
    --color-sidebar-text: #D5D2CE;
    --color-border: #3A3836;
    --color-divider: #322F2D;
    --color-text: #D5D2CE;
    --color-text-muted: #8A8580;
    --color-text-faint: #5A5856;
    --color-text-inverse: #1A1917;
    --color-primary: #D5D2CE;
    --color-primary-hover: #B8B4AE;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.4);
  }
}

/* ============================================================
   LAYOUT: Sidebar + Main
   ============================================================ */
.site-wrapper {
  display: flex;
  min-height: 100dvh;
}

/* --- Sidebar --- */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100dvh;
  background: var(--color-sidebar);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) 0;
  z-index: 200;
}

.sidebar__hamburger {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sidebar-text);
  cursor: pointer;
  position: relative;
  z-index: 210;
}

.sidebar__hamburger svg {
  width: 22px;
  height: 22px;
}

.sidebar__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.theme-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sidebar-text);
  cursor: pointer;
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
}

/* --- Main Content --- */
.main-content {
  margin-left: var(--sidebar-width);
  width: calc(100% - var(--sidebar-width));
  min-height: 100dvh;
}

/* ============================================================
   NAVIGATION OVERLAY
   ============================================================ */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 400ms var(--ease-out), visibility 400ms var(--ease-out);
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-overlay__links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.nav-overlay__links a {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 200;
  color: var(--color-text);
  text-decoration: none;
  display: inline-block;
  position: relative;
  transition: opacity var(--transition-interactive);
}

.nav-overlay__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-text);
  transition: width 300ms var(--ease-out);
}

.nav-overlay__links a:hover::after {
  width: 100%;
}

.nav-overlay__links a:hover {
  opacity: 0.7;
}

/* Staggered link animation */
.nav-overlay.is-open .nav-overlay__links li {
  animation: navFadeIn 400ms var(--ease-out) both;
}
.nav-overlay.is-open .nav-overlay__links li:nth-child(1) { animation-delay: 100ms; }
.nav-overlay.is-open .nav-overlay__links li:nth-child(2) { animation-delay: 160ms; }
.nav-overlay.is-open .nav-overlay__links li:nth-child(3) { animation-delay: 220ms; }

@keyframes navFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FAFAF7;
  padding: var(--space-8);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 100;
  letter-spacing: 0.12em;
  line-height: 1.15;
  margin-bottom: var(--space-4);
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-10);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #FAFAF7;
  opacity: 0.7;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll svg {
  width: 24px;
  height: 24px;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) clamp(var(--space-6), 5vw, var(--space-16));
}

.section--narrow {
  max-width: var(--content-narrow);
  margin-inline: auto;
}

.section__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.section__heading {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 200;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

.section__text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 58ch;
}

/* ============================================================
   INTRO SECTION (Homepage)
   ============================================================ */
.intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  max-width: var(--content-default);
  margin-inline: auto;
}

@media (min-width: 768px) {
  .intro {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
  }
}

/* ============================================================
   WORK GRID (Homepage)
   ============================================================ */
.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  max-width: var(--content-wide);
  margin-inline: auto;
}

@media (min-width: 600px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .work-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.work-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: block;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}

.work-card:hover img {
  transform: scale(1.03);
}

.work-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-8) var(--space-6) var(--space-6);
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
  color: #FAFAF7;
}

.work-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.work-card__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: var(--space-1);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-hero {
  padding: clamp(var(--space-16), 10vw, var(--space-32)) clamp(var(--space-6), 5vw, var(--space-16));
  max-width: var(--content-default);
  margin-inline: auto;
}

.services-hero__heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 200;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-8);
}

.services-hero__text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 52ch;
}

/* Services list */
.services-list {
  max-width: var(--content-default);
  margin-inline: auto;
  padding: 0 clamp(var(--space-6), 5vw, var(--space-16));
}

.service-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  padding: clamp(var(--space-8), 4vw, var(--space-12)) 0;
  border-top: 1px solid var(--color-divider);
}

@media (min-width: 768px) {
  .service-item {
    grid-template-columns: 80px 1fr;
    gap: var(--space-8);
  }
}

.service-item__number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text-faint);
  line-height: 1;
}

.service-item__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-3);
}

.service-item__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 52ch;
}

/* Process section */
.process {
  max-width: var(--content-default);
  margin-inline: auto;
  padding: clamp(var(--space-16), 8vw, var(--space-32)) clamp(var(--space-6), 5vw, var(--space-16));
}

.process__heading {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 200;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-12);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
  }
}

.process-step {
  position: relative;
}

.process-step__number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-text-faint);
  line-height: 1;
  margin-bottom: var(--space-4);
}

.process-step__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-3);
}

.process-step__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Services image break */
.services-image-break {
  width: 100%;
  max-height: 50vh;
  object-fit: cover;
  margin: clamp(var(--space-8), 4vw, var(--space-16)) 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-image {
  min-height: 40vh;
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(var(--space-10), 6vw, var(--space-20)) clamp(var(--space-6), 5vw, var(--space-16));
}

.contact-details__heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 200;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-12);
}

.contact-group {
  margin-bottom: var(--space-8);
}

.contact-group__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.contact-group__value {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.7;
}

.contact-group__value a {
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
  transition: border-color var(--transition-interactive);
}

.contact-group__value a:hover {
  border-color: var(--color-text);
}

/* Contact info row */
.contact-info-row {
  display: flex;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--color-divider);
}

@media (max-width: 640px) {
  .contact-info-row {
    flex-direction: column;
    gap: var(--space-6);
  }
}

/* --- Inquiry Form --- */
.inquiry-form-section {
  margin-top: var(--space-4);
}

.inquiry-form {
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.inquiry-form input[type="text"],
.inquiry-form input[type="email"],
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-text);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 0;
  outline: none;
  transition: border-color 300ms ease;
  -webkit-appearance: none;
  appearance: none;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: var(--color-text-faint);
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--color-text);
}

.inquiry-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A8580' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
  padding-right: var(--space-10);
}

.inquiry-form textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit-btn {
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-inverse);
  background: var(--color-text);
  border: 1px solid var(--color-text);
  padding: var(--space-4) var(--space-10);
  cursor: pointer;
  transition: background 300ms ease, color 300ms ease;
}

.form-submit-btn:hover {
  background: transparent;
  color: var(--color-text);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--color-divider);
  padding: var(--space-10) clamp(var(--space-6), 5vw, var(--space-16));
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: var(--content-wide);
  margin-inline: auto;
}

@media (min-width: 768px) {
  .footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer__copy {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.footer__links {
  display: flex;
  gap: var(--space-6);
  list-style: none;
}

.footer__links a {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition-interactive);
}

.footer__links a:hover {
  color: var(--color-text);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 1;
}

@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 100%;
  }
}

@keyframes reveal-fade {
  to {
    opacity: 1;
  }
}

/* JS fallback for browsers without scroll-timeline */
.js-fade-in {
  opacity: 0;
  transition: opacity 600ms var(--ease-out);
}

.js-fade-in.is-visible {
  opacity: 1;
}

/* ============================================================
   TOP HEADER
   ============================================================ */
.top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) clamp(var(--space-6), 4vw, var(--space-12));
  position: relative;
  z-index: 5;
}

.top-header__name {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none;
}

.top-header__name:hover {
  opacity: 0.7;
}

.top-header__nav {
  display: flex;
  gap: var(--space-8);
}

.top-header__nav a {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 300ms ease;
}

.top-header__nav a:hover {
  color: var(--color-text);
}

@media (max-width: 767px) {
  .top-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-5);
  }

  .top-header__name {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
  }

  .top-header__nav {
    gap: var(--space-5);
  }

  .top-header__nav a {
    font-size: 0.6rem;
  }
}

/* ============================================================
   SVG LOGO
   ============================================================ */
.logo {
  display: inline-block;
}

.logo svg {
  width: auto;
  height: 24px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  font-weight: 100;
  letter-spacing: 0.3em;
  color: rgba(250, 250, 247, 0.85);
  text-transform: uppercase;
}

.logo-divider {
  font-weight: 100;
  opacity: 0.5;
  margin: 0 0.05em;
}

.logo-text--hero {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  font-weight: 100;
  letter-spacing: 0.3em;
  color: rgba(250, 250, 247, 0.92);
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
  transform: scaleY(1.25);
  transform-origin: center;
}

.logo-text--hero .logo-divider {
  font-weight: 100;
  opacity: 0.4;
  margin: 0 0.05em;
}

.hero-logo {
  margin-bottom: var(--space-4);
}

/* ============================================================
   RESPONSIVE: Mobile (no sidebar)
   ============================================================ */
@media (max-width: 767px) {
  :root {
    --sidebar-width: 0px;
  }

  .sidebar {
    width: 100%;
    height: auto;
    position: fixed;
    flex-direction: row;
    padding: var(--space-3) var(--space-4);
    background: color-mix(in srgb, var(--color-bg) 90%, transparent);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .sidebar__bottom {
    flex-direction: row;
  }

  .main-content {
    margin-left: 0;
    width: 100%;
    padding-top: 56px; /* height of mobile header */
  }
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* Small-caps label utility */
.label-caps {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* --- Press Feature --- */
.press-feature {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: clamp(var(--space-6), 5vw, var(--space-16));
}

.press-feature__link {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-8) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-text);
  transition: opacity 0.3s ease;
}

.press-feature__link:hover {
  opacity: 0.7;
}

.press-feature__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 200;
  font-style: normal;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.press-feature__title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  flex: 1;
}

.press-feature__arrow {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.press-feature__link:hover .press-feature__arrow {
  transform: translateX(4px);
}

@media (max-width: 640px) {
  .press-feature__link {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }

  .press-feature__arrow {
    display: none;
  }
}
