:root {
  --black: #111;
  --white: #fff;
  --muted: #333;
  --red: #8B0000;
  --gold: #C5A46D;
  --blue: #219dc8;
  --bluedark: #075a88;
  --yellow: #f3ba26;
  --line: #eee;
  --radius: 12px;
  --shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Nunito', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}
p, ul, ol, li {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.7;
  margin-bottom: 1em;
  color: var(--black);
}
img { max-width: 100%; display: block; }

.container { width: min(960px, 92%); margin-inline: auto; }
.container-demo { width: min(760px, 92%); margin-inline: auto; } 

/* Header */
.header {
/*
  position: sticky; top: 0; z-index: 50;
*/
  background: #fff; border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; gap: 24px; padding: 14px 0;
}
.logo { 
  font-size: 24px; 
  letter-spacing: .2px; 
  color: var(--black);       /* use your site’s black variable */
  text-decoration: none;     /* remove underline */
  display: inline-flex;      /* keeps spans aligned */
  gap: 4px;                  /* small spacing between Seidō and Studio */
}
.logo:hover,
.logo:focus {
  color: var(--black);       /* stays black on hover/focus */
  text-decoration: none;
  cursor: pointer;           /* shows it’s clickable */
}
.logo-text {
  font-weight: 600; 
}
.logo-text-bold {
  font-weight: 800; 
}


.nav { margin-left: auto; }
.menu {
  display: flex; gap: 20px;
  list-style: none; margin: 0; padding: 0;
}
.menu a { color: var(--blue); text-decoration: none; font-weight: 600; }
.menu a:hover { color: var(--bluedark); }
.nav-toggle {
  display: none; background: none;
  border: 1px solid var(--line);
  border-radius: 8px; padding: 8px 10px;
}
.header-lp {
  background: #fff; border-bottom: 0;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: 10px;
  text-decoration: none; font-weight: 700;
  border: 1px solid transparent; transition: transform .02s ease-in;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow); }
.btn-secondary { background: #fff; color: var(--blue); border-color: var(--line); }
.btn:active { transform: translateY(1px); }
.btn:hover { background: var(--bluedark); }

/* Sections */
.section { padding: 24px 0; }
.section-title {
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.15;
  margin: 0 0 24px 0;
  font-weight: 800;
  text-align: center;
}
.section-heading {
  font-size: clamp(24px, 3vw, 28px);
  line-height: 1.3;
  margin: 0 0 16px 0;
  font-weight: 700;
  text-align: center;
}
.section-sub {
  font-size: clamp(18px, 1.4vw, 20px);
  line-height: 1.7;
  color: var(--muted);
  max-width: 900px;
  text-align: center;
  margin: 0 auto 40px auto;
}

/* Hero */
.hero {
  padding: 80px 0 80px 0; /* extra whitespace */
  text-align: center;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.hero-copy { max-width: 900px; }
.hero-title {
  font-size: clamp(36px, 6vw, 60px);
  margin-bottom: 16px;       /* adds spacing below */
  font-weight: 800;
  letter-spacing: -.5px;
  line-height: 1.08;         /* controls vertical spacing between lines */
}
.hero-sub {
  color: var(--muted);
  font-size: clamp(21px, 2.2vw, 24px);
  margin-bottom: 24px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  justify-content: center;
}
.hero-img {
  margin-top: 40px;
  max-width: 900px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-img#lp-mar {
  max-width: 400px !important;    
}
/* Grid + Cards */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .02);
  text-align: center;
}
.card h3 {
  font-size: clamp(20px, 3vw, 26px); /* sits between section-title and body text */
  margin: 0 0 12px 0;
  font-weight: 700;
  line-height: 1.3;
}
.card p {
	text-align: left;
}
.icon { width: 36px; height: 36px; margin-bottom: 8px; }
.thumb {
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.checklist { list-style: none; padding: 0; margin: 0; text-align: left; }
.checklist li {
  position: relative;
  padding-left: 22px;
  margin: 8px 0;
}
.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0; top: 0;
  color: var(--yellow);
  font-weight: 800;
}

/* Form */
.contact { text-align: center; }

/* Form wrapper */
.form {
  display: grid;
  gap: 16px;                      /* vertical spacing between fields */
  max-width: 480px;               /* keeps form tighter on desktop */
  margin: 0 auto;                 /* center form */
}

/* Fields */
.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #bbb;         /* stronger border than #eee */
  border-radius: 10px;
  font-family: inherit;
  font-size: 16px;
  background: #fff;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(0,0,0,.06);
}

/* Dropdown arrow */
.form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='%23666' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
  cursor: pointer;
}

.form .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid transparent;
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform .02s ease-in;
}

.form .btn:active {
  transform: translateY(1px);
}

.form .btn:hover { 
  background: var(--bluedark); 
}

.status { min-height: 24px; }

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 8px 0;
  color: var(--muted);
}
.footer-inner {
  display:flex;
  justify-content:center; /* centers the text */
  align-items:center;
}

.spacer-25 {
    margin: 25px 0 0 0;
}
.spacer-50 {
    margin: 50px 0 0 0;
}



/* Responsive */
@media (max-width: 960px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero-mock { margin-top: 24px; }
  .nav-toggle { display: inline-block; }
  .menu {
    display: none;
    position: absolute;
    top: 60px; right: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    flex-direction: column;
    padding: 10px 12px;
    box-shadow: var(--shadow);
  }
  .menu.open { display: flex; }
}