:root {
  --bg: #F4F1EA;
  --paper: #F3DEB6;
  --text: #1F1B18;
  --muted: #3A3531;
  --navy: #1C2F57;
  --cobalt: #1F3C78;
  --tile-blue: #2E6FB6;
  --tile-teal: #1FA7A3;
  --tile-gold: #F3B63C;
  --cta: #1F3C78;
  --line: rgba(28, 47, 87, .16);
  --shadow: 0 14px 30px rgba(28, 47, 87, .50);
  --radius: 18px;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Inter", Arial, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  width: 100%;
  font-family: var(--font-sans);
  line-height: 1.5;
}

main{
    width: 100%;
}

.container {
  padding: 22px 24px;
}

section{
    padding: 50px 42px;
}

.card {
  max-width: 100%;
  width: 100%;
  height: 100%;
  padding: 22px;
}

.heroCard{
  background: rgba(0, 0, 0, 0.5);
  padding: 1rem;
  border-radius: 12px;
}

.story p{
  padding-left: 24px;
  margin: 0;
}

header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(244, 241, 234, .86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}

.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
  padding: 14px 24px;
}

.nav__links {
  display: flex;
  gap: 32px;
}

.nav__links a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
  font-size: 16px;
}

.nav__links a:hover {
  color: var(--tile-blue);
}

.nav__actions {
  display: flex;
  gap: 10px;
}

.brand{
  height: 50px;
}

a {
  color: var(--tile-blue);
  text-decoration: none;
}

a:hover {
  color: var(--cobalt);
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  padding: 12px 22px;
  border-radius: 8px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}

.btn--primary {
  background-color: var(--cta);
  color: #fff;
  border-color: transparent;
}

.btn--primary:hover {
  background-color: #1a2e5c;
  color: #fff;
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--navy);
}

.btn--ghost:hover {
  background: rgba(0, 0, 0, .05);
}

.btn--wa {
  border-color: rgba(31, 167, 163, .45);
  color: var(--navy);
  background: rgba(31, 167, 163, .08);
}

.btn-outline {
  border: 2px solid var(--tile-blue);
  background: transparent;
  color: var(--tile-blue);
  font-weight: 600;
}

.btn-outline:hover {
  background: rgba(46, 111, 182, .10);
  border-color: var(--cobalt);
  color: var(--cobalt);
}

h2 {
  font-family: var(--font-serif);
  letter-spacing: .5px;
  color: var(--navy);
  margin: 0;
  font-size: clamp(30px, 5vw, 36px);
}

h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-family: var(--font-serif);
  margin: 0;
}



h1, .kicker, .lead {
  color: #fff;
  text-shadow: 0 4px 12px rgba(28, 47, 87, .50);
}

.kicker {
  font-weight: 800;
  text-transform: none;
}

.lead {
  max-width: 62ch;
  font-weight: 600;
  font-size: 22px;
}

.flex-change {
  display: flex;
  gap: 18px;
  align-items: stretch;
}

.flex-change img {
  width: 45%;
  object-fit: cover;
  border-radius: 12px;
}

.flex-change .content {
  flex: 1;
}

#story {
  background: rgba(255, 255, 255, .75);
}

#story h2 {
  color: var(--tile-teal);
}

.tile-strip {
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--tile-blue) 0 20%, var(--tile-teal) 20% 45%, var(--tile-gold) 45% 60%, var(--tile-teal) 60% 80%, var(--tile-blue) 80% 100%);
  box-shadow: var(--shadow);
}

.hero {
  background-image: url('images/hero.png');
  background-size: cover;
  background-position: center;
}

.heroGrid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: stretch;
}

.heroCard {
  padding: 50px 42px;
  margin: 30px 0;
  width: 70%;
}

.heroCard .btn{
  background-color: var(--tile-blue);
}
.heroCard .btn:hover{
  background-color: #2661a8;
}

#problem {
  text-align: center;
  background-color: var(--bg);
  padding: 60px 42px;
}

