/* ============================================================
   HAGE BYG – STYLESHEET
   Brand: Dark Green #1B3A28 + Gold #C9A327
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --green:       #1B3A28;
  --green-dark:  #122A1D;
  --green-mid:   #254D36;
  --green-light: #2E6042;
  --gold:        #C9A327;
  --gold-light:  #DDB83A;
  --gold-dark:   #A8881F;
  --white:       #FFFFFF;
  --off-white:   #F8F6F2;
  --gray-100:    #F2EFE9;
  --gray-200:    #E4DFDA;
  --gray-400:    #A09890;
  --gray-600:    #6B6460;
  --dark:        #1A1A1A;
  --text:        #2C2824;
  --text-muted:  #6B6460;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --radius:    12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow:    0 4px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.18);
  --trans:     0.25s ease;
}

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

html {
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---- Section padding ---- */
.section-pad { padding-block: 96px; }

/* ---- Section header ---- */
.section-head {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 64px;
}
.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 12px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,163,39,.1);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 700; }
h4 { font-size: .95rem; font-weight: 700; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: var(--trans);
  white-space: nowrap;
  text-align: center;
  justify-content: center;
}

.btn-gold {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}
.btn-gold:hover, .btn-gold:focus-visible {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,163,39,.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

.btn-outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline-green:hover, .btn-outline-green:focus-visible {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  overflow: visible;
  /* Gradient matcher logoets grønne baggrund, så det integreres naturligt */
  background: linear-gradient(to bottom, var(--green-dark) 0%, rgba(18,42,29,.6) 70%, transparent 100%);
  transition: background var(--trans), box-shadow var(--trans);
}

.header.scrolled {
  background: var(--green-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.nav-inner {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 24px;
  height: 88px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  /* Lad logoet hænge ned under nav-baren */
  align-self: flex-start;
  padding-top: 6px;
}

.nav-logo img {
  height: 140px;
  width: auto;
  transition: height .3s ease, opacity var(--trans), transform var(--trans);
}
.nav-logo:hover img { opacity: .9; transform: scale(1.04); }

/* Når headeren er scrollet: logo krymper og centreres i nav-baren */
.header.scrolled .nav-logo {
  align-self: center;
  padding-top: 0;
}
.header.scrolled .nav-logo img {
  height: 73px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: .875rem;
  font-weight: 600;
  color: var(--white);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--trans);
}
.nav-links a:hover, .nav-links a:focus-visible {
  background: rgba(255,255,255,.1);
  color: var(--gold);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--green-dark) !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
}
.nav-cta:hover, .nav-cta:focus-visible {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,163,39,.4) !important;
}

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(18, 42, 29, .80) 0%,
    rgba(18, 42, 29, .55) 60%,
    rgba(18, 42, 29, .45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-inline: 24px;
  padding-block: 120px 80px;
  max-width: 820px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,163,39,.15);
  border: 1px solid rgba(201,163,39,.3);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-company {
  font-family: var(--font-head);
  font-size: clamp(3.8rem, 10vw, 7.5rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: .01em;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 4px 32px rgba(0,0,0,.5);
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.88);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
  transition: color var(--trans);
}
.hero-scroll:hover { color: var(--gold); }

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

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--green);
  padding-block: 18px;
}

.trust-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 36px;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  letter-spacing: .02em;
}

.trust-list li svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card--featured {
  border: 2px solid var(--gold);
  position: relative;
}

.service-card--featured::before {
  content: 'Populær';
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--green-dark);
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  z-index: 2;
}

.service-img {
  height: 240px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.service-card:hover .service-img img { transform: scale(1.06); }

.service-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,163,39,.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold-dark);
}

.service-body h3 {
  margin-bottom: 12px;
  color: var(--green-dark);
}

.service-body p {
  color: var(--text-muted);
  font-size: .95rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.check-list {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.check-list li {
  font-size: .875rem;
  color: var(--text);
  padding-left: 22px;
  position: relative;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-col { position: relative; }

.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}

.badge-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.badge-txt {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  margin-top: 4px;
  opacity: .85;
}

.about-text .section-label { margin-bottom: 16px; }

.about-text h2 {
  color: var(--green-dark);
  margin-bottom: 20px;
}

.about-text .lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.values-list {
  margin-block: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-check {
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: .9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.value-row strong {
  display: block;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.value-row p {
  font-size: .875rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--off-white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 8px;
  margin-block: 0 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gi-tall { grid-row: span 2; }
.gi-wide { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

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

.gallery-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,42,29,.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--trans);
}

.gallery-item:hover .gallery-caption { opacity: 1; }

.gallery-caption span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  color: var(--white);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.gallery-cta {
  text-align: center;
  padding-top: 16px;
  padding-bottom: 8px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--green);
  padding-block: 72px;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner-text h2 {
  color: var(--white);
  margin-bottom: 8px;
}

.cta-banner-text p {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
}

.cta-banner-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 {
  color: var(--green-dark);
  margin-bottom: 28px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius);
  transition: background var(--trans);
}

a.contact-item:hover {
  background: var(--gray-100);
}

.ci-icon {
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
}

.ci-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ci-text strong {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.ci-text span, .ci-text a {
  font-size: .975rem;
  color: var(--text);
  font-weight: 500;
}

a.contact-item .ci-text a { transition: color var(--trans); }
a.contact-item:hover .ci-text a { color: var(--green); }


/* Contact Form */
.contact-form {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .03em;
}

.form-group label span { color: var(--gold-dark); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font: inherit;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6460' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(27,58,40,.1);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #d94040;
}

.field-error {
  font-size: .8rem;
  color: #d94040;
  min-height: 1em;
}

.form-note {
  font-size: .8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
}

.form-success[hidden] { display: none; }

.form-success {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #d4edda;
  border: 1px solid #b7dfc4;
  border-radius: 10px;
  padding: 20px 24px;
  margin-top: 20px;
  color: #1a5a30;
}

.form-success svg { flex-shrink: 0; stroke: #1a5a30; }
.form-success p { font-size: .95rem; line-height: 1.5; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--green-dark);
  padding-block: 64px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  height: 90px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li,
.footer-col ul li a,
.footer-col ul li {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  transition: color var(--trans);
  line-height: 1.5;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img-col { max-width: 520px; margin-inline: auto; }

  .about-badge {
    right: 16px;
    bottom: -16px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand { grid-column: span 2; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --radius-lg: 16px; }

  .section-pad { padding-block: 64px; }
  .section-head { margin-bottom: 48px; }

  /* Nav */
  .nav-burger { display: flex; }

  .nav-links {
    position: fixed;
    top: 88px;
    left: 0; right: 0;
    background: var(--green-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 4px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s ease, opacity .3s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 1rem;
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  /* Hero */
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 320px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gi-tall { grid-row: span 1; }
  .gi-wide { grid-column: span 2; }

  /* CTA Banner */
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-btns { justify-content: center; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }

  /* About badge */
  .about-badge { right: 12px; bottom: -12px; padding: 14px 20px; }
  .badge-num { font-size: 1.8rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Trust */
  .trust-list { gap: 10px 20px; justify-content: flex-start; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gi-wide { grid-column: span 1; }
  .section-pad { padding-block: 48px; }
}

/* ============================================================
   UTILITIES / ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }

/* Focus visible ring */
*:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
