:root {
  --dark: #082f33;
  --dark-2: #062528;
  --dark-3: #041d20;
  --gold: #c99a4a;
  --gold-light: #f0d49a;
  --cream: #f7efe3;
  --muted: #c8d4d2;
  --white: #ffffff;
  --card: rgba(255, 255, 255, 0.045);
  --card-strong: rgba(255, 255, 255, 0.075);
  --border: rgba(201, 154, 74, 0.22);
  --border-strong: rgba(201, 154, 74, 0.36);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(201, 154, 74, 0.12), transparent 32%),
    linear-gradient(180deg, var(--dark), var(--dark-2));
  color: var(--cream);
  line-height: 1.6;
}

h1,
h2,
h3,
.brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
}

.header {
  width: 100%;
  background: rgba(6, 37, 40, 0.93);
  border-bottom: 1px solid rgba(201, 154, 74, 0.25);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}

.navbar {
  max-width: 1150px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
}

.brand span {
  font-size: 20px;
  letter-spacing: 0.8px;
  color: var(--cream);
  line-height: 1.1;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--muted);
  font-size: 15px;
  transition: 0.2s;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.hero {
  min-height: auto;
  max-width: 1150px;
  margin: 0 auto;
  padding: 115px 24px 55px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-text {
  max-width: 660px;
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 34px;
  text-align: justify;
  text-justify: inter-word;
}

.hero-buttons {
  width: 100%;
  max-width: 520px;
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  transition: 0.2s;
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark-2);
  font-weight: bold;
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 154, 74, 0.25);
}

.btn.secondary {
  border: 1px solid rgba(240, 212, 154, 0.6);
  color: var(--gold-light);
}

.btn.secondary:hover {
  background: rgba(240, 212, 154, 0.08);
}

.hero-buttons .btn {
  min-width: 210px;
  text-align: center;
}

.hero-points {
  width: 100%;
  max-width: 520px;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  border: 1px solid rgba(201, 154, 74, 0.26);
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
}

.hero-panel {
  display: grid;
  gap: 28px;
  align-items: start;
}

.hero-logo-clean {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px;
}

.hero-logo-clean::before {
  content: "";
  position: absolute;
  width: 82%;
  height: 82%;
  border-radius: 34px;
  background: radial-gradient(circle, rgba(201, 154, 74, 0.18), transparent 68%);
  filter: blur(18px);
  opacity: 0.75;
  z-index: 0;
}

.hero-logo-clean img {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  display: block;
  object-fit: cover;
  border-radius: 30px;
  border: 1px solid rgba(201, 154, 74, 0.26);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(240, 212, 154, 0.08),
    inset 0 0 40px rgba(201, 154, 74, 0.08);
}

.hero-slogan {
  max-width: 520px;
  margin: 0 auto;
  padding: 4px 6px;
  text-align: center;
}

.hero-slogan p {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold-light);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.18;
  margin-bottom: 12px;
}

.hero-slogan span {
  display: block;
  color: var(--cream);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 13px;
}

.section {
  max-width: 1150px;
  margin: 0 auto;
  padding: 90px 24px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
}

.text-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 34px;
  color: var(--muted);
  font-size: 18px;
}

.system-section {
  max-width: 1260px;
  padding-top: 50px;
}

.feature-grid,
.services-grid,
.why-list,
.process-steps,
.about-photos {
  display: grid;
  gap: 22px;
}

.three-columns {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.service-card,
.process-step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  min-height: 230px;
  transition: 0.2s;
}

.feature-card:hover,
.service-card:hover,
.process-step:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--card-strong);
}

.highlighted-card {
  position: relative;
  overflow: hidden;
}

.highlighted-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(201, 154, 74, 0.18), transparent 45%);
  pointer-events: none;
}

.feature-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  position: relative;
}

.feature-number {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(201, 154, 74, 0.14);
  border: 1px solid rgba(201, 154, 74, 0.25);
  color: var(--gold-light);
  font-size: 11px;
}