#problem h2 {
  color: var(--navy);
  margin-bottom: 32px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.problem__list {
  display: flex;
  justify-content: center;
  margin: 32px 0;
}

.miniCard {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.miniCard b {
  background: rgba(255, 59, 48, .08);
  border: 2px solid rgba(255, 59, 48, .2);
  border-radius: 12px;
  padding: 16px 28px 16px 38px;
  display: inline-block;
  color: #8B0000;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  position: relative;
}

.miniCard b::before {
  content: "✗";
  position: absolute;
  left: 12px;
  color: rgba(255, 59, 48, .7);
  font-weight: 900;
  font-size: 20px;
}

#problem p {
  max-width: 700px;
  margin: 24px auto 0;
  font-size: 20px;
  line-height: 1.6;
}

#usp {
  background: linear-gradient(135deg, rgba(243, 182, 60, .06) 0%, rgba(247, 202, 109, .08) 100%);
  padding: 70px 42px;
  position: relative;
}

#usp::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(243,182,60,.15)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

#usp .section__head {
  text-align: center;
  margin-bottom: 42px;
}

#usp h2 {
  margin-bottom: 16px;
  color: var(--navy);
}

#fit {
  background: linear-gradient(135deg, rgba(243, 182, 60, .06) 0%, rgba(247, 202, 109, .08) 100%);
  padding: 70px 42px;
  position: relative;
}

#fit::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(46,111,182,.15)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

#fit .section__head {
  text-align: center;
  margin-bottom: 42px;
}

#reviews {
  background: var(--tile-blue);
  color: #fff;
  border-radius: 20px;
  margin: 24px;
  margin-bottom: 60px;
}

#reviews h2,
#reviews .sub,
#reviews .quote,
#reviews p {
  color: #fff;
}

footer {
  background: var(--tile-teal);
  color: #fff;
  padding: 32px 42px;
  text-align: center;
}

footer a {
  color: #fff;
  text-decoration: underline;
}

.menu-head{
    background-image: url('images/background.png');
    background-size: cover;
    background-position: center;
    padding: 100px 42px 40px 42px;
}

.menu-head h2{
    color: #fff;
    text-shadow: 0 4px 12px rgba(28, 47, 87, .50);
    margin: 0;
}

.imgph {
  min-height: 320px;
  border-radius: 16px;
  border: 1px dashed rgba(28, 47, 87, .26);
  background: rgba(255, 255, 255, .45);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
}

p, b{
    font-size: 20px;
}

.miniCard b{
    display: block;
    color: var(--muted);
    font-size: 20px;
    font-weight: 700;
    opacity: .70;
    margin: 25px 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  padding: 8px 12px;
  font-weight: 900;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(31, 167, 163, .3);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  margin: 12px 0;
}

.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--line);
}

.tabBtn {
  padding: 12px 20px;
  border: none;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
}

.tabBtn[aria-selected="true"] {
  color: var(--tile-blue);
  border-bottom-color: var(--tile-blue);
}

.tabPanel {
  display: none;
}

.tabPanel.is-active {
  display: block;
  max-width: 97%;
}

.menuGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.item {
  display: flex;
  width: 100%;
  gap: 14px;
  align-items: flex-start;
}

.item > div:last-child {
  flex-grow: 1;
}

.item.flex-change {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  background: rgba(255, 255, 255, .5);
  border-radius: 8px;
}

.item__ph {
  width: 80px;
  height: 80px;
  background: rgba(200, 200, 200, .3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--muted);
  flex-shrink: 0;
  object-fit: cover;
}

.item__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}

.item__name {
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
}

.price {
  font-weight: 700;
  color: var(--tile-teal);
}

.item__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}

.usp {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 32px auto 0;
  position: relative;
  z-index: 1;
}

.usp__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255, 255, 255, .7);
  padding: 24px;
  border-radius: 12px;
  border: 2px solid rgba(243, 182, 60, .2);
  transition: all 0.3s ease;
}

