*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #eee6e6;
  background: #000;
  line-height: 1.4;
}

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

a {
  color: inherit;
}

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: #000;
  padding: 12px 24px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 72px;
  height: 72px;
  object-fit: cover;
}

.brand-name {
  font-size: 1.75rem;
  letter-spacing: normal;
}

.brand-name .underline {
  text-decoration: underline;
}

.header-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid #eee6e6;
  color: #eee6e6;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s;
  flex-shrink: 0;
  margin-left: auto;
}

.header-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Hero */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  gap: 1.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

.hero h1 {
  position: relative;
  margin: 0;
  color: #fff;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.hero-location {
  position: relative;
  max-width: 36rem;
  margin: 0;
  color: #fff;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* CTA banner */
.cta-banner {
  background: #000;
  text-align: center;
  padding: 48px 20px;
}

.cta-banner h2 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 400;
  line-height: 1.35;
}

.cta-banner .highlight {
  color: #bada55;
}

.section-spacer {
  height: 48px;
  background: #000;
}

/* Sections with background image */
.section-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 0;
}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.section-bg > .container {
  position: relative;
  z-index: 1;
}

.section-content {
  padding: 48px 20px;
}

.section-title {
  margin: 0 0 24px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.1em;
}

.product-list {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

.product-list li {
  margin-bottom: 12px;
}

.product-list ul {
  margin: 8px 0 0;
  padding-left: 1.2rem;
}

/* Product sections */
.product-segment {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  padding: 48px 20px;
}

.product-image {
  width: 100%;
  max-width: 520px;
}

.product-image img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  margin: 0 auto;
}

.product-text {
  text-align: center;
}

.product-text h2 {
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.product-text .size {
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  display: block;
  margin: 16px 0;
}

.mark-red {
  background: #f60419;
  padding: 0 4px;
}

.underline {
  text-decoration: underline;
}

/* Order section */
.order-section {
  background: #000;
  padding: 64px 0;
}

.order-form {
  display: grid;
  gap: 16px;
  max-width: 560px;
}

.form-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #555;
  background: #111;
  color: #fff;
  font: inherit;
}

.form-field textarea {
  min-height: 100px;
  resize: vertical;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}

.checkbox-field input {
  margin-top: 4px;
}

.submit-btn {
  justify-self: start;
  padding: 10px 36px;
  border: 1px solid #eee6e6;
  background: #000;
  color: #eee6e6;
  font: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
}

.submit-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.thank-you {
  display: none;
  color: #8fca8f;
  text-align: center;
  font-size: 1.1rem;
}

.thank-you.visible {
  display: block;
}

.order-steps {
  margin: 0 0 32px;
  padding-left: 1.2rem;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  max-width: 560px;
}

.order-steps li {
  margin-bottom: 12px;
}

/* Contact */
.contact-section {
  background: #000;
  text-align: center;
  padding: 64px 20px 80px;
}

.contact-section h2 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
}

.contact-section p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
}

.contact-section a {
  color: #eee6e6;
}

/* Footer */
.site-footer {
  background: #000;
  border-top: 1px solid #222;
  padding: 24px;
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.site-footer p {
  margin: 6px 0;
}

/* Info om kwh-pris */
.info-page {
  background: #000;
  padding: 48px 0 80px;
}

.info-page .container {
  max-width: 720px;
}

.info-heading {
  margin: 0 0 32px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.05em;
}

.info-heading:not(:first-child) {
  margin-top: 48px;
}

.info-text {
  margin: 0 0 32px;
  font-size: 1rem;
  line-height: 1.8;
}

.info-text p {
  margin: 0 0 1em;
}

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

.info-image {
  margin: 32px auto;
  max-width: 600px;
}

@media (max-width: 768px) {
  .brand img {
    width: 56px;
    height: 56px;
  }

  .brand-name {
    font-size: 1.35rem;
  }

  .header-btn {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
}
