* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-main: #f6efe6;
  --bg-soft: #efe5d6;
  --bg-ivory: #fcf8f2;
  --bg-sage: #e5ede6;
  --white: #ffffff;

  --green: #183b2f;
  --green-soft: #2f5a49;
  --gold: #b99058;
  --gold-soft: #d6bf98;
  --brown: #60402e;

  --text: #22201d;
  --muted: #756a60;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top left, rgba(185, 144, 88, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(24, 59, 47, 0.09), transparent 28%),
    var(--bg-main);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

header {
  background: rgba(246, 239, 230, 0.92);
  border-bottom: 1px solid rgba(185, 144, 88, 0.25);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}

nav {
  max-width: 1180px;
  margin: auto;
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--green);
  text-transform: uppercase;
}

.logo span {
  color: var(--gold);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: 18px;
  margin-left: 6px;
}

.nav-links a {
  text-decoration: none;
  color: var(--green);
  margin-left: 28px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
}

.nav-links a:hover {
  color: var(--gold);
}

.hero-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(252, 248, 242, 0.96), rgba(239, 229, 214, 0.86)),
    radial-gradient(circle at 12% 15%, rgba(24, 59, 47, 0.13), transparent 22%),
    radial-gradient(circle at 85% 18%, rgba(185, 144, 88, 0.16), transparent 25%),
    var(--bg-main);
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: var(--green);
  border-radius: 50%;
  top: -260px;
  left: -180px;
  opacity: 0.82;
  z-index: 0;
}

.hero-section::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(185, 144, 88, 0.22);
  border-radius: 50%;
  right: -230px;
  bottom: -240px;
  z-index: 0;
}

.decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.decor-two {
  width: 230px;
  height: 230px;
  right: 70px;
  bottom: 70px;
  opacity: 0.18;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(185, 144, 88, 0.4) 1px, transparent 1px);
  background-size: 18px 18px;
}

.hero {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: auto;
  padding: 55px 28px 75px;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  margin-bottom: 18px;
}

.hero-text {
  position: relative;
}

.hero-text::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 1px;
  background: var(--gold-soft);
  top: -22px;
  left: 0;
}

.hero-text h1 {
  font-size: 66px;
  line-height: 1.04;
  margin-bottom: 26px;
  color: var(--green);
  font-weight: normal;
}

.hero-text h1 em {
  color: var(--brown);
  font-style: italic;
}

.hero-text p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 34px;
  max-width: 560px;
  font-family: Arial, sans-serif;
}

.button {
  display: inline-block;
  background: var(--green);
  color: var(--bg-ivory);
  padding: 14px 28px;
  border-radius: 28px;
  text-decoration: none;
  font-weight: bold;
  margin-right: 12px;
  margin-bottom: 10px;
  font-family: Arial, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
  border: 1px solid var(--green);
  transition: all 0.3s ease;
}

.button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
  transform: translateY(-2px);
}

.button.secondary {
  background: rgba(252, 248, 242, 0.72);
  color: var(--green);
  border: 1px solid var(--gold);
}

.button.secondary:hover {
  background: var(--gold);
  color: white;
}

.hero-visual {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-sage), #f4e6d9);
  opacity: 0.95;
  top: 15px;
  right: 30px;
  z-index: 0;
  box-shadow: inset 0 0 0 1px rgba(185, 144, 88, 0.22);
}

.hero-visual::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: #ead6cc;
  opacity: 0.88;
  bottom: 15px;
  left: 8px;
  z-index: 0;
}

.vending-machine-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  display: block;
  filter: drop-shadow(0 30px 45px rgba(24, 59, 47, 0.22));
}

section {
  padding: 88px 28px;
  position: relative;
}

.section-ivory {
  background:
    linear-gradient(180deg, var(--bg-ivory), #f7efe4);
}

.section-soft {
  background:
    radial-gradient(circle at top right, rgba(185, 144, 88, 0.12), transparent 25%),
    var(--bg-soft);
}

.section-sage {
  background:
    radial-gradient(circle at bottom left, rgba(24, 59, 47, 0.12), transparent 24%),
    linear-gradient(135deg, var(--bg-sage), var(--bg-main));
}

.container {
  max-width: 1180px;
  margin: auto;
}

.section-title {
  max-width: 760px;
  margin-bottom: 46px;
}

.center-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-title span {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  font-size: 12px;
  font-weight: bold;
  font-family: Arial, sans-serif;
}

.section-title h2 {
  font-size: 46px;
  line-height: 1.12;
  margin-top: 12px;
  margin-bottom: 16px;
  color: var(--green);
  font-weight: normal;
}

.section-title p {
  color: var(--muted);
  font-size: 18px;
  font-family: Arial, sans-serif;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(252, 248, 242, 0.9));
  padding: 32px;
  border: 1px solid rgba(185, 144, 88, 0.22);
  border-radius: 26px;
  position: relative;
  min-height: 230px;
  box-shadow: 0 14px 30px rgba(24, 59, 47, 0.06);
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1px solid rgba(185, 144, 88, 0.18);
}

