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

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #4b433a;
  background-color: #e5dfd6;
  line-height: 1.6;
}

a {
  color: #c89d5b;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #f1ebe1;
  border-bottom: 1px solid #cbb59a;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-image {
  height: 52px;
  width: auto;
}

.logo-main {
  font-weight: 700;
  font-size: 1.1rem;
  color: #2f2a25;
}

.logo-sub {
  display: block;
  font-size: 0.8rem;
  color: #8a7b6a;
}

.nav a {
  margin-left: 1.25rem;
  font-size: 0.9rem;
  color: #6b6257;
}

.nav a:hover {
  color: #2f2a25;
}

/* Hero */

.hero {
  background: linear-gradient(135deg, #f4ede3, #d8c6ac);
  color: #2f2a25;
  padding: 3.5rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 2rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin-bottom: 0.75rem;
}

.hero-subtitle {
  font-size: 0.95rem;
  color: #6f6458;
  max-width: 34rem;
}

.hero-subtitle a {
  color: #2f2a25;
}

.hero-subtitle a:hover {
  color: #000;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.86);
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.13);
  border: 1px solid #d1c0a7;
}

.hero-card h2 {
  margin-top: 0;
  font-size: 1.15rem;
}

.hero-card ul {
  margin: 0.75rem 0 1.25rem;
  padding-left: 1.25rem;
  font-size: 0.9rem;
}

.full-width {
  width: 100%;
  text-align: center;
}

h1, h2, h3 {
  letter-spacing: 0.02em;
}

/* Sections */

.section {
  padding: 3rem 0;
  background: #e5dfd6;
}

.section-alt {
  background: #f7f1e8;
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.section-intro {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: #756a5f;
  max-width: 40rem;
}

/* Grid */

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* Cards */

.card {
  background: #fffdf8;
  border-radius: 1.25rem;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid #e1d2bd;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: #6c6257;
}

.info-list {
  margin-top: 0.5rem;
  padding-left: 1.2rem;
  font-size: 0.88rem;
}

.link-card:hover,
.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  background: #f2e4cf;
  text-decoration: none;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn.primary {
  background: #c89d5b;
  color: #fffbe9;
}

.btn.primary:hover {
  background: #b18441;
}

.btn.secondary {
  background: #2f2a25;
  color: #fdf7eb;
}

.btn.secondary:hover {
  background: #211d19;
}

.btn.ghost {
  background: transparent;
  color: #5f5449;
  border-color: #c2ae93;
}

.btn.ghost:hover {
  background: rgba(0,0,0,0.04);
}

/* Form */

.form {
  margin-top: 1.5rem;
  background: #fffdf8;
  border-radius: 1.25rem;
  padding: 1.75rem 1.6rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid #e1d2bd;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  color: #5f5449;
  margin-bottom: 0.25rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.55rem 0.6rem;
  border-radius: 0.65rem;
  border: 1px solid #d1c4b3;
  font-size: 0.9rem;
  font-family: inherit;
  background: #fffcf6;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid #c89d5b;
  outline-offset: 1px;
  border-color: #c89d5b;
}

.hidden-field {
  display: none;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 2rem;
  align-items: center;
}

.contact-card {
  background: #fffdf8;
  border-radius: 1.25rem;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  border: 1px solid #e1d2bd;
}

/* Footer */

.site-footer {
  background: #d0c1a9;
  color: #5d5246;
  padding: 1.5rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
}

.footer-links a {
  color: #3c3228;
}

.footer-links a:hover {
  color: #000;
}

/* Thank you */

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f4ede3, #d8c6ac);
}

.thank-you-main {
  padding: 2rem;
}

.thank-you-card {
  max-width: 420px;
  margin: 0 auto;
  background: #fffdf8;
  border-radius: 1.5rem;
  padding: 2rem 1.8rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Industry detail pages */

.industry-page-main {
  position: relative;
  min-height: 100vh;
  background: #281f18;
  color: #fdf7eb;
}

.industry-header {
  background: rgba(40,31,24,0.96);
  color: #fdf7eb;
  padding: 1rem 0;
  border-bottom: 1px solid #c2a47a;
}

.industry-header-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.industry-header a {
  color: #f4d7a0;
  font-size: 0.85rem;
}

.industry-body {
  max-width: 900px;
  margin: 2.5rem auto;
  padding: 0 1.5rem 2.5rem;
}

.industry-card-main {
  background: rgba(30,24,19,0.96);
  border-radius: 1.25rem;
  padding: 1.75rem 1.6rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid #c2a47a;
}

.industry-card-main h1 {
  margin-top: 0;
  margin-bottom: 0.3rem;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tagline {
  margin-top: 0;
  margin-bottom: 1.3rem;
  color: #f3e3c7;
  font-size: 0.95rem;
}

.option-group {
  margin-bottom: 1.4rem;
  padding: 1rem 1rem 0.9rem;
  border-radius: 0.9rem;
  background: radial-gradient(circle at top left, rgba(255, 230, 185, 0.16), rgba(24, 19, 15, 0.98));
  border: 1px solid rgba(242, 210, 152, 0.7);
}

.option-group h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffeabf;
}

.option-group p {
  margin-top: 0.3rem;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: #f7e6c8;
}

.option-list {
  list-style: none;
  padding-left: 0;
  margin: 0.3rem 0 0.75rem;
  font-size: 0.9rem;
}

.option-list li {
  margin-bottom: 0.3rem;
}

.option-list li::before {
  content: "•";
  margin-right: 0.4rem;
  color: #f4d7a0;
}

.option-list li a {
  color: #f8e0aa;
  font-weight: 500;
}

.option-list li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  font-size: 0.88rem;
  color: #f4d7a0;
}

@media (max-width: 800px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .nav a {
    margin-left: 0;
    margin-right: 1rem;
  }
}
