:root {
  --green-dark: #0b5d1e;
  --green-light: #66a640;
  --gold: #cba34b;
  --bg-light: #f6f7f5;
  --text-main: #222;
  --text-muted: #555;
  --white: #ffffff;
  --shadow-soft: 0 10px 25px rgba(0,0,0,0.08);
  --radius-large: 18px;
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Noto Sans JP", sans-serif;
  line-height: 1.7;
  background: var(--bg-light);
  color: var(--text-main);
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* ===================== HEADER ===================== */
/*  */
.header-top {
  background: rgba(11,93,30,0.96);
  color: var(--white);
  padding: 0.6rem 1rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-area img {
  width: 60px;
  height: auto;
}

.company-info {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.company-info .logo-text-main {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.company-info .logo-text-sub {
  font-size: 0.78rem;
  opacity: 0.9;
  white-space: nowrap;
}

/*  */
.header-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--green-dark);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: var(--white);
}

nav a {
  position: relative;
  padding-bottom: 0.1rem;
  transition: color 0.25s;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--green-light));
  transition: width 0.25s;
}

nav a:hover {
  color: var(--gold);
}

nav a:hover::after {
  width: 100%;
}

/* ===================== HERO ===================== */
.hero {
  background: radial-gradient(circle at top left, #8acb5b, #0b5d1e 55%, #063412 100%);
  color: var(--white);
  padding: 3.5rem 0 4rem;
  text-align: center;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-copy h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.hero-copy h1 span {
  color: var(--gold);
}

.hero-lead {
  font-size: 1rem;
  max-width: 650px;
  margin: 0 auto 1.5rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
}

.hero-tag {
  font-size: 0.8rem;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.08);
}

/*  */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.7rem 1.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #f7e3a2);
  color: #2b210a;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0,0,0,0.18);
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0,0,0,0.22);
}

.btn-secondary {
  font-size: 0.9rem;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.7);
  color: var(--white);
}

.hero-logo-circle {
  width: 200px;
  margin: 2rem auto 0;
}

/* ===================== SECTION BASE ===================== */
section {
  padding: 3rem 0 2.3rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.section-title {
  font-size: 1.5rem;
  margin-top: 0.4rem;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* ===================== ABOUT ===================== */
.about-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.4rem;
}

.about-card,
.about-highlight {
  background: var(--white);
  border-radius: var(--radius-large);
  padding: 1.8rem;
  box-shadow: var(--shadow-soft);
}

.about-highlight {
  background: linear-gradient(135deg, rgba(11,93,30,0.1), rgba(102,166,64,0.05));
}

.about-card h3,
.about-highlight h3 {
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

/* ===================== SERVICES ===================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-large);
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--gold);
}

.service-tag {
  display: inline-block;
  font-size: 0.7rem;
  background: rgba(11,93,30,0.06);
  color: var(--green-dark);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

.service-list {
  list-style: none;
  margin-top: 0.6rem;
}

.service-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
  margin-bottom: 0.3rem;
  padding-left: 1rem;
}

.service-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--green-light);
}

/* ===================== CONTACT ===================== */
.contact-section {
  background: radial-gradient(circle at top, #e6f5d9, #f6f7f5 55%);
}

form {
  background: var(--white);
  border-radius: var(--radius-large);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(203,163,75,0.16);
  max-width: 700px;
  margin: 0 auto;
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

input,
textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  border: 1px solid #ccd2c4;
  background: #fbfcfa;
  margin-bottom: 1rem;
}

input:focus,
textarea:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 2px rgba(102,166,64,0.25);
  background: #fff;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===================== FOOTER ===================== */
footer {
  background: #041f0b;
  color: rgba(255,255,255,0.82);
  padding: 1.4rem 0;
  text-align: center;
  font-size: 0.8rem;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-top-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
  }

  .company-info {
    flex-direction: column;
    align-items: center;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    font-size: 0.9rem;
  }

  .hero {
    padding: 2.8rem 1rem 2.5rem;
  }

  .hero-copy h1 {
    font-size: 1.45rem;
    line-height: 1.6;
  }

  .hero-lead {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 1.3rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }
}
/* ---- BAR ---- */
#bar {
  background: linear-gradient(180deg, #0b0b0b 0%, #1a1a1a 100%);
  color: var(--white);
  padding: 4rem 0;
}

#bar .section-label,
#bar .section-title,
#bar .section-subtitle {
  color: var(--white);
}

#bar .restaurant-info p {
  color: #e0e0e0;
}

#bar .restaurant-info img {
  border: 3px solid rgba(203,163,75,0.25);
}