@charset "UTF-8";

:root {
  --white: #ffffff;
  --light: #f4f4f4;
  --dark: #111111;
  --muted: #6b7280;
  --border: rgba(255, 255, 255, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--dark);
  background: #f5f5f5;
  overflow-x: hidden;
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  padding: 18px 24px 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: clamp(88px, 9vw, 124px);
  height: auto;
  filter: drop-shadow(0 1px 18px rgba(0, 0, 0, 0.28));
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.nav-toggle-button {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 34px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.68);
}

.nav-links a {
  padding: 8px 0;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links .active {
  color: var(--white);
}

.nav-links .active {
  color: var(--white);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.34);
}

.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background-color: var(--light);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.26) 42%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.04) 38%, rgba(0, 0, 0, 0.48) 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: min(100%, 1200px);
  height: 100vh;
  height: 100svh;
  margin: 0 auto;
  padding: 290px 24px 90px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: min(100%, 880px);
}

.copyright-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-title {
  margin: 0;
  line-height: 1;
}

.hero-logo {
  display: block;
  width: clamp(300px, 40vw, 540px);
  max-height: 45vh;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.36));
}

.hero p {
  margin: 0;
}

.hero-content p {
  max-width: 560px;
  margin-top: 6px;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 24px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.hero-button:hover {
  border-color: rgba(255, 255, 255, 0.72);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.copyright-pill {
  position: absolute;
  left: 24px;
  bottom: 24px;
  margin-top: 100px;
  min-height: 20px;
  padding: 4px 9px;
  font-size: 6px;
  font-weight: 300;
  line-height: 1;
}

.home-intro-section,
.home-summary-section,
.home-cta-section {
  background: #f5f5f5;
}

.home-intro-section {
  border-bottom: 1px solid #dedede;
  padding: 72px 24px 42px;
}

.home-intro-inner,
.home-summary-section,
.home-cta-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.home-intro-inner {
  max-width: 900px;
  text-align: center;
}

.home-summary-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border: 1px solid #dddddd;
  border-radius: 999px;
  color: #1f1f1f;
  background: #ffffff;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
}

.home-intro-inner h2 {
  margin: 18px 0 0;
  color: #090909;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.home-intro-inner p {
  max-width: 760px;
  margin: 22px auto 0;
  color: #606060;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 500;
}

.home-summary-section {
  display: grid;
  gap: 0;
  padding: 0 24px;
}

.home-summary-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 54px;
  align-items: center;
  min-width: 0;
  padding: 58px 0;
  border-bottom: 1px solid #dedede;
  background: transparent;
  box-shadow: none;
}

.home-summary-card:nth-child(even) .home-summary-media {
  order: 2;
}

.home-summary-card.is-featured {
  border-color: #d6d6d6;
  background: transparent;
}

.home-summary-media {
  display: block;
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #e8e8e8;
  aspect-ratio: 16 / 10;
}

.home-summary-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 420ms ease;
}

.home-summary-media:hover .home-summary-image {
  transform: scale(1.035);
}

.home-summary-content {
  min-width: 0;
  padding: 10px 10px 10px 2px;
}

.home-summary-content h2 {
  margin: 18px 0 0;
  color: #111111;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.home-summary-content p {
  margin: 18px 0 0;
  color: #626262;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
}

.home-summary-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.home-summary-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #dedede;
  border-radius: 999px;
  color: #202020;
  background: #f7f7f7;
  font-size: 12px;
  font-weight: 800;
}

.home-summary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 26px;
  padding: 0 20px;
  border: 1px solid rgba(17, 17, 17, 0.22);
  border-radius: 14px;
  color: #555555;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.08);
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.home-summary-button:hover {
  transform: translateY(-1px);
  color: #2f2f2f;
  border-color: rgba(17, 17, 17, 0.36);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 34px rgba(17, 17, 17, 0.1);
}

.home-summary-button.is-secondary {
  color: #555555;
  background: rgba(255, 255, 255, 0.38);
}

.home-summary-button.is-secondary:hover {
  color: #2f2f2f;
  background: rgba(255, 255, 255, 0.82);
}

.home-cta-section {
  padding: 58px 24px 76px;
}

.home-cta-inner {
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #111111;
  background: transparent;
  box-shadow: none;
}

.home-cta-inner h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.home-cta-inner p {
  max-width: 720px;
  margin: 0;
  color: #626262;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
}