.card-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: var(--bg-ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  font-size: 13px;
  margin-bottom: 24px;
}

.card h3 {
  font-size: 25px;
  margin-bottom: 14px;
  color: var(--green);
  font-weight: normal;
}

.card p {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 15.5px;
}

.touches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.touch {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(185, 144, 88, 0.2);
  border-radius: 24px;
  padding: 26px;
  text-align: center;
  font-family: Arial, sans-serif;
  color: var(--muted);
  box-shadow: 0 14px 30px rgba(24, 59, 47, 0.05);
}

.touch span {
  display: block;
  font-size: 28px;
  margin-bottom: 12px;
}

.touch strong {
  display: block;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 8px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
  gap: 65px;
  align-items: start;
}

.about-panel {
  background:
    linear-gradient(145deg, var(--green), #234d3f);
  color: var(--bg-ivory);
  padding: 42px;
  border-radius: 30px;
  border: 1px solid rgba(185, 144, 88, 0.55);
  box-shadow: 0 18px 40px rgba(24, 59, 47, 0.14);
}

.about-panel h2 {
  font-size: 44px;
  line-height: 1.1;
  font-weight: normal;
}

.about-panel p {
  margin-top: 22px;
  color: #e9ddcf;
  font-family: Arial, sans-serif;
}

.about-text p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}

.signature {
  margin-top: 28px;
  color: var(--gold);
  font-size: 24px;
  font-style: italic;
}

.dark-section {
  background:
    radial-gradient(circle at top left, rgba(185, 144, 88, 0.18), transparent 30%),
    var(--green);
  color: var(--bg-ivory);
}

.dark-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.dark-card {
  background: rgba(255, 253, 248, 0.07);
  padding: 38px;
  border-radius: 28px;
  border: 1px solid rgba(185, 144, 88, 0.35);
}

.dark-card h3 {
  font-size: 27px;
  margin-bottom: 13px;
  font-weight: normal;
  color: #f4e0bd;
}

.dark-card p {
  color: #e2d6c8;
  font-family: Arial, sans-serif;
}

.contact {
  text-align: center;
  background:
    linear-gradient(135deg, rgba(231, 238, 232, 0.95), rgba(244, 230, 217, 0.94), rgba(248, 243, 236, 0.98));
  padding: 70px 30px;
  border-radius: 34px;
  border: 1px solid rgba(185, 144, 88, 0.24);
  box-shadow: 0 18px 40px rgba(24, 59, 47, 0.08);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: var(--green);
  border-radius: 50%;
  left: -150px;
  bottom: -170px;
  opacity: 0.75;
}

.contact::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(185, 144, 88, 0.35);
  border-radius: 50%;
  right: -70px;
  top: -70px;
}

.contact h2,
.contact p,
.contact-buttons {
  position: relative;
  z-index: 2;
}

.contact h2 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--green);
  font-weight: normal;
}

.contact p {
  color: var(--muted);
  font-size: 18px;
  margin: 0 auto 30px;
  max-width: 760px;
  font-family: Arial, sans-serif;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

footer {
  background: #0f2a21;
  color: #e8dccd;
  text-align: center;
  padding: 26px;
  font-size: 13px;
  font-family: Arial, sans-serif;
  letter-spacing: 1px;
}

@media (max-width: 850px) {
  .hero,
  .about-grid,
  .dark-grid {
    grid-template-columns: 1fr;
  }

  .cards,
  .touches-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 45px 28px 65px;
    gap: 35px;
  }

  .hero-text h1 {
    font-size: 43px;
  }

  .section-title h2,
  .about-panel h2,
  .contact h2 {
    font-size: 34px;
  }

  .nav-links {
    display: none;
  }

  .logo {
    font-size: 21px;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-visual::before {
    width: 280px;
    height: 280px;
    right: 20px;
    top: 20px;
  }

  .hero-visual::after {
    width: 170px;
    height: 170px;
    left: 5px;
  }

  .vending-machine-img {
    max-width: 360px;
  }

  .decor-two {
    opacity: 0.14;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-buttons .button {
    width: 100%;
    max-width: 310px;
    margin-right: 0;
  }
}