:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-shade1: #e7d1aa;
  --color-shade2: #5a5a6b;
  --color-main: #db9250;
  --color-secondary: #828176;
  --font-headline: 'Poppins', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --radius-btn: 25px;
  --max-width: 1280px;
  --nav-height: 80px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-black);
  background-color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
p  { font-size: 18px; }
li { font-size: 18px; }

a   { color: inherit; }
ul  { list-style: none; }
img { display: block; max-width: 100%; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { opacity: 0.82; }
.btn-primary { background-color: var(--color-black); color: var(--color-white); }
.btn-outline  { background-color: transparent; color: var(--color-black); border-color: var(--color-black); }
.btn-white    { background-color: var(--color-white); color: var(--color-black); }

/* ========== NAVIGATION ========== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  height: var(--nav-height);
}

.navbar {
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.navbar-logo {
  width: 110px;
  flex-shrink: 0;
}

.navbar-logo img {
  width: 100%;
  height: auto;
}

.navbar-tagline {
  font-size: 13px;
  color: #333;
  white-space: nowrap;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar-nav a {
  font-size: 16px;
  text-decoration: none;
  color: var(--color-black);
  font-weight: 400;
  transition: opacity 0.2s;
}
.navbar-nav a:hover { opacity: 0.65; }
.navbar-nav a.active { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.navbar-cta {
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-black);
  transition: all 0.3s;
}

/* ========== HERO (split layout: image left, beige content right) ========== */
.hero {
  display: flex;
  min-height: calc(100vh - var(--nav-height));
  background-color: var(--color-shade1);
}

.hero-image-side {
  flex: 0 0 56%;
  position: relative;
  overflow: hidden;
}

.hero-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-content-side {
  flex: 0 0 44%;
  background-color: var(--color-shade1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero-title-box {
  padding: 56px 52px 32px;
}

.hero-title-box h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 14px;
}

.hero-title-box .hero-subtitle {
  font-size: 17px;
  color: #333;
}

.hero-desc-box {
  padding: 20px 52px 56px;
}

.hero-desc-box p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 36px;
  color: #222;
}

.hero-scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0.6;
}

.hero-scroll a {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== SECTIONS ========== */
.section {
  padding: 72px 32px;
  background-color: var(--color-white);
}

.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 52px;
}

/* ========== SERVICES GRID ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-image img { transform: scale(1.03); }

.service-card-body {
  padding: 24px 0 12px;
}

.service-card-body h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.service-card-body h3 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 8px;
}

.service-card-body ul {
  list-style: disc;
  padding-left: 22px;
}

.service-card-body ul li {
  font-size: 16px;
  line-height: 1.7;
}

.service-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* ========== ABOUT SECTION ========== */
.about-section {
  background-color: var(--color-white);
  padding: 72px 32px;
}