.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.home-cta-actions .home-summary-button {
  border-color: rgba(17, 17, 17, 0.22);
  color: #555555;
  background: rgba(255, 255, 255, 0.56);
}

.home-cta-actions .home-summary-button:hover {
  color: #2f2f2f;
  border-color: rgba(17, 17, 17, 0.36);
  background: rgba(255, 255, 255, 0.86);
}

.home-cta-actions .home-summary-button.is-secondary {
  color: #555555;
  background: transparent;
}

.home-cta-actions .home-summary-button.is-secondary:hover {
  color: #2f2f2f;
  background: rgba(255, 255, 255, 0.82);
}

[data-reveal] {
  opacity: 0;
  transform: translateX(-34px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateX(0);
}

.home-summary-card:nth-child(even)[data-reveal] {
  transform: translateX(34px);
}

.home-summary-card:nth-child(even)[data-reveal].is-visible {
  transform: translateX(0);
}

.projects-page {
  min-height: 100%;
  background: #f5f5f5;
  overflow-y: auto;
}

.projects-page .site-header {
  position: relative;
  padding-bottom: 18px;
  background: transparent;
}

.projects-page .nav-links {
  color: rgba(17, 17, 17, 0.62);
}

.projects-page .nav-links a:hover,
.projects-page .nav-links .active {
  color: #111111;
}

.projects-page .nav-links .active {
  text-shadow: none;
}

.projects-page .brand-logo {
  filter: none;
}

.projects-section {
  padding: 58px 24px 86px;
  background: #f5f5f5;
}

.contact-page {
  min-height: 100%;
  color: #111111;
  background: #f6f6f6;
  overflow-x: hidden;
}

.contact-page .site-header {
  position: relative;
  padding-bottom: 18px;
  background: transparent;
}

.contact-page .brand-logo {
  filter: none;
}

.contact-page .nav-links {
  color: rgba(17, 17, 17, 0.62);
}

.contact-page .nav-links a:hover,
.contact-page .nav-links .active {
  color: #111111;
}

.contact-page .nav-links .active {
  text-shadow: none;
}

.about-page {
  min-height: 100%;
  color: #111111;
  background: #f6f6f6;
  overflow-x: hidden;
}

.about-page .site-header {
  position: relative;
  padding-bottom: 18px;
  background: transparent;
}

.about-page .brand-logo {
  filter: none;
}

.about-page .nav-links {
  color: rgba(17, 17, 17, 0.62);
}

.about-page .nav-links a:hover,
.about-page .nav-links .active {
  color: #111111;
}

.about-page .nav-links .active {
  text-shadow: none;
}

.about-hero {
  padding: 58px 24px 48px;
  background:
    linear-gradient(180deg, #f7f7f7 0%, #ffffff 72%, #f6f6f6 100%);
}

.about-hero-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.about-hero h1 {
  max-width: 880px;
  margin: 0;
  color: #090909;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.about-hero-description {
  max-width: 760px;
  margin: 22px 0 0;
  color: #606060;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 500;
}

.about-timeline-section {
  padding: 28px 24px 94px;
  background: #f6f6f6;
}

.about-timeline {
  position: relative;
  display: grid;
  gap: 58px;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.about-timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 50%;
  width: 1px;
  background: #d8d8d8;
  transform: translateX(-50%);
}

.about-timeline-card {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.about-timeline-card::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 50%;
  z-index: 1;
  width: 13px;
  height: 13px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: #111111;
  box-shadow: 0 0 0 1px #d8d8d8;
  transform: translateX(-50%);
}

.about-timeline-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-timeline-card:nth-child(odd) .about-timeline-content {
  grid-column: 1;
}

.about-timeline-card:nth-child(even) .about-timeline-content {
  grid-column: 2;
}

.about-timeline-content {
  min-width: 0;
  padding: 24px;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.07);
}

.about-timeline-period {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border: 1px solid #dddddd;
  border-radius: 999px;
  color: #1f1f1f;
  background: #f7f7f7;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
}

.about-timeline-content h2 {
  margin: 18px 0 0;
  color: #111111;
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}

.about-timeline-content p {
  margin: 16px 0 0;
  color: #626262;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
}

.about-timeline-image-wrap {
  margin-top: 22px;
  overflow: hidden;
  border-radius: 8px;
  background: #e8e8e8;
  aspect-ratio: 16 / 10;
}

.about-timeline-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 420ms ease;
}

