@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons+Outlined");

:root {
  /* Simple Color Palette */
  --color-main: #2ea37f;
  --color-main-dark: #1b8e6b;
  --color-accent: #f594b7;
  --color-accent-light: #ffedf4;

  --color-bg: #f8fcfb;
  --color-surface: #ffffff;
  --color-surface-2: #f0f9f6;
  --color-text: #2c443e;
  --color-muted: #5c7a72;
  --color-border: rgba(46, 163, 127, 0.12);

  --radius: 20px;
  --radius-lg: 32px;
  --radius-sm: 12px;

  --shadow-sm:
    0 2px 8px rgba(13, 65, 52, 0.04), 0 1px 2px rgba(13, 65, 52, 0.04);
  --shadow-md:
    0 12px 24px -6px rgba(13, 65, 52, 0.08),
    0 4px 8px -4px rgba(13, 65, 52, 0.04);
  --shadow-lg: 0 24px 48px -12px rgba(13, 65, 52, 0.14);

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 40px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--color-text);
  background:
    radial-gradient(circle at 0% 0%, rgba(46, 163, 127, 0.08), transparent 40%),
    radial-gradient(
      circle at 100% 100%,
      rgba(245, 148, 183, 0.08),
      transparent 40%
    ),
    var(--color-bg);
  font-family: "Zen Kaku Gothic New", "Helvetica Neue", "Segoe UI", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
  transition:
    color 0.2s,
    background-color 0.2s;
}

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

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: padding 0.3s;
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.header__logo {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--color-main);
  font-size: 1.2rem;
  line-height: 1;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text);
  background: transparent;
  border-radius: 99px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all 0.2s cubic-bezier(0.2, 0, 0, 1);
  border: 1px solid transparent;
}

.nav__link:hover {
  background: rgba(46, 163, 127, 0.08);
  color: var(--color-main);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(46, 163, 127, 0.08);
  border: 1px solid rgba(46, 163, 127, 0.18);
  box-shadow: 0 10px 24px rgba(13, 65, 52, 0.06);
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 0;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--color-text);
  border-radius: 999px;
  transition:
    transform 0.2s,
    background 0.2s,
    opacity 0.2s;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 80px);
  min-height: calc(100svh - 80px);
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 0 0 56px 0;
  background: var(--color-surface-2);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 43, 36, 0.1) 0%,
    rgba(15, 43, 36, 0.2) 60%,
    rgba(15, 43, 36, 0.4) 100%
  );
  z-index: 2;
  mix-blend-mode: normal;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(1.1) brightness(1.1);
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(46, 163, 127, 0.3) 0%,
    rgba(46, 163, 127, 0.5) 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 40px 0;
}

.hero__title {
  margin: 0 0 24px 0;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.05em;
  color: #fff;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero__description {
  margin: 24px 0 0 0;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.9;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: all 0.25s cubic-bezier(0.2, 0, 0, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--color-main),
    var(--color-main-dark)
  );
  box-shadow: 0 4px 12px rgba(46, 163, 127, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46, 163, 127, 0.4);
}

.btn--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
}

/* Section */
.section {
  padding: 56px 0;
}

.section__header {
  text-align: center;
  margin-bottom: 40px;
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-main);
  margin-bottom: 14px;
  padding: 4px 12px;
  background: rgba(46, 163, 127, 0.1);
  border-radius: 99px;
}

.section__title {
  margin: 0;
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: 0.04em;
  color: var(--color-text);
}

.section--about {
  background: var(--color-surface);
}

.section--services {
  background: var(--color-surface-2);
}

.section--gallery {
  background: var(--color-surface);
}

.section--contact {
  background: var(--color-surface-2);
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text {
  padding: 20px;
}

.about__subtitle {
  margin: 0 0 16px 0;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text);
}

.about-text p {
  margin: 0 0 16px 0;
  color: var(--color-muted);
  line-height: 1.9;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  background: var(--color-surface-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-main);
  margin: 0 auto 16px;
}

.service-card__icon .material-icons-outlined {
  font-size: 32px;
}

.service-card__title {
  margin: 0 0 12px 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-text);
}

.service-card__text {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.8;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  aspect-ratio: 4 / 3;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info__item .material-icons-outlined {
  font-size: 32px;
  color: var(--color-main);
  flex-shrink: 0;
}

.contact-info__label {
  margin: 0 0 8px 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
}

.contact-info__value {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.8;
}

.contact-info__value a {
  color: var(--color-main);
  transition: color 0.2s;
}

.contact-info__value a:hover {
  color: var(--color-main-dark);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
}

.form-input,
.form-textarea {
  padding: 12px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-main);
  box-shadow: 0 0 0 3px rgba(46, 163, 127, 0.1);
}

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

/* Footer */
.footer {
  padding: 40px 0;
  color: var(--color-muted);
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-nav__list {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav__link {
  font-size: 0.9rem;
  color: var(--color-muted);
  transition: color 0.2s;
}

.footer-nav__link:hover {
  color: var(--color-main);
}

.footer__copyright {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 840px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

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

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

  .contact-content {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

.sp-only {
  display: block;
}

@media (min-width: 841px) {
  .sp-only {
    display: none;
  }
}
