/* ===========================
   CSS Custom Properties
   =========================== */
:root {
  --bg:        rgba(10, 10, 10, 0.82);
  --surface:   rgba(17, 17, 17, 0.85);
  --text:      #f0e6cc;
  --text-mid:  #b8a98a;
  --text-dim:  #7a6a52;
  --accent:    #c9a044;
  --hover:     #d4b05a;
  --border:    #2a2318;
  --border-mid:#3a3020;
  --nav-h:     80px;
}

/* ===========================
   Reset & Base
   =========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('/images/laser_background.jpg') center / cover no-repeat fixed;
  background-color: #000;
}

body {
  margin: 0;
  padding: 0;
  background: transparent;
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  color: var(--text);
  font-size: 18px;
  line-height: 1.75;
}

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

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: "EB Garamond", Georgia, serif;
  font-weight: 400;
  line-height: 1.25;
  margin-top: 0;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); letter-spacing: 0.01em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); letter-spacing: 0.01em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }

p {
  margin-top: 0;
  margin-bottom: 1.1em;
  color: var(--text);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--hover);
}

.label {
  display: inline-block;
  font-size: 0.72rem;
  font-family: "EB Garamond", Georgia, serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ===========================
   Layout Utilities
   =========================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.section--surface {
  background: var(--surface);
}

.section--dark {
  background: var(--bg);
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  border: 1px solid var(--accent);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}

.btn:hover {
  background: var(--hover);
  border-color: var(--hover);
  color: var(--bg);
  text-decoration: none;
}

.btn--outline {
  background: transparent;
  color: var(--accent);
}

.btn--outline:hover {
  background: var(--accent);
  color: var(--bg);
}

/* ===========================
   Navigation
   =========================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s;
}

.site-nav.scrolled {
  background: var(--bg);
  border-bottom-color: var(--border);
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

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

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s, opacity 0.25s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  z-index: 999;
}

.nav-mobile.open {
  display: block;
}

.nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.nav-mobile a {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--accent);
}

/* ===========================
   Hero
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: calc(var(--nav-h) + 4rem) 0 5rem;
  background: var(--bg);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,160,68,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(201,160,68,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero__label {
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 2rem;
  line-height: 1.35;
  max-width: 820px;
}

.hero__subhead {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text-mid);
  max-width: 680px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===========================
   Origin Section
   =========================== */
.origin {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.origin__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.origin__heading {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

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

/* ===========================
   Domain Grid
   =========================== */
.domains {
  background: var(--bg);
}

.domains__header {
  margin-bottom: 3rem;
}

.domains__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}

.domain-card {
  background: var(--surface);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: background 0.25s;
}

.domain-card:hover {
  background: #161410;
}

.domain-card__label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: "EB Garamond", Georgia, serif;
  margin-bottom: 1rem;
}

.domain-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.domain-card p {
  font-size: 1rem;
  color: var(--text-mid);
  flex: 1;
  margin-bottom: 1.5rem;
}

.domain-card__link {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s, color 0.2s;
}

.domain-card__link::after {
  content: "\2192";
}

.domain-card__link:hover {
  color: var(--hover);
  gap: 0.7rem;
  text-decoration: none;
}

/* ===========================
   Technology Layers
   =========================== */
.tech-layers {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tech-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}

.tech-row:last-child {
  border-bottom: none;
}

.tech-row--reverse .tech-row__content {
  order: 2;
}

.tech-row--reverse .tech-row__visual {
  order: 1;
}

.tech-row__content .label {
  display: block;
  margin-bottom: 0.75rem;
}

.tech-row__content h2 {
  margin-bottom: 1.25rem;
}

.tech-row__content p {
  color: var(--text-mid);
  font-size: 1.05rem;
}

/* Diagram placeholder */
.diagram-placeholder {
  background: #0d0d0b;
  border: 1px solid var(--border-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.diagram-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(201,160,68,0.03) 0%, transparent 50%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(201,160,68,0.03) 40px,
      rgba(201,160,68,0.03) 41px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(201,160,68,0.03) 40px,
      rgba(201,160,68,0.03) 41px
    );
  pointer-events: none;
}

.diagram-placeholder__icon {
  font-size: 2.5rem;
  color: var(--border-mid);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  line-height: 1;
}

.diagram-placeholder__caption {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  position: relative;
  z-index: 1;
}

/* Diagram image */
.tech-diagram {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--border-mid);
  background: #0d0d0b;
}

.tech-diagram__caption {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 0.75rem;
  text-align: center;
}

/* ===========================
   Capabilities / Comparison Section
   =========================== */
.capabilities {
  background: var(--bg);
}

.capabilities__header {
  margin-bottom: 2rem;
}

.capabilities__disclaimer {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.capabilities__intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.capabilities__caveat {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-top: 2rem;
  font-style: italic;
}

.comparison-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.comparison-table thead tr {
  background: var(--surface);
  border-bottom: 2px solid var(--border-mid);
}

.comparison-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.comparison-table th.comparison-table__axis {
  width: 16%;
  color: var(--text-dim);
}

.comparison-table th.comparison-table__ddr {
  color: var(--accent);
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--border);
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table tbody tr:hover td,
.comparison-table tbody tr:hover th {
  background: #141210;
}

.comparison-table tbody th {
  padding: 1.25rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--surface);
  vertical-align: top;
  border-right: 1px solid var(--border);
  white-space: nowrap;
}