.about-timeline-content:hover .about-timeline-image {
  transform: scale(1.035);
}

.contact-section {
  padding: 58px 24px 86px;
  background: linear-gradient(180deg, #f7f7f7 0%, #ffffff 46%, #f6f6f6 100%);
}

.contact-container {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.contact-intro {
  max-width: 900px;
}

.contact-intro h1 {
  margin: 0;
  color: #090909;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.contact-service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.contact-service-list span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  color: #171717;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.06);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
}

.contact-description {
  max-width: 740px;
  margin: 24px 0 0;
  color: #666666;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.45fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 44px;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.contact-card,
.contact-map-card {
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(17, 17, 17, 0.08);
}

.contact-card {
  display: flex;
  gap: 16px;
  min-width: 0;
  padding: 22px;
}

.contact-card-link {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-card-link:hover {
  transform: translateY(-2px);
  border-color: #cfcfcf;
  box-shadow: 0 22px 54px rgba(17, 17, 17, 0.11);
}

.contact-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #111111;
  background: #f1f1f1;
}

.contact-card-icon svg,
.contact-social-button svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-card-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.contact-card-title {
  display: block;
  margin-bottom: 8px;
  color: #777777;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
}

.contact-card strong {
  color: #111111;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-card-note {
  margin-top: 6px;
  color: #6f6f6f;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

.contact-social-button,
.contact-directions-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border: 1px solid rgba(17, 17, 17, 0.22);
  border-radius: 14px;
  color: #555555;
  background: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.contact-social-button {
  width: 100%;
  padding: 0 18px;
}

.contact-social-button:hover,
.contact-directions-button:hover {
  transform: translateY(-1px);
  color: #2f2f2f;
  border-color: rgba(17, 17, 17, 0.36);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 32px rgba(17, 17, 17, 0.08);
}

.contact-map-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 22px;
}

.contact-map-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.contact-map-header h2 {
  margin: 0;
  color: #111111;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0;
}

.contact-directions-button {
  flex: 0 0 auto;
  padding: 0 18px;
}

.contact-map-frame {
  position: relative;
  flex: 1 1 auto;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  background: #eeeeee;
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.caletta-page {
  min-height: 100%;
  background: #eeecec;
  color: #111827;
}

.caletta-hero {
  position: relative;
  min-height: 92vh;
  min-height: 92svh;
  overflow: hidden;
  background: #111111;
}

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

.caletta-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0.38) 46%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.08) 44%, rgba(0, 0, 0, 0.58) 100%);
}

.caletta-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, 1200px);
  min-height: 92vh;
  min-height: 92svh;
  margin: 0 auto;
  padding: 120px 24px 110px;
}

.caletta-eyebrow,
.caletta-hero-specs {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
}

.caletta-hero h1 {
  max-width: 780px;
  margin: 16px 0 10px;
  color: #ffffff;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.96;
  font-weight: 700;
}

.caletta-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 600;
}

.caletta-gallery-section {
  overflow: hidden;
  padding: 78px 0 92px;
  background: #eeecec;
}

.caletta-section-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 36px;
  margin: 0 0 18px;
  padding: 0 15px;
  border: 1px solid #d7d7d7;
  border-radius: 999px;
  color: #4b5563;
  background: rgba(255, 255, 255, 0.36);
  font-size: 13px;
  font-weight: 600;
}

.caletta-section-inner h2,
.caletta-video-copy h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.08;
  font-weight: 700;
}

.caletta-section-inner h2 em,
.caletta-video-copy h2 em {
  display: block;
  font-style: italic;
}

.caletta-gallery-strip {
  display: flex;
  gap: 20px;
  width: 100%;
  margin-top: 48px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2)) 18px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-color: #999999 #e6e3e3;
}

.caletta-gallery-item {
  flex: 0 0 min(360px, 30vw);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #d8d8d8;
  cursor: pointer;
  scroll-snap-align: start;
}

.caletta-gallery-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.caletta-gallery-item:hover .caletta-gallery-image,
.caletta-gallery-item:focus-visible .caletta-gallery-image {
  transform: scale(1.035);
}