.usp__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(243, 182, 60, .15);
  border-color: var(--tile-gold);
}

.check {
  color: var(--tile-teal);
  font-size: 32px;
  font-weight: 900;
  flex-shrink: 0;
}

.who {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

.who .card {
  background: rgba(255, 255, 255, .8);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.who .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(46, 111, 182, .12);
}

.list {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}

.list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--tile-blue);
  font-weight: 900;
}

.section__head {
  text-align: center;
  margin-bottom: 32px;
}

.sub {
  color: var(--muted);
  font-size: 16px;
  margin-top: 8px;
}

.testimonial {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 32px;
  border-radius: 16px;
}

.quote {
  font-size: 20px;
  font-style: italic;
  margin: 16px 0;
  line-height: 1.6;
}

.faq {
  background: rgba(255, 255, 255, .6);
  border-radius: 16px;
  padding: 32px;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  transition: all 0.3s ease;
}

.faq details:last-child {
  border-bottom: none;
}

.faq details[open] {
  background: rgba(46, 111, 182, .04);
  padding: 20px 16px;
  border-radius: 8px;
  margin: 8px 0;
}

.faq summary {
  font-weight: 700;
  cursor: pointer;
  color: var(--navy);
  font-size: 19px;
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::before {
  content: "+";
  font-size: 28px;
  color: var(--tile-blue);
  font-weight: 700;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq details[open] summary::before {
  content: "−";
}

.faq summary:hover {
  color: var(--tile-blue);
}

.faq p {
  margin-top: 16px;
  padding-left: 40px;
  color: var(--muted);
  line-height: 1.7;
}

.divider {
  height: 200px;
  background-image: url('images/bg2.png');
  background-size: cover;
  background-position: center;
  margin: 0;
}

@media (max-width: 960px) {
  .heroGrid {
    grid-template-columns: 1fr;
  }
  
  .imgph {
    min-height: 220px;
  }

  .flex-change {
    flex-direction: column;
  }

  .flex-change img {
    width: 100%;
  }

  .nav__links {
    display: none;
  }

  .nav__inner {
    padding: 12px 16px;
    gap: 8px;
  }

  .brand {
    height: 40px;
  }

  .brand__name {
    height: 40px;
  }

  .nav__actions {
    flex-wrap: wrap;
    gap: 6px;
  }

  .nav__actions .btn {
    padding: 10px 16px;
    font-size: 14px;
  }

  .menuGrid {
    grid-template-columns: 1fr;
  }

  .who {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .who .card {
    width: 80%;
    margin: 0 auto;
  }

  section {
    padding: 60px 24px;
  }

  .heroCard {
    width: 85%;
    padding: 70px 24px;
  }

  .menu-head{
    padding: 70px 24px 30px 24px;
  }

  #problem, #usp, #fit {
    padding: 60px 24px;
  }
}

@media (max-width: 768px) {
  .heroCard {
    padding: 50px 20px;
    width: 100%;
  }

  .menu-head{
    padding: 60px 18px 30px 18px;
  }

  #problem, section, #usp, #fit {
    padding: 50px 18px;
  }

  .nav__inner {
    padding: 10px 12px;
  }

  .brand {
    height: 36px;
  }

  .brand__name {
    height: 36px;
  }

  .nav__actions .btn {
    padding: 8px 14px;
    font-size: 13px;
  }
 
}

@media (max-width: 480px) {
  .nav__inner {
    padding: 8px 10px;
    gap: 6px;
  }

  .brand {
    height: 40px;
  }

  .brand__name {
    height: 40px;
  }

  .nav__actions .btn--primary {
    white-space: nowrap;
  }

  .tabBtn {
    padding: 10px;
    font-size: 14px;
  }

  .who .card {
    width: 100%;
  }
}

.story {
  background: inherit;
border-left: 8px solid var(--tile-teal);
}