.comparison-table td {
  padding: 1.25rem 1.25rem;
  color: var(--text-mid);
  background: var(--surface);
  vertical-align: top;
  line-height: 1.65;
  border-right: 1px solid var(--border);
}

.comparison-table td:last-child {
  border-right: none;
}

.comparison-table td.comparison-table__ddr {
  color: var(--text);
  background: rgba(201, 160, 68, 0.04);
  border-left: 2px solid var(--accent);
}

/* ===========================
   Closing / CTA Section
   =========================== */
.closing {
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 6rem 0;
}

.closing__inner {
  max-width: 680px;
  margin: 0 auto;
}

.closing .label {
  margin-bottom: 1.25rem;
}

.closing h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1.5rem;
}

.closing p {
  color: var(--text-mid);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.closing__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================
   Inner Pages — General
   =========================== */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 0 3rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.page-hero .label {
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  margin-bottom: 1.25rem;
}

.page-hero p {
  color: var(--text-mid);
  max-width: 680px;
  font-size: 1.1rem;
}

.page-content {
  padding: 4rem 0 6rem;
}

/* ===========================
   Technology Page
   =========================== */
.tech-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.tech-section:last-child {
  border-bottom: none;
}

.tech-section__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

.tech-section__sidebar h3 {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.tech-section__sidebar p {
  font-size: 0.9rem;
  color: var(--text-dim);
}

.tech-section h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 1.25rem;
}

.tech-section p {
  color: var(--text-mid);
  max-width: 68ch;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  font-size: 0.95rem;
}

.spec-table tr {
  border-bottom: 1px solid var(--border);
}

.spec-table td {
  padding: 0.85rem 1rem;
  color: var(--text-mid);
}

.spec-table td:first-child {
  color: var(--text);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: 45%;
  padding-left: 0;
}

/* ===========================
   Applications Page
   =========================== */
.app-domain {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}

.app-domain:last-child {
  border-bottom: none;
}

.app-domain__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.app-domain__content .label {
  display: block;
  margin-bottom: 0.75rem;
}

.app-domain__content h2 {
  margin-bottom: 1.25rem;
}

.app-domain__content p {
  color: var(--text-mid);
}

.app-domain__specs {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem;
}

.app-domain__specs h4 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  margin-top: 0;
}

.spec-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.spec-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-mid);
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.spec-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.spec-list li::before {
  content: "\2014";
  color: var(--accent);
  flex-shrink: 0;
}

/* ===========================
   IP Portfolio Page
   =========================== */
.portfolio-intro {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
}

.portfolio-intro p {
  max-width: 68ch;
  color: var(--text-mid);
}

.patent-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 3rem;
}

.patent-card {
  padding: 2rem 2.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  transition: background 0.25s;
}

.patent-card:last-child {
  border-bottom: none;
}

.patent-card:hover {
  background: #161410;
}

.patent-card__badge {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border-mid);
  padding: 0.3rem 0.7rem;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: "EB Garamond", Georgia, serif;
}

.patent-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.patent-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 0;
}

.patent-card p + p {
  margin-top: 0.75rem;
}

.patent-card__number {
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.patent-card__plain {
  font-style: italic;
  margin-bottom: 0.75rem;
}

.patent-card__list {
  margin: 0.75rem 0 0 1.25rem;
  padding: 0;
  font-size: 0.95rem;
  color: var(--text-mid);
}

.patent-card__list li {
  margin-bottom: 0.5rem;
}

.patent-card__list li:last-child {
  margin-bottom: 0;
}

.patent-section-heading {
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.patent-section-heading h2 {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0;
}

.patent-section-heading p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-top: 0.5rem;
  margin-bottom: 0;
  max-width: 68ch;
}

/* ===========================
   About Page
   =========================== */
.about-bio {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-bio p {
  color: var(--text-mid);
}

.about-headshot {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin-bottom: 0;
  filter: grayscale(20%);
}

.about-sidebar {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
}

.about-sidebar__text {
  padding: 1.75rem 2rem 2rem;
}

.about-sidebar h4 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  margin-top: 0;
}

.sidebar-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.sidebar-list:last-child {
  margin-bottom: 0;
}

.sidebar-list li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.sidebar-list li:last-child {
  border-bottom: none;
}

/* ===========================
   Footer
   =========================== */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  margin-bottom: 2.5rem;
  align-items: start;
}

.footer-brand .nav-logo-text {
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-dim);
  max-width: 340px;
  margin-bottom: 0;
}

.footer-links-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
  margin-top: 0;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-rule {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin: 0;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .origin__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .origin__heading {
    position: static;
  }

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

  .tech-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .tech-row--reverse .tech-row__content { order: 1; }
  .tech-row--reverse .tech-row__visual  { order: 2; }

  .comparison-table tbody th {
    white-space: normal;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tech-section__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .app-domain__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-bio {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .patent-card {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

@media (max-width: 600px) {
  :root { --nav-h: 60px; }

  .container { padding: 0 1.25rem; }

  .section { padding: 3.5rem 0; }

  .comparison-table th,
  .comparison-table td,
  .comparison-table tbody th {
    padding: 0.9rem 0.75rem;
    font-size: 0.88rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .closing {
    padding: 4rem 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