.caletta-video-section {
  padding: 78px 24px 28px;
  background:
    radial-gradient(circle at 20% 42%, rgba(212, 247, 247, 0.54), transparent 28%),
    radial-gradient(circle at 70% 38%, rgba(235, 231, 255, 0.62), transparent 30%),
    #ffffff;
}

.caletta-video-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: center;
  gap: 72px;
  width: min(100%, 1060px);
  margin: 0 auto;
}

.caletta-video-copy p:last-child {
  max-width: 520px;
  margin: 16px 0 0;
  color: #5f6875;
  font-size: 18px;
  line-height: 1.55;
}

.caletta-video-frame {
  padding: 12px;
  border: 1px solid #dfdfdf;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.caletta-video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 610px;
  border-radius: 18px;
  object-fit: cover;
  background: #111111;
}

.caletta-feature-cards {
  padding: 18px 24px 70px;
  background: #ffffff;
}

.caletta-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 1000px);
  margin: 0 auto;
}

.caletta-info-card {
  min-height: 88px;
  padding: 20px 18px 16px;
  border: 1px solid #e1e1e1;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.caletta-info-card strong,
.caletta-info-card span {
  display: block;
}

.caletta-info-card strong {
  color: #5b5b62;
  font-size: 32px;
  line-height: 1;
}

.caletta-info-card span {
  margin-top: 8px;
  color: #6b7280;
  font-size: 13px;
  font-weight: 600;
}

.caletta-specs-section {
  padding: 78px 0 98px;
  background: #eeecec;
}

.caletta-specs-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  margin-top: 26px;
  padding: 32px;
  border-radius: 22px;
  background: #ffffff;
}

.caletta-specs-column + .caletta-specs-column {
  border-left: 1px solid #8f8f8f;
  padding-left: 32px;
}

.caletta-specs-column h3 {
  margin: 0 0 14px;
  color: #909090;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.caletta-specs-column dl {
  margin: 0 0 28px;
}

.caletta-specs-column dl:last-child {
  margin-bottom: 0;
}

.caletta-specs-column dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid #e9e9e9;
}

.caletta-specs-column dl div:last-child {
  border-bottom: 0;
}

.caletta-specs-column dt,
.caletta-specs-column dd {
  margin: 0;
  color: #5f6875;
  font-size: 15px;
  line-height: 1.35;
}

.caletta-specs-column dd {
  color: #1f2937;
  font-weight: 800;
  text-align: right;
}

.projects-container {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.projects-title {
  margin: 0 0 32px;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.08;
  font-weight: 800;
  color: #111111;
}

.projects-list {
  display: grid;
  gap: 28px;
}

.project-card {
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  color: #111111;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.project-card:hover,
.project-card:focus-visible {
  transform: translateY(-4px);
  border-color: #d4d4d4;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.14);
}

.project-card:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 4px;
}

.project-card-image-wrap {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: #dedede;
}

.project-card-gallery-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  color: #4d4d4d;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.12);
  backdrop-filter: blur(12px);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.project-card:hover .project-card-gallery-badge,
.project-card:focus-visible .project-card-gallery-badge {
  transform: translateY(-1px);
  color: #2f2f2f;
  background: rgba(255, 255, 255, 0.9);
}

.project-card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(8%);
  transition: transform 240ms ease, filter 240ms ease;
}

.project-card:hover .project-card-image,
.project-card:focus-visible .project-card-image {
  transform: scale(1.025);
  filter: grayscale(0%);
}

.project-card-body {
  display: block;
  padding: 30px 34px 34px;
}

.project-card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.project-card-title {
  display: block;
  min-width: 0;
  font-size: clamp(20px, 2.3vw, 27px);
  line-height: 1;
  font-weight: 800;
  color: #111111;
}

.project-card-detail-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(17, 17, 17, 0.22);
  border-radius: 14px;
  color: #555555;
  background: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.project-card-detail-link:hover,
.project-card-detail-link:focus-visible {
  transform: translateY(-1px);
  color: #2f2f2f;
  border-color: rgba(17, 17, 17, 0.36);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.08);
}

.project-card-separator {
  display: block;
  width: 100%;
  height: 1px;
  margin: 26px 0;
  background: #dddddd;
}