.feature-card h3,
.service-card h3,
.process-step h3 {
  color: var(--gold-light);
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 14px;
  position: relative;
}

.feature-card p,
.service-card p,
.process-step p {
  color: var(--muted);
  position: relative;
}

.feature-card h3 {
  font-size: clamp(17px, 1.35vw, 19px);
  white-space: nowrap;
  letter-spacing: -0.35px;
  line-height: 1.18;
  margin-bottom: 0;
}

.feature-subtitle {
  color: var(--gold-light) !important;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.35;
  margin-top: 2px;
  margin-bottom: 20px;
}

/* ABOUT */
.about-section {
  padding-top: 40px;
}

.about-text-card {
  display: grid;
  gap: 18px;
  text-align: left;
}

.about-text-card p {
  text-align: justify;
  text-justify: inter-word;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}

.about-badges span {
  border: 1px solid rgba(201, 154, 74, 0.25);
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
}

.about-photos {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 26px;
}

.portrait-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.028));
  border: 1px solid rgba(201, 154, 74, 0.24);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.portrait-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: rgba(255, 255, 255, 0.03);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(4, 29, 32, 0.18), transparent 30%),
    linear-gradient(to bottom, rgba(4, 29, 32, 0.12), transparent 24%),
    radial-gradient(circle at center, transparent 58%, rgba(4, 29, 32, 0.26) 100%);
  box-shadow: inset 0 0 65px rgba(4, 29, 32, 0.2);
  pointer-events: none;
}

.portrait-caption {
  padding: 20px 8px 6px;
}

.portrait-name {
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.15;
  margin-bottom: 6px;
}

.portrait-title {
  color: var(--gold-light);
  font-size: 15px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.portrait-caption span {
  display: block;
  color: var(--muted);
  font-size: 15px;
}

/* PROMISE */
.promise-section {
  padding-top: 40px;
}

.promise-box {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at left, rgba(201, 154, 74, 0.18), transparent 45%);
  border: 1px solid var(--border-strong);
  border-radius: 32px;
  padding: 44px;
  box-shadow: var(--shadow);
}

.promise-content h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  margin-bottom: 18px;
}

.promise-content p,
.promise-list span {
  color: var(--muted);
}

.promise-list {
  display: grid;
  gap: 14px;
}

.promise-list div {
  background: rgba(6, 37, 40, 0.5);
  border: 1px solid rgba(201, 154, 74, 0.2);
  border-radius: 18px;
  padding: 18px;
}

.promise-list strong {
  display: block;
  color: var(--cream);
  margin-bottom: 4px;
}

/* SERVICES */
.dark-section {
  max-width: none;
  background: linear-gradient(180deg, var(--dark-2), var(--dark-3));
  padding-left: max(24px, calc((100% - 1150px) / 2));
  padding-right: max(24px, calc((100% - 1150px) / 2));
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  min-height: 220px;
}

/* WHY */
.why-section {
  padding-top: 140px;
  padding-bottom: 140px;
}

.why-section .section-heading {
  margin-bottom: 0;
}

/* PROCESS */
.process-section {
  padding-top: 40px;
}

.process-steps {
  grid-template-columns: repeat(4, 1fr);
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark-2);
  font-weight: bold;
  margin-bottom: 20px;
}

/* CONTACT */
.contact-section {
  padding: 90px 24px;
  background:
    linear-gradient(rgba(6, 37, 40, 0.86), rgba(6, 37, 40, 0.92)),
    radial-gradient(circle at center, rgba(201, 154, 74, 0.22), transparent 60%);
}

.contact-box {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(201, 154, 74, 0.3);
  border-radius: 32px;
  padding: 54px 30px;
  background: rgba(255, 255, 255, 0.04);
}

.contact-box h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 18px;
}

.contact-box p {
  color: var(--muted);
}

.contact-details {
  margin: 30px 0;
}

.contact-details p {
  margin: 8px 0;
}

.contact-details a:hover {
  color: var(--gold-light);
}

