:root {
  --ink: #252621;
  --paper: #f8f7f3;

  /* Soft professional background */
  --green: #eef1ed;
  --green-deep: #e4e8e3;

  --mustard: #c79532;
  --rust: #a84a32;

  --line: rgba(36, 35, 29, 0.10);

  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}


* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
}

.wrap {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 28px;
}

a { color: inherit; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 0;
}
.mark {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.2px;
}
.quick-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.quick-nav a {
  position: relative;
  display: inline-block;
  padding: 14px 26px;

  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px) saturate(150%);
  -webkit-backdrop-filter: blur(8px) saturate(150%);

  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 16px;

  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;

  box-shadow:
    0 8px 25px rgba(36, 35, 29, 0.10),
    inset 0 1px 1px rgba(255, 255, 255, 0.7),
    inset 0 -1px 1px rgba(255, 255, 255, 0.15);

  transition: all 0.3s ease;
}

.quick-nav a:hover {
  background: rgba(36, 35, 29, 0.22);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--paper);
  transform: translateY(-3px);

  box-shadow:
    0 12px 30px rgba(36, 35, 29, 0.18),
    inset 0 1px 2px rgba(255, 255, 255, 0.35);
}

/* Hero */
.hero {
    min-height: 0;
    height: auto;
    padding: 0;
    margin: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: end;
}
.hero-text h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 44px;
  line-height: 1.12;
  margin: 0 0 20px;
  max-width: 15ch;
}
.hero-text p {
  font-size: 17px;
  max-width: 46ch;
  color: #4a4939;
  margin: 0;
}
.hero-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 2px solid var(--mustard);
  padding-left: 24px;
}
.hero-item {
  font-family: var(--serif);
  font-size: 19px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.hero-item .num {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--rust);
}

/* Kit sections */
.kit-section { padding: 68px 0; }
.band-green {
  background:
    radial-gradient(
      circle at 40% 10%,
      rgba(190, 255, 210, 0.80),
      transparent 35%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(220, 226, 220, 0.7),
      transparent 35%
    ),
    #eef1ed;

  color: var(--ink);
}


.band-cream {
  background: var(--paper);
  color: var(--ink);
}
.kit-heading { margin-bottom: 36px; }
.kit-heading h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  margin: 0 0 6px;
}
.kit-heading p {
  margin: 0;
  font-size: 15px;
  opacity: 0.75;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 22px;
}

.card {
  position: relative;
  color: var(--ink);

  /* Glass */
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);

  /* Bubble shape */
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;

  display: flex;
  flex-direction: column;
  overflow: hidden;

  /* Floating glass */
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.18),
    inset 0 1px 1px rgba(255, 255, 255, 0.65),
    inset 0 -1px 2px rgba(255, 255, 255, 0.12);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

/* Shiny reflection inside bubble */
.card::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -70px;

  width: 180px;
  height: 180px;

  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  filter: blur(12px);

  pointer-events: none;
  z-index: 2;
}

/* Small glass highlight */
.card::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 20px;
  right: 20px;
  height: 1px;

  background: rgba(255, 255, 255, 0.55);

  pointer-events: none;
  z-index: 3;
}

.card:hover {
  transform: translateY(-10px) scale(1.015);

  background: rgba(255, 255, 255, 0.18);

  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.25),
    inset 0 1px 2px rgba(255, 255, 255, 0.75);
}

.band-green .card {
  border-color: rgba(255, 255, 255, 0.35);
}
// ................................
.card-image-link {
  display: block;
  flex: 5;
  min-height: 140px;
  background: #ece7da;
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
//..................................

.card-image-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;

  padding: 18px;

  filter: drop-shadow(0 12px 15px rgba(0, 0, 0, 0.18));

  transition: transform 0.35s ease;
}

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


.card-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}
.card-image-link:hover img { transform: scale(1.04); }
.card-image-link::after {
  content: "View on Amazon";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  padding: 8px 0;
  transform: translateY(100%);
  transition: transform 0.2s ease;
}
.card-image-link:hover::after { transform: translateY(0); }

.card-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.card-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 12px;
  margin: 0 0 2px;
  line-height: 1.3;
}
.card-body .note {
  font-size: 13.5px;
  color: #5a5847;
  margin: 0;
  flex: 1;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.price {
  font-weight: 600;
  font-size: 15px;
}
.buy-link {
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: var(--rust);
  border-bottom: 1px solid var(--rust);
  padding-bottom: 1px;
}

/* Footer */
.site-footer {
  background: var(--green-deep);
  color: rgba(247, 243, 234, 0.75);
  padding: 32px 0;
  font-size: 13px;
}
.site-footer p { margin: 0 0 6px; }
.disclosure { opacity: 0.85; }

/* Responsiv------------------------------------------------------------- */


/* Engineering picks =============-------------------------------------------- */
.engineering-picks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 40px;
}

.engineering-card {
  padding: 28px;

  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);

  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 20px;

  color: var(--paper);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.12),
    inset 0 1px 1px rgba(255, 255, 255, 0.25);

  transition: 0.25s ease;
}

.engineering-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.pick-label {
  display: block;
  margin-bottom: 10px;

  color: var(--mustard);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.engineering-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 15px;
}

.engineering-laptop-image {
  width: 100%;
  height: 190px;
  object-fit: contain;
  display: block;
  margin: 10px 0 15px;
}
.engineering-image-link {
  display: block;
}

.engineering-card h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 8px;
}

.engineering-card p {
  font-size: 14px;
  opacity: 0.8;
  margin: 0 0 15px;
}

.engineering-price {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
}

.pick-button {
  display: inline-block;
  padding: 10px 18px;

  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);

  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;

  color: var(--paper);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;

  transition: 0.25s ease;
}

.pick-button:hover {
  background: rgba(20, 25, 22, 0.35);
}

.engineering-section {
  margin-top: 35px;
}

.engineering-title {
  margin-bottom: 25px;
}

.engineering-title h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin: 5px 0 8px;
}

.engineering-title p {
  margin: 0;
  font-size: 14px;
  opacity: 0.75;
  max-width: 55ch;
}

.engineering-divider {
  height: 1px;
  background: rgba(247, 243, 234, 0.20);
  margin: 65px 0;
}

.engineering-laptop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

/* Phones and accessories */
.kit-subheading {
  margin: 40px 0 20px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.band-green .kit-subheading { border-top-color: rgba(247, 243, 234, 0.18); }
.kit-subheading h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  margin: 0;
}
/* gxfcghbjnkmcjhggfghjknjbj */

#accessories-grid.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 10px;
}

#accessories-grid .card {
  height: 240px;
}
#accessories-grid .card-image-link {
  flex: 4;
  aspect-ratio: auto;
}


#accessories-grid .card-body h3 {
  font-size: 11px;
  line-height: 1.2;
}
#accessories-grid .card-body .note {
  display: none;
}
#accessories-grid .card-footer {
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  margin-top: 4px;
}
#accessories-grid .price {
  font-size: 10px;
}
#accessories-grid .buy-link {
  font-size: 5px;
}