.project-card-info {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.project-card-info-item,
.project-card-info-label,
.project-card-info-value {
  display: block;
}

.project-card-info-label {
  margin-bottom: 7px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
  color: #777777;
}

.project-card-info-value {
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
  color: #111111;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 26px;
  background: rgba(0, 0, 0, 0.86);
}

.gallery-modal.is-open {
  display: flex;
}

.modal-open {
  overflow: hidden;
}

.gallery-modal-dialog {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 1120px);
  height: min(82vh, 760px);
}

.gallery-modal-image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  object-fit: contain;
  background: #111111;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
}

.gallery-modal-close,
.gallery-modal-arrow {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  background: rgba(17, 17, 17, 0.62);
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.gallery-modal-close:hover,
.gallery-modal-arrow:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.16);
}

.gallery-modal-close {
  top: -6px;
  right: -6px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 28px;
  line-height: 1;
}

.gallery-modal-arrow {
  top: 50%;
  width: 46px;
  height: 64px;
  border-radius: 8px;
  font-size: 42px;
  transform: translateY(-50%);
}

.gallery-modal-prev {
  left: 14px;
}

.gallery-modal-next {
  right: 14px;
}

.gallery-modal-counter {
  position: absolute;
  left: 50%;
  bottom: -44px;
  transform: translateX(-50%);
  min-width: 58px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.site-footer {
  border-top: 1px solid #e5e5e5;
  background: transparent;
}

.site-footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 30px 24px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.footer-logo {
  display: block;
  width: 82px;
  height: auto;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 26px;
  font-size: 13px;
  font-weight: 600;
  color: #666666;
}

.footer-links a {
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: #111111;
}

.footer-copy {
  margin: 0;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 500;
  color: #777777;
  text-align: right;
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 16px 0;
  }

  .hero {
    background-image: url("../assets/img/caletta10.JPG");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 82vh;
    height: 82svh;
  }

  .hero-video {
    display: none;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.08) 44%, rgba(0, 0, 0, 0.34) 100%);
  }

  .navbar {
    position: relative;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 6px 0;
  }

  .brand {
    max-width: calc(100% - 64px);
  }

  .brand-logo {
    width: 88px;
  }

  .nav-toggle-button {
    position: absolute;
    top: 6px;
    right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 38px;
    height: 38px;
    margin-left: auto;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    cursor: pointer;
  }

  .nav-toggle-button span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--white);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-toggle:focus-visible + .nav-toggle-button {
    outline: 2px solid var(--white);
    outline-offset: 3px;
  }

  .nav-toggle:checked + .nav-toggle-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked + .nav-toggle-button span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .nav-toggle-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border: 0 solid var(--border);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(17, 17, 17, 0.64);
    backdrop-filter: blur(16px);
    font-size: 13px;
    transition: max-height 220ms ease, padding 220ms ease, border-width 220ms ease;
  }

  .nav-toggle:checked ~ .nav-links {
    max-height: 260px;
    padding: 8px 0;
    border-width: 1px;
  }

  .nav-links a {
    padding: 10px 14px;
  }

  .nav-links .active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    text-shadow: none;
  }

  .hero-container {
    justify-content: center;
    height: 82vh;
    height: 82svh;
    padding: 0 18px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
  }

  .hero-title {
    margin: 0;
  }

  .hero-logo {
    width: min(100%, 300px);
    margin: 0 auto;
  }

  .hero-content p {
    max-width: 340px;
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.45;
    text-align: center;
  }

  .copyright-pill {
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    margin-top: 0;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.74);
  }

  .hero-button {
    min-height: 44px;
    margin-top: 16px;
    padding: 0 18px;
    font-size: 13px;
  }

  .home-intro-section {
    padding: 46px 16px 24px;
  }

  .home-intro-inner {
    text-align: left;
  }

  .home-intro-inner h2 {
    font-size: clamp(25px, 8vw, 34px);
    line-height: 1.06;
    overflow-wrap: anywhere;
  }

  .home-intro-inner p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.65;
  }

  .home-summary-section {
    gap: 0;
    padding: 0 16px;
  }

  .home-summary-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 34px 0;
  }

  .home-summary-card:nth-child(even) .home-summary-media {
    order: 0;
  }

  .home-summary-media {
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .home-summary-content {
    width: 100%;
    padding: 20px 2px 2px;
  }

  .home-summary-content h2 {
    margin-top: 16px;
    font-size: clamp(23px, 7vw, 30px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .home-summary-content p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.68;
  }

  .home-summary-highlights {
    gap: 8px;
    margin-top: 18px;
  }

  .home-summary-highlights span {
    min-height: 32px;
    font-size: 11px;
  }

  .home-summary-button {
    width: 100%;
    min-height: 46px;
    margin-top: 22px;
  }

  .home-cta-section {
    border-bottom: 1px solid #dedede;
    padding: 38px 16px 58px;
  }

  .home-cta-inner {
    padding: 0;
  }

  .home-cta-inner h2 {
    font-size: clamp(23px, 7vw, 30px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .home-cta-inner p {
    font-size: 14px;
    line-height: 1.68;
  }

  .home-cta-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .projects-page .site-header {
    padding-bottom: 4px;
  }

  .projects-page .nav-toggle-button {
    position: fixed;
    top: 18px;
    right: 16px;
    z-index: 30;
    border-color: rgba(17, 17, 17, 0.18);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  }

  .projects-page .nav-toggle-button span {
    background: #111111;
  }

  .projects-page .nav-links {
    color: rgba(17, 17, 17, 0.72);
    background: rgba(255, 255, 255, 0.92);
  }

  .projects-page .nav-links .active {
    color: #111111;
    background: rgba(17, 17, 17, 0.08);
  }

  .contact-page .site-header {
    padding-bottom: 4px;
  }

  .contact-page .nav-toggle-button {
    position: fixed;
    top: 18px;
    right: 16px;
    z-index: 30;
    border-color: rgba(17, 17, 17, 0.18);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  }

  .contact-page .nav-toggle-button span {
    background: #111111;
  }

  .contact-page .nav-links {
    color: rgba(17, 17, 17, 0.72);
    background: rgba(255, 255, 255, 0.92);
  }

  .contact-page .nav-links .active {
    color: #111111;
    background: rgba(17, 17, 17, 0.08);
  }

  .about-page .site-header {
    padding-bottom: 4px;
  }

  .about-page .nav-toggle-button {
    position: fixed;
    top: 18px;
    right: 16px;
    z-index: 30;
    border-color: rgba(17, 17, 17, 0.18);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  }

  .about-page .nav-toggle-button span {
    background: #111111;
  }

  .about-page .nav-links {
    color: rgba(17, 17, 17, 0.72);
    background: rgba(255, 255, 255, 0.92);
  }

  .about-page .nav-links .active {
    color: #111111;
    background: rgba(17, 17, 17, 0.08);
  }

  .projects-section {
    padding: 24px 16px 64px;
  }

  .about-hero {
    padding: 32px 16px 30px;
  }

  .about-hero h1 {
    max-width: 100%;
    font-size: clamp(25px, 8vw, 34px);
    line-height: 1.06;
    overflow-wrap: anywhere;
  }

  .about-hero-description {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.65;
  }

  .about-timeline-section {
    padding: 24px 16px 66px;
  }

  .about-timeline {
    display: block;
  }

  .about-timeline::before,
  .about-timeline-card::before {
    display: none;
  }

  .about-timeline-card {
    display: block;
    margin-top: 22px;
    transform: translateY(18px);
  }

  .about-timeline-card:first-child {
    margin-top: 0;
  }

  .about-timeline-card:nth-child(odd) .about-timeline-content,
  .about-timeline-card:nth-child(even) .about-timeline-content {
    grid-column: auto;
  }

  .about-timeline-content {
    padding: 18px;
  }

  .about-timeline-content h2 {
    margin-top: 16px;
    font-size: clamp(20px, 6vw, 26px);
    line-height: 1.14;
    overflow-wrap: anywhere;
  }

  .about-timeline-content p {
    font-size: 14px;
    line-height: 1.68;
  }

  .about-timeline-image-wrap {
    margin-top: 18px;
    aspect-ratio: 4 / 3;
  }

  .contact-section {
    padding: 32px 16px 64px;
  }

  .contact-intro h1 {
    font-size: clamp(23px, 7.5vw, 30px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .contact-service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
  }

  .contact-service-list span {
    min-height: 50px;
    padding: 12px 13px;
    font-size: 13px;
  }

  .contact-description {
    margin-top: 20px;
    font-size: 15px;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    margin-top: 30px;
  }

  .contact-card,
  .contact-map-card {
    padding: 18px;
  }

  .contact-card strong {
    font-size: 16px;
  }

  .contact-map-header {
    flex-direction: column;
    gap: 14px;
  }

  .contact-directions-button {
    width: 100%;
  }

  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 340px;
  }

  .caletta-hero {
    min-height: 88vh;
    min-height: 88svh;
  }

  .caletta-hero-image {
    object-position: center;
  }

  .caletta-hero-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.16) 40%, rgba(0, 0, 0, 0.62) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.2) 100%);
  }

  .caletta-hero-content {
    justify-content: flex-end;
    min-height: 88vh;
    min-height: 88svh;
    padding: 118px 18px 96px;
  }

  .caletta-eyebrow,
  .caletta-hero-specs {
    max-width: 100%;
    font-size: 14px;
  }

  .caletta-hero h1 {
    max-width: 100%;
    margin: 12px 0 10px;
    font-size: clamp(32px, 11vw, 46px);
    overflow-wrap: anywhere;
  }

  .caletta-gallery-section {
    padding: 48px 0 54px;
  }

  .caletta-section-inner {
    padding: 0 18px;
  }

  .section-pill {
    min-height: 32px;
    margin-bottom: 14px;
    padding: 0 13px;
    font-size: 12px;
  }

  .caletta-section-inner h2,
  .caletta-video-copy h2 {
    font-size: clamp(24px, 8vw, 32px);
  }

  .caletta-gallery-strip {
    gap: 14px;
    margin-top: 30px;
    padding: 0 18px 14px;
    scroll-padding-inline: 18px;
  }

  .caletta-gallery-item {
    flex-basis: min(82vw, 340px);
    border-radius: 8px;
  }

  .caletta-video-section,
  .caletta-feature-cards {
    display: none;
  }

  .caletta-specs-section {
    padding: 48px 0 58px;
  }

  .caletta-specs-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 22px;
    padding: 22px 18px;
    border-radius: 16px;
  }

  .caletta-specs-column + .caletta-specs-column {
    border-left: 0;
    padding-left: 0;
  }

  .caletta-specs-column dl {
    margin-bottom: 24px;
  }

  .caletta-specs-column dl div {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
    padding: 11px 0;
  }

  .caletta-specs-column dt,
  .caletta-specs-column dd {
    font-size: 14px;
  }

  .caletta-specs-column dd {
    text-align: left;
  }

  .projects-title {
    margin-bottom: 22px;
  }

  .projects-list {
    gap: 22px;
  }

  .project-card {
    border-radius: 12px;
  }

  .project-card-image-wrap {
    aspect-ratio: 4 / 3;
  }

  .project-card-gallery-badge {
    top: 12px;
    right: 12px;
    min-height: 31px;
    padding: 0 11px;
    font-size: 11px;
  }

  .project-card-body {
    padding: 22px 20px 24px;
  }

  .project-card-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .project-card-detail-link {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }

  .project-card-separator {
    margin: 20px 0;
  }

  .project-card-info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .gallery-modal {
    padding: 18px;
  }

  .gallery-modal-dialog {
    height: 76vh;
  }

  .gallery-modal-close {
    top: 8px;
    right: 8px;
    width: 38px;
    height: 38px;
  }

  .gallery-modal-arrow {
    width: 38px;
    height: 52px;
    font-size: 34px;
  }

  .gallery-modal-prev {
    left: 6px;
  }

  .gallery-modal-next {
    right: 6px;
  }

  .gallery-modal-counter {
    bottom: -38px;
  }

  .site-footer-container {
    flex-direction: column;
    gap: 18px;
    padding: 28px 18px;
    text-align: center;
  }

  .footer-logo {
    width: 74px;
  }

  .footer-links {
    gap: 10px 18px;
    font-size: 12px;
  }

  .footer-copy {
    text-align: center;
  }
}

@media (max-width: 420px) {
  .nav-links {
    gap: 2px 12px;
    font-size: 12px;
  }

  .brand-logo {
    width: 78px;
  }

  .hero-logo {
    width: min(100%, 260px);
  }

  .contact-service-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-card {
    gap: 12px;
  }

  .contact-card-icon {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal],
  .about-timeline-card,
  .home-summary-image,
  .about-timeline-image {
    transition: none;
  }

  [data-reveal],
  .about-timeline-card {
    opacity: 1;
    transform: none;
  }

  .home-summary-media:hover .home-summary-image,
  .about-timeline-content:hover .about-timeline-image {
    transform: none;
  }
}