.about-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-image {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  margin: 32px 0 40px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text {
  max-width: 860px;
  margin: 0 auto;
}

.about-text p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-text ul {
  list-style: disc;
  padding-left: 24px;
  margin: 8px 0 24px;
}

.about-text ul li {
  font-size: 18px;
  line-height: 1.8;
}

/* ========== CTA SECTION ========== */
.cta-section {
  position: relative;
  padding: 100px 32px;
  text-align: center;
  background-color: var(--color-main);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(219, 146, 80, 0.745);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  color: var(--color-white);
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 36px;
}

/* ========== FOOTER ========== */
footer {
  background-color: var(--color-shade1);
  padding: 28px 32px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.footer-links a {
  font-size: 14px;
  text-decoration: none;
  color: var(--color-black);
  transition: opacity 0.2s;
}
.footer-links a:hover  { opacity: 0.65; }
.footer-links a.active { font-weight: 700; }

/* ========== INNER PAGE HEADER ========== */
.page-header {
  background-color: var(--color-white);
  padding: 56px 32px 0;
}

.page-header-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-header h1 {
  text-align: center;
  margin-bottom: 32px;
}

.page-banner {
  width: 100%;
  max-height: 440px;
  overflow: hidden;
}

.page-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== CONTACT PAGE ========== */
.contact-info {
  background-color: var(--color-white);
  padding: 40px 32px;
  text-align: center;
}

.contact-info-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-info p  { font-size: 18px; line-height: 1.7; margin-bottom: 16px; }
.contact-info h2 { margin: 20px 0 8px; }
.contact-info a  { color: var(--color-black); }

.contact-form-section {
  background-color: var(--color-white);
  padding: 56px 32px 80px;
}

.contact-form-container {
  max-width: 720px;
  margin: 0 auto;
}

.contact-form-container h2 { margin-bottom: 32px; }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-black);
  background-color: var(--color-white);
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--color-black); }
.form-group textarea { resize: vertical; min-height: 160px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-tos {
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.5;
}
.form-tos a { text-decoration: underline; }

/* ========== LEGAL PAGES ========== */
.legal-section {
  background-color: var(--color-white);
  padding: 56px 32px 80px;
}

.legal-container {
  max-width: 860px;
  margin: 0 auto;
}

.legal-container h1 { margin-bottom: 32px; }
.legal-container h2 { font-size: 26px; margin: 36px 0 12px; }
.legal-container h3 { font-size: 20px; margin: 24px 0 10px; }
.legal-container h4 { font-size: 18px; margin: 20px 0 8px; }
.legal-container p  { margin-bottom: 14px; font-size: 16px; line-height: 1.7; }
.legal-container ul { list-style: disc; padding-left: 24px; margin-bottom: 14px; }
.legal-container ul ul { margin-top: 6px; }
.legal-container li { font-size: 16px; line-height: 1.7; margin-bottom: 4px; }
.legal-container a  { text-decoration: underline; }
.legal-container table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.legal-container td { padding: 12px 16px; border: 1px solid #ccc; font-size: 16px; line-height: 1.6; }

/* ========== COOKIE SETTINGS PAGE ========== */
.cookie-section {
  background-color: var(--color-white);
  padding: 56px 32px 80px;
}

.cookie-container {
  max-width: 860px;
  margin: 0 auto;
}

.cookie-container h1     { margin-bottom: 16px; }
.cookie-container > p    { margin-bottom: 20px; font-size: 16px; }

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.cookie-legal-links {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
}

.cookie-legal-links a {
  font-size: 14px;
  text-decoration: underline;
}

.cookie-category {
  border-top: 1px solid #e0d5c3;
  padding: 28px 0;
}

.cookie-category-title {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.cookie-category-desc {
  font-size: 16px;
  color: #444;
  margin-bottom: 16px;
  line-height: 1.6;
}

.cookie-no-items {
  font-size: 15px;
  color: #888;
  font-style: italic;
}

.cookie-item {
  background-color: #f9f7f3;
  border-radius: 6px;
  padding: 16px 20px;
  margin-top: 12px;
}

.cookie-item-name {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 16px;
}

.cookie-item-desc {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 10px;
}

.cookie-item-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-item-links a {
  font-size: 14px;
  text-decoration: underline;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1280px) {
  h1 { font-size: 36px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }
  p, li { font-size: 16px; }
  .hero-title-box h1 { font-size: 40px; }
  .hero-title-box { padding: 40px 36px 24px; }
  .hero-desc-box  { padding: 16px 36px 40px; }
  .cta-content h2 { font-size: 28px; }
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    min-height: 0;
  }
  .hero-image-side {
    flex: none;
    height: 50vw;
    min-height: 280px;
  }
  .hero-content-side {
    flex: none;
  }
  .hero-title-box { padding: 40px 24px 20px; }
  .hero-desc-box  { padding: 12px 24px 40px; }
  .hero-title-box h1 { font-size: 36px; }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin: 0 auto;
  }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
  .navbar-tagline { display: none; }

  .navbar-nav {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--color-white);
    padding: 24px 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    gap: 20px;
    z-index: 99;
  }
  .navbar-nav.open { display: flex; }
  .navbar-cta { display: none; }
  .hamburger  { display: flex; }

  .navbar-right { gap: 16px; }

  .section, .about-section { padding: 52px 20px; }
  .cta-section  { padding: 72px 20px; }
  footer        { padding: 24px 20px; }
  .page-header  { padding: 40px 20px 0; }
  .contact-form-section, .legal-section, .cookie-section { padding: 40px 20px 60px; }
  .contact-info { padding: 32px 20px; }
}

.form-success,
.form-error {
  padding: 16px 20px;
  border-radius: 6px;
  margin-bottom: 24px;
  font-size: 15px;
}
.form-success { background: #e6f4ea; border: 1px solid #a8d5b0; color: #1e5c2e; }
.form-error   { background: #fdecea; border: 1px solid #f5b8b3; color: #8c1c13; }

@media (max-width: 480px) {
  .hero-title-box h1 { font-size: 30px; }
  .btn { font-size: 14px; padding: 12px 20px; }
  .footer-links { gap: 16px; }
  .cookie-actions { flex-direction: column; }
  .service-card-actions { gap: 8px; }
}
