

:root {
  
  --color-bg:        #F5F2EC;       
  --color-surface:   #FFFFFF;
  --color-primary:   #5C8A6E;       
  --color-accent:    #B5472A;       
  --color-text:      #2C2C2C;       
  --color-muted:     #7A7A6E;       
  --color-border:    #DDD9D0;
  --color-hero-bg:   #E8E2D7;

  --font-heading: 'Noto Serif JP', 'Georgia', serif;
  --font-body:    'Noto Sans JP', 'Helvetica Neue', sans-serif;

  --section-pad: 80px 0;
  --container:   1100px;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--color-bg); }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  font-size: 17px;
  line-height: 1.7;
}
img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section    { padding: var(--section-pad); }
.section--alt { background: var(--color-surface); }
.section--dark { background: var(--color-primary); color: #fff; }

.tag {
  display: inline-block;
  font-size: 11px;
  font-family: var(--font-body);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

h1,h2,h3,h4 {
  font-family: var(--font-heading);
  line-height: 1.35;
  color: var(--color-text);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }

p { margin-bottom: 14px; }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: .04em;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.btn-primary:hover { background: #9c3c23; border-color: #9c3c23; }
.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.btn-outline:hover { background: var(--color-accent); color: #fff; }
.btn-green {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn-green:hover { background: #4a7259; border-color: #4a7259; }

.site-header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 0 24px;
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.header-logo img { width: 48px; height: 48px; }
.header-logo .brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.2;
}
.header-logo .brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--color-muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 400;
}
.site-nav { display: flex; align-items: center; gap: 32px; }
.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; margin: 0; padding: 0; }
.site-nav a {
  font-size: 14px;
  color: var(--color-text);
  font-weight: 500;
  letter-spacing: .02em;
}
.site-nav a:hover { color: var(--color-primary); }
.site-nav .btn { padding: 10px 22px; font-size: 14px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  margin: 5px 0;
}

.hero {
  background: var(--color-hero-bg);
  padding: 90px 24px 80px;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-content h1 { margin-bottom: 20px; color: var(--color-text); }
.hero-content p  { font-size: 18px; color: var(--color-muted); margin-bottom: 32px; max-width: 480px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-photo {
  aspect-ratio: 4/3;
  background: var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo .photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #C8D8C8 0%, #E0D8CC 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--color-muted);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.photo-placeholder svg { opacity: .4; }

.highlights {
  background: var(--color-primary);
  padding: 40px 24px;
}
.highlights-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #fff;
}
.highlight-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.highlight-icon svg { fill: #fff; }
.highlight-item h4 { font-size: 15px; font-family: var(--font-body); color: #fff; margin-bottom: 4px; }
.highlight-item p  { font-size: 13px; color: rgba(255,255,255,.75); margin: 0; line-height: 1.5; }

.about-intro {
  padding: var(--section-pad);
  background: var(--color-surface);
}
.about-intro-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-photo {
  aspect-ratio: 3/4;
  background: var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.about-photo .photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #D4E4D4 0%, #EAE2D4 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  color: var(--color-muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.about-intro-text .tag { margin-bottom: 14px; }
.about-intro-text p { color: var(--color-muted); }
.about-intro-text a { color: var(--color-primary); font-weight: 600; }

.services { padding: var(--section-pad); background: var(--color-bg); }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 52px; }
.section-header p { color: var(--color-muted); }
.services-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
}
.service-icon {
  width: 52px;
  height: 52px;
  background: #EEF5F0;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-card h3 { color: var(--color-text); margin-bottom: 10px; }
.service-card p  { color: var(--color-muted); font-size: 15px; }

.destinations { padding: var(--section-pad); background: var(--color-surface); }
.destinations-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dest-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.dest-photo {
  aspect-ratio: 16/10;
  background: var(--color-border);
}
.dest-photo .photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #C8D4D8 0%, #D8D4C8 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  color: var(--color-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.dest-body { padding: 20px 22px; }
.dest-body h3 { font-size: 1.1rem; margin-bottom: 6px; }
.dest-body p  { font-size: 14px; color: var(--color-muted); margin: 0; }

.why-us { padding: var(--section-pad); background: var(--color-hero-bg); }
.why-us-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-num {
  width: 36px;
  height: 36px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}
.why-item-text h4 { font-family: var(--font-body); font-weight: 700; margin-bottom: 5px; }
.why-item-text p  { color: var(--color-muted); font-size: 15px; margin: 0; }
.why-photo {
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-border);
}
.why-photo .photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #D0E0D4 0%, #E8DDD0 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  color: var(--color-muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.testimonials { padding: var(--section-pad); background: var(--color-primary); }
.testimonials .section-header h2 { color: #fff; }
.testimonials .section-header p  { color: rgba(255,255,255,.75); }
.testimonials-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  padding: 28px 26px;
}
.testimonial-stars { color: #F5C842; font-size: 16px; margin-bottom: 14px; }
.testimonial-card blockquote {
  font-size: 15px;
  color: rgba(255,255,255,.9);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.author-info { font-size: 13px; color: rgba(255,255,255,.8); }
.author-info strong { display: block; color: #fff; font-size: 14px; margin-bottom: 2px; }

.packages { padding: var(--section-pad); background: var(--color-bg); }
.packages-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.package-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.package-photo {
  aspect-ratio: 3/2;
  background: var(--color-border);
}
.package-photo .photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #D0D8D0 0%, #E0D0C8 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  color: var(--color-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.package-badge {
  display: inline-block;
  font-size: 11px;
  background: #EEF5F0;
  color: var(--color-primary);
  border-radius: 20px;
  padding: 3px 12px;
  font-weight: 600;
  letter-spacing: .05em;
  margin-bottom: 10px;
}
.package-body { padding: 22px; }
.package-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.package-body p  { font-size: 14px; color: var(--color-muted); margin-bottom: 16px; }
.package-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--color-muted);
}
.package-meta span { display: flex; align-items: center; gap: 5px; }
.package-body .btn { width: 100%; text-align: center; padding: 12px; font-size: 14px; }

.news { padding: var(--section-pad); background: var(--color-surface); }
.news-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.news-photo {
  aspect-ratio: 16/9;
  background: var(--color-border);
}
.news-photo .photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #D8D0CC 0%, #CCE0D4 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  color: var(--color-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.news-body { padding: 20px 22px; }
.news-date { font-size: 12px; color: var(--color-muted); margin-bottom: 8px; letter-spacing: .05em; }
.news-body h3 { font-size: 1rem; margin-bottom: 8px; line-height: 1.4; }
.news-body p  { font-size: 14px; color: var(--color-muted); margin-bottom: 14px; }
.news-body a  { font-size: 14px; color: var(--color-primary); font-weight: 600; }

.faq { padding: var(--section-pad); background: var(--color-hero-bg); }
.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}
.faq-inner .section-header { text-align: left; margin-bottom: 36px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--color-text);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}
.faq-question .faq-icon {
  width: 24px;
  height: 24px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.7;
}
.faq-answer.open { max-height: 400px; padding-bottom: 18px; }

.contacts { padding: var(--section-pad); background: var(--color-surface); }
.contacts-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contacts-info h2 { margin-bottom: 28px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: #EEF5F0;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { fill: var(--color-primary); }
.contact-item-body strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--color-muted); margin-bottom: 4px; }
.contact-item-body a, .contact-item-body p { font-size: 16px; color: var(--color-text); margin: 0; font-weight: 500; }
.contacts-map {
  background: var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--color-muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.contacts-map svg { opacity: .35; }

.site-footer {
  background: #2C2C2C;
  color: rgba(255,255,255,.7);
  padding: 52px 24px 32px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.footer-top {
  display: flex;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  flex-wrap: wrap;
}
.footer-brand {
  flex: 1;
  min-width: 240px;
}
.footer-brand img { width: 44px; height: 44px; margin-bottom: 12px; }
.footer-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #fff;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.footer-brand .brand-sub {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  letter-spacing: .1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}
.footer-brand p { font-size: 14px; line-height: 1.6; }
.footer-nav {
  display: flex;
  gap: 32px;
  flex: 1;
  min-width: 300px;
}
.footer-col {
  flex: 0 1 auto;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.7); }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 13px;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,.55); }
.footer-legal a:hover { color: rgba(255,255,255,.85); }

.package-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
  margin: 14px 0;
}

@media (max-width: 900px) {
  .highlights-grid     { grid-template-columns: repeat(2, 1fr); }
  .services-grid       { grid-template-columns: repeat(2, 1fr); }
  .destinations-grid   { grid-template-columns: repeat(2, 1fr); }
  .packages-grid       { grid-template-columns: repeat(2, 1fr); }
  .news-grid           { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-top          { flex-direction: column; gap: 32px; }
  .footer-nav          { flex-direction: column; gap: 24px; }
  .hero-inner          { grid-template-columns: 1fr; gap: 36px; }
  .about-intro-inner   { grid-template-columns: 1fr; }
  .why-us-inner        { grid-template-columns: 1fr; }
  .contacts-inner      { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  :root { --section-pad: 56px 0; }
  .highlights-grid     { grid-template-columns: 1fr; }
  .services-grid       { grid-template-columns: 1fr; }
  .destinations-grid   { grid-template-columns: 1fr; }
  .packages-grid       { grid-template-columns: 1fr; }
  .news-grid           { grid-template-columns: 1fr; }
  .testimonials-grid   { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--color-surface); border-bottom: 1px solid var(--color-border); padding: 12px 24px; gap: 8px; z-index: 1000; }
  .hero-content p { font-size: 16px; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { width: 100%; text-align: center; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.25rem; }
  .section { padding: 48px 0; }
}

.services .section-header,
.destinations .section-header,
.packages .section-header,
.testimonials .section-header,
.news .section-header,
.faq .section-header {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2C2C2C;
  color: rgba(255,255,255,.9);
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.cookie-banner.show {
  opacity: 1;
  visibility: visible;
}
.cookie-banner-content {
  max-width: 1100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 0 24px;
}
.cookie-banner h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 4px 0;
}
.cookie-banner p {
  font-size: 14px;
  margin: 0;
  color: rgba(255,255,255,.8);
}
.cookie-banner a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}
.cookie-banner .btn {
  flex-shrink: 0;
  padding: 10px 24px;
  font-size: 14px;
}
@media (max-width: 640px) {
  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .cookie-banner .btn {
    width: 100%;
    text-align: center;
  }
}