.contact-actions {
  justify-content: center;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 28px 20px;
  background: var(--dark-2);
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid rgba(201, 154, 74, 0.2);
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .hero,
  .promise-box {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .three-columns,
  .process-steps,
  .about-photos {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .hero {
    padding-top: 60px;
  }

  .nav-links {
    display: none;
  }

  .hero-logo-clean {
    justify-content: flex-start;
  }

  .hero-logo-clean img {
    max-width: 360px;
  }

  .hero-slogan {
    margin: 0;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .navbar {
    padding: 14px 18px;
  }

.feature-card h3 {
  white-space: normal;
}

  .brand span {
    font-size: 16px;
  }

  .hero,
  .section,
  .contact-section {
    padding: 60px 18px;
  }

  .services-grid,
  .three-columns,
  .why-list,
  .process-steps,
  .about-photos {
    grid-template-columns: 1fr;
  }

  .promise-box,
  .contact-box,
  .text-card,
  .portrait-card {
    padding-left: 22px;
    padding-right: 22px;
  }

  .portrait-card {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-slogan p {
    font-size: 28px;
  }

  .portrait-name {
    font-size: 26px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-buttons,
  .contact-actions {
    width: 100%;
  }

  .about-badges span {
    width: 100%;
    text-align: center;
  }
}

/* Footer / Impresszum */

.site-footer {
  padding: 34px 20px 38px;
  border-top: 1px solid rgba(217, 168, 95, 0.18);
  background: rgba(0, 0, 0, 0.14);
  color: rgba(247, 239, 226, 0.86);
}

.site-footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  text-align: center;
}

.footer-brand-line {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-operator-line {
  margin-bottom: 18px;
  color: rgba(247, 239, 226, 0.68);
  font-size: 13px;
}

.impressum-details {
  width: min(860px, 100%);
  margin: 0 auto;
  text-align: left;
  border: 1px solid rgba(217, 168, 95, 0.24);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.impressum-details summary {
  cursor: pointer;
  padding: 16px 20px;
  color: #f3d28b;
  font-weight: 700;
  text-align: center;
  list-style-position: inside;
}

.impressum-details summary:hover {
  background: rgba(255, 255, 255, 0.04);
}

.impressum-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  padding: 4px 22px 22px;
}

.impressum-grid div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.impressum-grid span {
  display: block;
  margin-bottom: 5px;
  color: #d9a85f;
  font-size: 12px;
  font-weight: 700;
}

.impressum-grid strong {
  display: block;
  color: rgba(247, 239, 226, 0.9);
  font-size: 13px;
  line-height: 1.5;
}

.impressum-grid a {
  color: rgba(247, 239, 226, 0.9);
  text-decoration: none;
}

.impressum-grid a:hover {
  color: #f3d28b;
}

@media (max-width: 760px) {
  .impressum-grid {
    grid-template-columns: 1fr;
  }
}

/* Ajánlatkérő űrlap */

.quote-form {
  width: 100%;
  margin-top: 30px;
  text-align: left;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.quote-form label {
  color: #f3d28b;
  font-weight: 700;
  font-size: 14px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(217, 168, 95, 0.28);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  color: #f7efe2;
  font: inherit;
  outline: none;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(247, 239, 226, 0.45);
}

.quote-form select option {
  color: #071819;
  background: #ffffff;
}

.quote-form textarea {
  min-height: 120px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: #f3d28b;
  box-shadow: 0 0 0 3px rgba(217, 168, 95, 0.12);
}

.radio-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.radio-option {
  flex: 1;
  min-width: 140px;
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(217, 168, 95, 0.28);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.radio-option input {
  width: auto;
  margin: 0;
}

.radio-option span {
  color: #f7efe2;
}

.privacy-check {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  color: rgba(247, 239, 226, 0.78) !important;
  line-height: 1.5;
}

.privacy-check input {
  width: auto;
  margin-top: 4px;
}

.quote-submit-btn {
  display: block;
  margin: 28px auto 0;
  min-width: 240px;
}

.hidden {
  display: none !important;
}

@media (max-width: 760px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .radio-option {
    flex: 100%;
  }
}