/*
Theme Name: İlkadım Kreş Anaokulu
Theme URI: https://example.com/ilkadim-kres
Author: OpenAI ChatGPT
Author URI: https://openai.com/
Description: İlkadım Kreş ve Anaokulu için mobil uyumlu, tek sayfalık, sade ve sıcak bir WordPress teması.
Version: 1.2.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ilkadim-kres
Tags: education, kindergarten, one-page, custom-logo, custom-menu, responsive-layout
*/

:root {
  --ilkadim-bg: #fff8ee;
  --ilkadim-surface: #ffffff;
  --ilkadim-text: #263238;
  --ilkadim-muted: #667085;
  --ilkadim-primary: #2f8f83;
  --ilkadim-primary-dark: #1d6b61;
  --ilkadim-accent: #f5a623;
  --ilkadim-soft: #e8f6f3;
  --ilkadim-pink: #fff0ee;
  --ilkadim-border: #f0e4d5;
  --ilkadim-shadow: 0 18px 45px rgba(39, 58, 72, 0.12);
  --ilkadim-radius: 28px;
  --ilkadim-radius-small: 18px;
  --ilkadim-container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ilkadim-text);
  background: var(--ilkadim-bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.screen-reader-text,
.skip-link {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.skip-link:focus {
  background: #ffffff;
  clip: auto !important;
  clip-path: none;
  color: var(--ilkadim-primary-dark);
  display: block;
  font-weight: 700;
  height: auto;
  left: 16px;
  padding: 12px 16px;
  top: 16px;
  width: auto;
  z-index: 99999;
  border-radius: 12px;
  box-shadow: var(--ilkadim-shadow);
}

.ilkadim-container {
  width: min(var(--ilkadim-container), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 238, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(240, 228, 213, 0.8);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(33, 53, 63, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.site-branding-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}


.custom-logo {
  max-height: 58px;
  width: auto;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--ilkadim-primary), #7ccbc1);
  color: #ffffff;
  font-weight: 900;
  font-size: 22px;
  box-shadow: 0 12px 26px rgba(47, 143, 131, 0.24);
}

.site-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.site-description {
  margin: 2px 0 0;
  font-size: 13px;
  color: var(--ilkadim-muted);
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #3b4a54;
  font-size: 15px;
  font-weight: 650;
  transition: background 180ms ease, color 180ms ease;
}

.site-menu a:hover,
.site-menu a:focus {
  outline: none;
  background: var(--ilkadim-soft);
  color: var(--ilkadim-primary-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: #ffffff;
  color: var(--ilkadim-text);
  box-shadow: 0 10px 22px rgba(39, 58, 72, 0.1);
  cursor: pointer;
}

.mobile-menu-toggle span,
.mobile-menu-toggle span::before,
.mobile-menu-toggle span::after {
  content: "";
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu-toggle span::before {
  transform: translateY(-7px);
}

.mobile-menu-toggle span::after {
  transform: translateY(5px);
}

.mobile-menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.mobile-menu-toggle[aria-expanded="true"] span::before {
  transform: translateY(2px) rotate(45deg);
  background: var(--ilkadim-text);
}

.mobile-menu-toggle[aria-expanded="true"] span::after {
  transform: translateY(0) rotate(-45deg);
  background: var(--ilkadim-text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  outline: none;
}

.btn-primary {
  background: var(--ilkadim-primary);
  color: #ffffff;
  box-shadow: 0 14px 24px rgba(47, 143, 131, 0.22);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--ilkadim-primary-dark);
  color: #ffffff;
}

.btn-accent {
  background: var(--ilkadim-accent);
  color: #2b2313;
  box-shadow: 0 14px 24px rgba(245, 166, 35, 0.2);
}

.btn-ghost {
  background: #ffffff;
  color: var(--ilkadim-primary-dark);
  border-color: rgba(47, 143, 131, 0.18);
}

.btn-small {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 14px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 70px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 430px;
  height: 430px;
  right: -160px;
  top: -170px;
  background: rgba(245, 166, 35, 0.18);
}

.hero::after {
  width: 280px;
  height: 280px;
  left: -120px;
  bottom: 20px;
  background: rgba(47, 143, 131, 0.12);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: 48px;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ilkadim-primary-dark);
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 10px 24px rgba(39, 58, 72, 0.08);
}

.eyebrow::before {
  content: "✦";
  color: var(--ilkadim-accent);
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-lead {
  max-width: 690px;
  margin: 22px 0 0;
  font-size: clamp(18px, 2vw, 22px);
  color: #4d5b63;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  max-width: 720px;
}

.hero-note {
  padding: 16px;
  border: 1px solid rgba(47, 143, 131, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 28px rgba(39, 58, 72, 0.06);
}

.hero-note strong {
  display: block;
  font-size: 18px;
}

.hero-note span {
  display: block;
  margin-top: 4px;
  color: var(--ilkadim-muted);
  font-size: 14px;
}

.hero-card {
  position: relative;
  min-height: 500px;
  border-radius: 36px;
  padding: 26px;
  background: linear-gradient(160deg, #ffffff, #fff2d8);
  box-shadow: var(--ilkadim-shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 2px dashed rgba(47, 143, 131, 0.18);
  border-radius: 28px;
}


.hero-card.has-image {
  padding: 0;
  background: #ffffff;
}

.hero-card.has-image::before {
  display: none;
}

.hero-uploaded-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.playground {
  position: absolute;
  inset: 0;
}

.sun {
  position: absolute;
  top: 48px;
  right: 46px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--ilkadim-accent);
  box-shadow: 0 0 0 18px rgba(245, 166, 35, 0.14);
}

.cloud {
  position: absolute;
  top: 110px;
  left: 46px;
  width: 152px;
  height: 58px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 56px -10px 0 4px #ffffff, 32px -26px 0 10px #ffffff;
}

.house {
  position: absolute;
  left: 50%;
  bottom: 112px;
  transform: translateX(-50%);
  width: 260px;
  height: 188px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 20px 38px rgba(39, 58, 72, 0.1);
}

.house::before {
  content: "";
  position: absolute;
  left: 24px;
  top: -88px;
  width: 212px;
  height: 212px;
  border-radius: 30px;
  background: var(--ilkadim-primary);
  transform: rotate(45deg);
  z-index: -1;
}

.door {
  position: absolute;
  left: 99px;
  bottom: 0;
  width: 62px;
  height: 88px;
  border-radius: 24px 24px 0 0;
  background: #f7c56b;
}

.window {
  position: absolute;
  top: 48px;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: var(--ilkadim-soft);
  border: 5px solid #ffffff;
  box-shadow: inset 0 0 0 2px rgba(47, 143, 131, 0.18);
}

.window-left {
  left: 42px;
}

.window-right {
  right: 42px;
}

.ground {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 128px;
  background: var(--ilkadim-soft);
  border-radius: 48% 52% 0 0;
}

.child-dot {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ffdad2;
  box-shadow: 0 12px 22px rgba(39, 58, 72, 0.1);
}

.child-dot::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 21px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #263238;
  box-shadow: 24px 0 0 #263238;
}

.child-dot::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 42px;
  width: 24px;
  height: 10px;
  border-radius: 0 0 999px 999px;
  border-bottom: 3px solid #263238;
}

.child-one {
  left: 42px;
  bottom: 72px;
}

.child-two {
  right: 54px;
  bottom: 54px;
  background: #d9f3ef;
}

.section {
  padding: 74px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--ilkadim-primary-dark);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 14px 0 0;
  color: var(--ilkadim-muted);
  font-size: 18px;
}

.about-card {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 36px;
  padding: 34px;
  border-radius: var(--ilkadim-radius);
  background: var(--ilkadim-surface);
  box-shadow: var(--ilkadim-shadow);
}

.about-visual {
  min-height: 380px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 28% 30%, rgba(245, 166, 35, 0.36) 0 70px, transparent 72px),
    radial-gradient(circle at 78% 22%, rgba(47, 143, 131, 0.18) 0 78px, transparent 80px),
    linear-gradient(150deg, #fff1d7, #e8f6f3);
  position: relative;
  overflow: hidden;
}


.about-visual.has-image {
  background: #ffffff;
}

.about-visual.has-image::before,
.about-visual.has-image::after {
  display: none;
}

.about-visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-visual::before,
.about-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: #ffffff;
  opacity: 0.86;
}

.about-visual::before {
  width: 220px;
  height: 220px;
  left: -70px;
  bottom: -68px;
}

.about-visual::after {
  width: 136px;
  height: 136px;
  right: 42px;
  bottom: 42px;
}

.about-content {
  align-self: center;
}

.about-content h2,
.about-content h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.about-content p {
  color: #52616a;
  font-size: 17px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #3f4d56;
}

.check-list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ilkadim-soft);
  color: var(--ilkadim-primary-dark);
  font-weight: 900;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.program-card,
.feature-card,
.news-card,
.info-card {
  border: 1px solid rgba(47, 143, 131, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 30px rgba(39, 58, 72, 0.07);
}

.program-card {
  padding: 24px;
}

.program-icon,
.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: var(--ilkadim-soft);
  font-size: 28px;
}

.program-card:nth-child(even) .program-icon {
  background: #fff1d7;
}

.program-card h3,
.feature-card h3,
.news-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.program-card p,
.feature-card p,
.news-card p,
.info-card p {
  color: var(--ilkadim-muted);
}

.features-wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  padding: 26px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 210px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(145deg, #e8f6f3, #ffffff);
  box-shadow: 0 14px 30px rgba(39, 58, 72, 0.07);
}

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

.gallery-item.has-image::before {
  display: none;
}

.gallery-item:nth-child(2) {
  background: linear-gradient(145deg, #fff1d7, #ffffff);
}

.gallery-item:nth-child(3) {
  background: linear-gradient(145deg, #ffebe7, #ffffff);
}

.gallery-item:nth-child(4) {
  background: linear-gradient(145deg, #ffffff, #dff3ff);
}

.gallery-item:nth-child(5) {
  background: linear-gradient(145deg, #f5f0ff, #ffffff);
}

.gallery-item:nth-child(6) {
  background: linear-gradient(145deg, #edf8e9, #ffffff);
}

.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -50px;
  top: -50px;
  border-radius: 50%;
  background: rgba(47, 143, 131, 0.12);
}

.gallery-label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ilkadim-primary-dark);
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(39, 58, 72, 0.08);
  backdrop-filter: blur(6px);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.news-card {
  padding: 24px;
}

.news-thumb {
  display: block;
  margin: -8px -8px 16px;
  overflow: hidden;
  border-radius: 18px;
}

.news-thumb img,
.entry-featured-image img {
  display: block;
  width: 100%;
  height: auto;
}

.news-thumb img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.entry-featured-image {
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: 22px;
}

.news-date {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--ilkadim-soft);
  color: var(--ilkadim-primary-dark);
  font-size: 13px;
  font-weight: 900;
}

.news-card a {
  color: var(--ilkadim-primary-dark);
  font-weight: 800;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 14px;
}

.info-card {
  padding: 22px;
}

.info-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.info-card p {
  margin: 0;
}

.contact-form-card {
  padding: 30px;
  border-radius: var(--ilkadim-radius);
  background: var(--ilkadim-surface);
  box-shadow: var(--ilkadim-shadow);
}

.contact-form-card h3 {
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.contact-form-card > p {
  margin: 0 0 20px;
  color: var(--ilkadim-muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-weight: 800;
  color: #3d4a52;
  font-size: 14px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #dfebea;
  border-radius: 16px;
  background: #fbfffe;
  color: var(--ilkadim-text);
  padding: 13px 14px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(47, 143, 131, 0.55);
  box-shadow: 0 0 0 4px rgba(47, 143, 131, 0.12);
}

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

.form-submit {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}

.form-note {
  margin: 0;
  max-width: 390px;
  color: var(--ilkadim-muted);
  font-size: 13px;
}

.notice {
  margin: 0 0 18px;
  padding: 13px 15px;
  border-radius: 16px;
  font-weight: 750;
}

.notice-success {
  background: var(--ilkadim-soft);
  color: var(--ilkadim-primary-dark);
}

.notice-error {
  background: #fff0ee;
  color: #a33a2b;
}

.cta-band {
  margin: 34px 0 0;
  padding: 28px;
  border-radius: var(--ilkadim-radius);
  background: linear-gradient(135deg, var(--ilkadim-primary), #68c7bb);
  color: #ffffff;
  box-shadow: var(--ilkadim-shadow);
}

.cta-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.cta-band p {
  margin: 8px 0 0;
  opacity: 0.92;
}

.site-footer {
  padding: 42px 0;
  background: #263238;
  color: rgba(255, 255, 255, 0.82);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-brand strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
}

.footer-brand span,
.footer-meta {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.entry-wrap {
  padding: 70px 0;
}

.entry-card {
  max-width: 860px;
  margin-inline: auto;
  padding: 38px;
  border-radius: var(--ilkadim-radius);
  background: #ffffff;
  box-shadow: var(--ilkadim-shadow);
}

.entry-title {
  margin: 0 0 20px;
  font-size: clamp(32px, 5vw, 54px);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.entry-content a {
  color: var(--ilkadim-primary-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.post-meta {
  color: var(--ilkadim-muted);
  margin-bottom: 18px;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
}

.nav-links a {
  color: var(--ilkadim-primary-dark);
  font-weight: 800;
}

@media (max-width: 1040px) {
  .hero-grid,
  .about-card,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 430px;
  }

  .hero-uploaded-image {
    min-height: 430px;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .header-actions .btn {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .site-navigation {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    padding: 14px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--ilkadim-shadow);
  }

  .site-navigation.is-open {
    display: block;
  }

  .site-menu {
    display: grid;
    gap: 4px;
  }

  .site-menu a {
    width: 100%;
    justify-content: center;
  }

  .gallery-grid,
  .news-grid,
  .features-wrap {
    grid-template-columns: 1fr;
  }

  .gallery-item:first-child {
    grid-row: span 1;
  }
}

@media (max-width: 680px) {
  .ilkadim-container {
    width: min(var(--ilkadim-container), calc(100% - 28px));
  }

  .header-inner {
    min-height: 72px;
  }

  .site-branding {
    min-width: 0;
  }

  .site-title {
    font-size: 17px;
  }

  .site-description {
    display: none;
  }

  .hero {
    padding: 52px 0 48px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero-notes,
  .card-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 360px;
    border-radius: 28px;
  }

  .hero-uploaded-image {
    min-height: 360px;
  }

  .house {
    width: 210px;
    height: 154px;
    bottom: 90px;
  }

  .house::before {
    width: 170px;
    height: 170px;
    left: 20px;
    top: -70px;
  }

  .door {
    left: 80px;
    width: 52px;
    height: 72px;
  }

  .window {
    width: 40px;
    height: 40px;
    top: 38px;
  }

  .section {
    padding: 54px 0;
  }

  .about-card,
  .contact-form-card,
  .entry-card {
    padding: 24px;
  }

  .about-visual {
    min-height: 260px;
  }

  .form-submit,
  .cta-band-inner,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit .btn,
  .cta-band .btn {
    width: 100%;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
